File size: 9,785 Bytes
6556191
 
56ad1e0
6556191
56ad1e0
6556191
 
56ad1e0
6556191
 
 
 
 
 
 
56ad1e0
 
6556191
 
56ad1e0
 
 
 
 
6556191
 
 
 
 
56ad1e0
 
6556191
 
 
 
 
56ad1e0
 
 
 
 
 
 
 
 
 
 
 
 
6556191
 
56ad1e0
 
 
 
 
 
 
 
6556191
 
56ad1e0
 
 
 
 
 
6556191
 
 
56ad1e0
 
 
57227ab
6556191
a2009a1
6556191
56ad1e0
 
 
 
 
 
 
 
 
 
 
a2009a1
56ad1e0
 
 
 
 
57227ab
 
 
a2009a1
56ad1e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a2009a1
56ad1e0
 
57227ab
56ad1e0
 
57227ab
56ad1e0
57227ab
56ad1e0
57227ab
6556191
56ad1e0
 
 
 
 
a2009a1
6556191
56ad1e0
 
 
 
57227ab
56ad1e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57227ab
56ad1e0
 
 
57227ab
56ad1e0
 
 
 
 
 
 
 
 
 
 
 
57227ab
56ad1e0
 
 
 
 
 
 
 
 
 
 
a2009a1
6556191
56ad1e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57227ab
 
56ad1e0
 
57227ab
56ad1e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57227ab
56ad1e0
 
 
 
 
 
6556191
 
 
56ad1e0
6556191
 
56ad1e0
6556191
 
 
56ad1e0
 
a2009a1
6556191
56ad1e0
 
 
 
57227ab
56ad1e0
 
 
 
 
6556191
 
56ad1e0
 
 
6556191
 
56ad1e0
 
 
 
 
6556191
 
 
 
56ad1e0
97c1fc3
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
class ChatBot {
    constructor() {
        this.voiceEnabled = true;
        this.isListening = false;
        this.isSpeaking = false;
        this.synthesis = window.speechSynthesis;
        this.recognition = new (window.SpeechRecognition || window.webkitSpeechRecognition)();
        this.silenceTimeout = null;
        this.currentUtterance = null;
        
        this.setupRecognition();
        this.setupEventListeners();
    }

    setupRecognition() {
        this.recognition.continuous = false;
        this.recognition.interimResults = false;
        this.recognition.lang = 'en-US';

        this.recognition.onresult = (event) => {
            const message = event.results[0][0].transcript;
            this.clearInput();
            this.sendMessage(message, true);
            this.resetSilenceTimer();
        };

        this.recognition.onend = () => {
            this.isListening = false;
            this.toggleVoiceInputClass(false);
            if (this.autoListening && !this.isSpeaking) {
                this.startListening();
            }
        };
    }

    setupEventListeners() {
        const messageInput = document.getElementById('messageInput');
        messageInput.addEventListener('keydown', (e) => {
            if (e.key === 'Enter') {
                if (e.shiftKey) return;
                e.preventDefault();
                const message = messageInput.value.trim();
                if (message) {
                    this.stopSpeaking();
                    this.stopListening();
                    this.sendMessage(message, false);
                    this.clearInput();
                }
            }
        });

        document.getElementById('sendMessage').addEventListener('click', () => {
            const message = messageInput.value.trim();
            if (message) {
                this.stopSpeaking();
                this.stopListening();
                this.sendMessage(message, false);
                this.clearInput();
            }
        });

        document.getElementById('voiceInput').addEventListener('click', () => {
            this.stopSpeaking();
            if (this.isListening) {
                this.stopListening();
            } else {
                this.startListening();
            }
        });

        document.getElementById('chatMessages').addEventListener('click', () => {
            if (this.isSpeaking) {
                this.stopSpeaking();
            }
        });
    }

    async sendMessage(message, isVoiceInput) {
        this.addMessageToChat(message, 'user');
        this.showTypingIndicator();
    
        try {
            const response = await this.callAPI(message);
            this.removeTypingIndicator();
            this.addMessageToChat(response, 'bot');
            
            if (this.voiceEnabled) {
                this.speak(response);
            }
        } catch (error) {
            console.error('Error:', error);
            this.removeTypingIndicator();
            this.addMessageToChat('Sorry, there was an error processing your request.', 'bot');
            this.isListening = false;
            this.toggleVoiceInputClass(false);
        }
    }

    addMessageToChat(message, sender) {
        const messagesContainer = document.getElementById('chatMessages');
        const templates = document.querySelector('.message-templates');
        
        // Clone the appropriate template
        const messageTemplate = templates.querySelector(sender === 'bot' ? '.bot-message' : '.user-message').cloneNode(true);
        
        // Set the message content
        messageTemplate.querySelector('.message-content').textContent = message;
        
        // Add speaker button for bot messages
        if (sender === 'bot') {
            const speakerButton = document.createElement('button');
            speakerButton.className = 'message-speaker';
            speakerButton.innerHTML = '<i class="fas fa-volume-up"></i>';
            
            speakerButton.onclick = () => {
                if (this.isSpeaking) {
                    this.stopSpeaking();
                    speakerButton.innerHTML = '<i class="fas fa-volume-up"></i>';
                } else {
                    this.stopSpeaking();
                    this.speak(message, () => {
                        speakerButton.innerHTML = '<i class="fas fa-volume-up"></i>';
                    });
                    speakerButton.innerHTML = '<i class="fas fa-volume-mute"></i>';
                }
            };
            
            messageTemplate.querySelector('.message-content').appendChild(speakerButton);
        }
        
        messagesContainer.appendChild(messageTemplate);
        messagesContainer.scrollTop = messagesContainer.scrollHeight;
    }

    async callAPI(message) {
        const response = await fetch('/api/chat', {
            method: 'POST',
            headers: { 'Content-Type': 'application/json' },
            body: JSON.stringify({ message })
        });
        if (!response.ok) throw new Error('API request failed');
        const data = await response.json();
        return data.response;
    }

    showTypingIndicator() {
        const indicator = document.createElement('div');
        indicator.className = 'message bot typing-indicator';
        indicator.innerHTML = '<div class="typing-dot"></div>'.repeat(3);
        document.getElementById('chatMessages').appendChild(indicator);
    }

    removeTypingIndicator() {
        const indicator = document.querySelector('.typing-indicator');
        if (indicator) indicator.remove();
    }

    speak(text, onComplete = null) {
        this.stopSpeaking();
        this.stopListening();
        
        const chunks = this.splitTextIntoChunks(text, 200);
        let currentChunkIndex = 0;
        this.isSpeaking = true;
        
        const speakNextChunk = () => {
            if (currentChunkIndex >= chunks.length) {
                this.isSpeaking = false;
                if (this.voiceEnabled) {
                    setTimeout(() => this.startListening(), 500);
                }
                if (onComplete) onComplete();
                return;
            }

            const utterance = new SpeechSynthesisUtterance(chunks[currentChunkIndex]);
            utterance.rate = 1;
            utterance.pitch = 1;

            utterance.onend = () => {
                currentChunkIndex++;
                if (currentChunkIndex < chunks.length) {
                    speakNextChunk();
                } else {
                    this.isSpeaking = false;
                    if (this.voiceEnabled) {
                        setTimeout(() => this.startListening(), 500);
                    }
                    if (onComplete) onComplete();
                }
            };

            utterance.onerror = (event) => {
                console.error('Speech synthesis error:', event.error);
                this.isSpeaking = false;
                if (onComplete) onComplete();
            };

            this.currentUtterance = utterance;
            this.synthesis.speak(utterance);
        };

        speakNextChunk();
    }

    splitTextIntoChunks(text, maxLength) {
        const chunks = [];
        let remainingText = text;

        while (remainingText.length > 0) {
            if (remainingText.length <= maxLength) {
                chunks.push(remainingText);
                break;
            }

            let chunk = remainingText.slice(0, maxLength);
            let lastPeriod = chunk.lastIndexOf('.');
            let lastComma = chunk.lastIndexOf(',');
            let lastSpace = chunk.lastIndexOf(' ');

            let breakPoint = Math.max(
                lastPeriod !== -1 ? lastPeriod + 1 : -1,
                lastComma !== -1 ? lastComma + 1 : -1,
                lastSpace !== -1 ? lastSpace : maxLength
            );

            chunk = remainingText.slice(0, breakPoint);
            chunks.push(chunk);
            remainingText = remainingText.slice(breakPoint).trim();
        }

        return chunks;
    }

    startListening() {
        if (this.isListening || this.isSpeaking) return;
        
        try {
            this.isListening = true;
            this.autoListening = true;
            this.toggleVoiceInputClass(true);
            this.recognition.start();
            this.startSilenceTimer();
        } catch (error) {
            console.error('Error starting recognition:', error);
            this.isListening = false;
            this.toggleVoiceInputClass(false);
        }
    }

    stopListening() {
        this.autoListening = false;
        this.isListening = false;
        this.toggleVoiceInputClass(false);
        this.recognition.stop();
        this.clearSilenceTimer();
    }

    stopSpeaking() {
        if (this.isSpeaking || this.currentUtterance) {
            this.synthesis.cancel();
            this.currentUtterance = null;
            this.isSpeaking = false;
        }
    }

    clearInput() {
        document.getElementById('messageInput').value = '';
    }

    toggleVoiceInputClass(isListening) {
        const button = document.getElementById('voiceInput');
        button.classList.toggle('listening', isListening);
    }

    startSilenceTimer() {
        this.clearSilenceTimer();
        this.silenceTimeout = setTimeout(() => {
            this.stopListening();
        }, 10000);
    }

    resetSilenceTimer() {
        this.clearSilenceTimer();
        this.startSilenceTimer();
    }

    clearSilenceTimer() {
        if (this.silenceTimeout) {
            clearTimeout(this.silenceTimeout);
            this.silenceTimeout = null;
        }
    }
}

document.addEventListener('DOMContentLoaded', () => {
    const chatBot = new ChatBot();
});