-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
47 lines (43 loc) · 1.2 KB
/
script.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
46
47
const button = document.getElementById('button');
const audioElement = document.getElementById('audio');
//Disable/Enable Button
function toggleButton(e) {
button.disabled = !button.disabled;
}
// Passing joke to voiceRSS API
function tellMe(joke) {
VoiceRSS.speech({
key: 'a7e206a6abf541dba8341acd6cc13fa1',
src: joke,
hl: 'en-us',
v: 'Linda',
r: 0,
c: 'mp3',
f: '44khz_16bit_stereo',
ssml: false
});
}
// Get jokes from joke API
async function getJokes() {
let joke = '';
const apiUrl = 'https://sv443.net/jokeapi/v2/joke/Programming?blacklistFlags=nsfw,religious,political,racist,sexist';
try {
const response = await fetch(apiUrl);
const data = await response.json();
if (data.setup) {
joke = `${data.setup} ... ${data.delivery}`;
} else {
joke = data.joke;
}
// Text-to-Speech
tellMe(joke);
// Disable Button
toggleButton();
} catch (error) {
// Catch errors here
console.log('whoops', error)
}
}
// Event Listeners
button.addEventListener('click', getJokes);
audioElement.addEventListener('ended',toggleButton);