|
| 1 | +import { Controller } from '@hotwired/stimulus'; |
| 2 | +import { getComponent } from '@symfony/ux-live-component'; |
| 3 | + |
| 4 | +export default class extends Controller { |
| 5 | + async initialize() { |
| 6 | + this.component = await getComponent(this.element); |
| 7 | + |
| 8 | + const resetButton = document.getElementById('chat-reset'); |
| 9 | + resetButton.addEventListener('click', (event) => { |
| 10 | + this.component.action('reset'); |
| 11 | + }); |
| 12 | + |
| 13 | + const startButton = document.getElementById('micro-start'); |
| 14 | + const stopButton = document.getElementById('micro-stop'); |
| 15 | + const botThinkingButton = document.getElementById('bot-thinking'); |
| 16 | + const botSpeakingButton = document.getElementById('bot-speaking'); |
| 17 | + |
| 18 | + startButton.addEventListener('click', (event) => { |
| 19 | + event.preventDefault(); |
| 20 | + startButton.classList.add('d-none'); |
| 21 | + stopButton.classList.remove('d-none'); |
| 22 | + this.startRecording(); |
| 23 | + }); |
| 24 | + stopButton.addEventListener('click', (event) => { |
| 25 | + event.preventDefault(); |
| 26 | + stopButton.classList.add('d-none'); |
| 27 | + botThinkingButton.classList.remove('d-none'); |
| 28 | + this.mediaRecorder.stop(); |
| 29 | + }); |
| 30 | + }; |
| 31 | + |
| 32 | + async startRecording() { |
| 33 | + const stream = await navigator.mediaDevices.getUserMedia({audio: true}); |
| 34 | + this.mediaRecorder = new MediaRecorder(stream); |
| 35 | + let audioChunks = []; |
| 36 | + |
| 37 | + this.mediaRecorder.ondataavailable = (event) => { |
| 38 | + audioChunks.push(event.data); |
| 39 | + }; |
| 40 | + |
| 41 | + this.mediaRecorder.onstop = async () => { |
| 42 | + const audioBlob = new Blob(audioChunks, {type: 'audio/wav'}); |
| 43 | + |
| 44 | + const base64String = await this.blobToBase64(audioBlob); |
| 45 | + this.component.action('speak', { audio: base64String }); |
| 46 | + this.playBase64Audio(base64String); |
| 47 | + }; |
| 48 | + |
| 49 | + this.mediaRecorder.start(); |
| 50 | + } |
| 51 | + |
| 52 | + blobToBase64(blob) { |
| 53 | + return new Promise((resolve) => { |
| 54 | + const reader = new FileReader(); |
| 55 | + reader.readAsDataURL(blob); |
| 56 | + reader.onloadend = () => resolve(reader.result.split(',')[1]); |
| 57 | + }); |
| 58 | + } |
| 59 | + |
| 60 | + playBase64Audio(base64String) { |
| 61 | + const audioSrc = "data:audio/wav;base64," + base64String; |
| 62 | + const audio = new Audio(audioSrc); |
| 63 | + |
| 64 | + audio.play().catch(error => console.error("Playback error:", error)); |
| 65 | + } |
| 66 | +} |
0 commit comments