File size: 1,990 Bytes
791872f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
document.addEventListener('DOMContentLoaded', function() {
    const fileInputWrappers = document.querySelectorAll('.file-input-wrapper');

    fileInputWrappers.forEach((wrapper) => {
        const button = wrapper.querySelector('.btn-file-input');
        const input = wrapper.querySelector('input[type="file"]');
        const fileNameSpan = wrapper.querySelector('.file-name');

        button.addEventListener('click', () => {
            input.click();
        });

        input.addEventListener('change', () => {
            if (input.files.length > 0) {
                if (input.files.length === 1) {
                    fileNameSpan.textContent = input.files[0].name;
                } else {
                    fileNameSpan.textContent = input.files.length + ' files selected';
                }
            } else {
                fileNameSpan.textContent = 'No file selected';
            }
            updatePreview();
        });
    });

    const form = document.getElementById('watermark-form');
    form.addEventListener('change', updatePreview);

    function updatePreview() {
        const formData = new FormData(form);
        axios.post('/preview', formData)
            .then(function (response) {
                const previewContainer = document.getElementById('preview-container');
                previewContainer.innerHTML = ''; // Clear previous previews
                response.data.preview_urls.forEach(function(url) {
                    const img = document.createElement('img');
                    img.src = url;
                    img.style.maxWidth = '100%';
                    img.style.maxHeight = '300px';
                    img.style.marginBottom = '10px';
                    previewContainer.appendChild(img);
                });
                document.getElementById('preview-text').style.display = 'none';
            })
            .catch(function (error) {
                console.error('Error:', error);
            });
    }
});