File size: 8,137 Bytes
89a3550
22c1e9b
c48e937
 
 
 
22c1e9b
 
 
7d1820b
 
89a3550
22c1e9b
89a3550
7d1820b
 
 
 
22c1e9b
727a479
89a3550
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22c1e9b
89a3550
 
 
22c1e9b
 
 
e6909d8
22c1e9b
 
 
 
 
 
e6909d8
22c1e9b
89a3550
 
82d4697
 
 
 
22c1e9b
e6909d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89a3550
e6909d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2a8891b
89a3550
82d4697
7d1820b
 
 
 
 
 
 
 
 
 
 
 
e6909d8
7d1820b
e6909d8
82d4697
7d1820b
 
 
 
e6909d8
7d1820b
 
 
 
 
 
 
 
 
 
 
 
e6909d8
7d1820b
 
e6909d8
7d1820b
 
 
 
 
8e4e74f
82d4697
7d1820b
82d4697
 
7d1820b
8e4e74f
7d1820b
 
 
 
8e4e74f
7d1820b
 
 
8e4e74f
7d1820b
22c1e9b
89a3550
7d1820b
 
 
 
 
2a8891b
22c1e9b
 
 
 
 
89a3550
 
c3e40ec
89a3550
 
 
22c1e9b
89a3550
 
 
 
 
 
 
 
 
 
 
 
 
c3e40ec
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
document.addEventListener('DOMContentLoaded', () => {
    const convo = document.querySelector(".convo");
    const fileUpload = document.getElementById('file-upload');
    const imageUpload = document.getElementById('image-upload');
    const fileBtn = document.getElementById('file-btn');
    const imageBtn = document.getElementById('image-btn');
    const sendButtons = document.querySelectorAll('.sendingQA');
    const SummarizeInput = document.querySelector(".SummarizeInput");
    const CaptionInput = document.querySelector(".CaptionInput");
    const gotItButton = document.getElementById('got-it-btn');
    const explainChoixDiv = document.getElementById('explainChoix');

    let selectedFile = null;

    // โœ… Default mode: Summarize selected
    const summarizeRadio = document.getElementById('summarize-radio');
    if (summarizeRadio) summarizeRadio.checked = true;

    // Mode switching
    document.querySelectorAll('.select-options input[name="mode"]').forEach(radio => {
        radio.addEventListener('change', (e) => {
            if (e.target.checked) {
                const selectedValue = e.target.value;
                if (selectedValue === "Summarize") {
                    SummarizeInput.classList.add("active");
                    SummarizeInput.classList.remove("innactive");
                    CaptionInput.classList.remove("active");
                    CaptionInput.classList.add("innactive");
                } else {
                    SummarizeInput.classList.add("innactive");
                    SummarizeInput.classList.remove("active");
                    CaptionInput.classList.remove("innactive");
                    CaptionInput.classList.add("active");
                }
            }
        });
    });

    // File upload handlers
    fileBtn.addEventListener('click', () => fileUpload.click());
    imageBtn.addEventListener('click', () => imageUpload.click());

    fileUpload.addEventListener('change', (e) => {
        if (e.target.files.length) {
            selectedFile = e.target.files[0];
            handleFileUpload(selectedFile);
        }
    });

    imageUpload.addEventListener('change', (e) => {
        if (e.target.files.length) {
            selectedFile = e.target.files[0];
            handleFileUpload(selectedFile);
        }
    });

    // "Got it" button
    gotItButton.addEventListener('click', () => {
        explainChoixDiv.style.display = "none";
    });

    async function handleFileUpload(file) {
        if (!file) return;

        const isImage = file.type.startsWith('image/');
        const icon = isImage ? '๐Ÿ–ผ๏ธ' : '๐Ÿ“Ž';

        // User bubble: Uploaded file
        createMessageBubble(`${icon} Uploaded: ${file.name}`, "You");

        const isSummarizeMode = document.querySelector('input[name="mode"]:checked').value === 'Summarize';
        const endpoint = isSummarizeMode ? '/summarize/' : '/imagecaption/';
        const thinkingText = isSummarizeMode ? 'Analyzing document... <div class="loader"></div>' : 'Analyzing image... <div class="loader"></div>';

        // AI thinking bubble
        const thinkingBubble = createMessageBubble(thinkingText, "Aidan");

        const formData = new FormData();
        formData.append('file', file);

        if (isSummarizeMode) {
            const selectedLength = document.querySelector('input[name="length"]:checked')?.value || 'medium';
            formData.append('length', selectedLength);
        }

        try {
            const response = await fetch(endpoint, {
                method: 'POST',
                body: formData
            });

            if (!response.ok) {
                let errorMessage = 'Request failed';
                try {
                    const error = await response.json();
                    errorMessage = error.detail || error.error || errorMessage;
                } catch (e) {}
                throw new Error(errorMessage);
            }

            const result = await response.json();
            thinkingBubble.remove();

            // Aidan's response bubble
            if (isSummarizeMode) {
                createMessageBubble(
                    result.summary || "No summary generated.",
                    "Aidan",
                    result.audioUrl,
                    result.pdfUrl
                );
            } else {
                createMessageBubble(
                    result.caption || result.answer || "No caption generated.",
                    "Aidan",
                    result.audio,
                    null
                );
            }
        } catch (error) {
            thinkingBubble.remove();
            createMessageBubble(`โš ๏ธ Error: ${error.message}`, "Aidan");
        } finally {
            resetFileInputs();
        }
    }

    function createMessageBubble(text, sender = "You", audioSrc = null, fileUrl = null) {
        const bubble = document.createElement('div');
        bubble.className = `bubble ${sender === "You" ? "right" : "left"}`;
        bubble.style.maxWidth = "50%";
        bubble.style.wordWrap = "break-word";

        const label = document.createElement('div');
        label.className = "label";
        label.textContent = sender;

        const message = document.createElement('div');
        message.className = "text";
        message.style.whiteSpace = "pre-wrap";
        message.innerHTML = text;

        // Extra controls (audio/PDF download)
        if (sender !== "You" && (audioSrc || fileUrl)) {
            const iconContainer = document.createElement('div');
            iconContainer.style.marginTop = "10px";
            iconContainer.style.display = "flex";
            iconContainer.style.gap = "15px";
            iconContainer.style.justifyContent = "flex-end";

            if (audioSrc) {
                const audio = new Audio(audioSrc);
                const audioIcon = document.createElement("i");
                audioIcon.className = "fa-solid fa-volume-high audio-toggle";
                audioIcon.title = "Play Audio";
                audioIcon.style.cursor = "pointer";
                audioIcon.style.fontSize = "18px";

                audioIcon.addEventListener("click", () => {
                    if (audio.paused) {
                        audio.play();
                        audioIcon.title = "Pause Audio";
                    } else {
                        audio.pause();
                        audioIcon.title = "Play Audio";
                    }
                });

                iconContainer.appendChild(audioIcon);
            }

            if (fileUrl) {
                const downloadLink = document.createElement('a');
                downloadLink.href = fileUrl;
                downloadLink.setAttribute('download', 'summary.pdf');
                downloadLink.target = "_blank";

                const downloadIcon = document.createElement("i");
                downloadIcon.className = "fa-solid fa-file-arrow-down";
                downloadIcon.style.fontSize = "18px";
                downloadIcon.style.cursor = "pointer";

                downloadLink.appendChild(downloadIcon);
                iconContainer.appendChild(downloadLink);
            }

            message.appendChild(iconContainer);
        }

        bubble.appendChild(label);
        bubble.appendChild(message);
        convo.appendChild(bubble);
        convo.scrollTop = convo.scrollHeight;
        return bubble;
    }

    function resetFileInputs() {
        selectedFile = null;
        fileUpload.value = '';
        imageUpload.value = '';
    }

    // Loader CSS
    const style = document.createElement('style');
    style.textContent = `
        .loader {
            display: inline-block;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #3b82f6;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    `;
    document.head.appendChild(style);
});