File size: 2,471 Bytes
85c5f42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f9cf047
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85c5f42
f9cf047
 
85c5f42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
document.addEventListener('DOMContentLoaded', () => {
    const form = document.getElementById('form-filler-form');
    const startButton = document.getElementById('start-button');
    const stopButton = document.getElementById('stop-button');
    const statusDiv = document.getElementById('status');

    let intervalId;

    form.addEventListener('submit', async (e) => {
        e.preventDefault();
        const url = document.getElementById('url').value;
        const iterations = document.getElementById('iterations').value;

        startButton.disabled = true;
        stopButton.disabled = false;

        await fetch('/start', {
            method: 'POST',
            headers: {
                'Content-Type': 'application/json',
            },
            body: JSON.stringify({ url, iterations }),
        });

        intervalId = setInterval(updateStatus, 1000);
    });

    stopButton.addEventListener('click', async () => {
        await fetch('/stop', { method: 'POST' });
        startButton.disabled = false;
        stopButton.disabled = true;
        clearInterval(intervalId);
    });

    async function updateStatus() {
        try {
            const response = await fetch('/status');
            if (!response.ok) {
                throw new Error('Network response was not ok');
            }
    
            const data = await response.json();
            
            // Only update the UI if the data is valid
            if (data.responses_sent !== null && data.errors !== null && data.iterations_left !== null) {
                statusDiv.innerHTML = `
                    <p>Total Iterations: ${data.total_iterations || 'N/A'}</p>
                    <p>Responses Sent: ${data.responses_sent}</p>
                    <p>Errors: ${data.errors}</p>
                    <p>Iterations Left: ${data.iterations_left}</p>
                    <h3>Environment Status:</h3>
                    <ul>
                        ${data.environment_status && data.environment_status.length > 0 ? 
                            data.environment_status.map(status => `<li>${status}</li>`).join('') 
                            : '<li>No status available</li>'
                        }
                    </ul>
                `;
            }
        } catch (error) {
            console.error('Failed to update status:', error);
            statusDiv.innerHTML = '<p>Error fetching status. Please try again later.</p>';
        }
    }
    
    
});