-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
45 lines (39 loc) · 1.7 KB
/
main.js
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
const msg = new SpeechSynthesisUtterance();
let voices = [];
const voicesDropdown = document.querySelector('[name="voice"]');
const options = document.querySelectorAll('[type="range"], [name="text"]');
const speakButton = document.querySelector('#speak');
const stopButton = document.querySelector('#stop');
// on page load, whathever is in the textarea, I want to set it to default
msg.text = document.querySelector('[name="text"]').value;
// populate voices in english and display its voice name and language in the voices dropdown
function populateVoices() {
voices = this.getVoices().filter((voice) => voice.lang.includes('en'));
voicesDropdown.innerHTML = voices
.map((voice) => `<option value="${voice.name}">${voice.name} (${voice.lang})</option>`)
.join('');
}
// Each time the language is changed, it stops from speaking and starts it again
function toggle(startOver = true) {
speechSynthesis.cancel(); // stops from speaking
if (startOver) {
speechSynthesis.speak(msg); // restart speaking
}
}
// loop over every single voice in the array and find the one where its name attribute
// is the same as the option that was selected
function setVoice() {
msg.voice = voices.find((voice) => voice.name === this.value);
toggle();
}
// bind the rate, pitch and text values to the msg keys
function setOption() {
console.log(this.name, this.value);
msg[this.name] = this.value;
toggle();
}
speechSynthesis.addEventListener('voiceschanged', populateVoices);
voicesDropdown.addEventListener('change', setVoice);
options.forEach((option) => option.addEventListener('change', setOption));
speakButton.addEventListener('click', toggle);
stopButton.addEventListener('click', () => toggle(false));