-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
30 lines (22 loc) · 826 Bytes
/
app.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
var buttonTranslate = document.querySelector("#button-translate");
var textInput = document.querySelector("#text-input");
var output = document.querySelector("#output");
var serverURL = "https://api.funtranslations.com/translate/minion.json"
function getTranslationURL(text) {
return serverURL + "?" + "text=" + text
}
function errorHandler(error) {
console.log("error occured", error);
alert("The Server Is Down!! Kindly Come Back After Some Time!!")
}
function clickHandler() {
var inputText = textInput.value;
fetch(getTranslationURL(inputText))
.then(respone => respone.json())
.then(json => {
var translatedText = json.contents.translated;
output.innerText = translatedText;
})
.catch(errorHandler)
};
buttonTranslate.addEventListener("click", clickHandler)