-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
162 lines (131 loc) · 4.63 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
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
/* Developed by Siddharth Pandey */
for (var item of document.querySelectorAll(".style")) {
item.addEventListener("mousedown", function(evt) {
evt.target.classList.add("styleOnClick");
}, false);
}
document.getElementById('clear').addEventListener("mousedown", function() {
document.querySelector(".style").classList.add("styleOnClick");
document.getElementsByTagName('svg')[0].setAttribute("width", "13px");
document.getElementsByTagName('svg')[0].setAttribute("height", "13px");
});
document.addEventListener("mouseup", function() {
for (var item of document.querySelectorAll(".style")) {
item.classList.remove("styleOnClick");
}
document.getElementsByTagName('svg')[0].classList.remove('styleOnClick');
document.querySelector(".style").classList.remove("styleOnClick");
document.getElementsByTagName('svg')[0].setAttribute("width", "15px");
document.getElementsByTagName('svg')[0].setAttribute("height", "15px");
});
/* Developed by Siddharth Pandey */
function getHistory() {
return document.getElementById("history-value").innerText;
}
function printHistory(num) {
document.getElementById("history-value").innerText = num;
}
function getOutput() {
return document.getElementById("output-value").innerText;
}
function printOutput(num) {
if (num == "") {
document.getElementById("output-value").innerText = num;
} else {
document.getElementById("output-value").innerText = getFormattedNumber(num);
}
}
function getFormattedNumber(num) {
if (num == "-") {
return "";
}
var n = Number(num);
var value = n.toLocaleString("en");
return value;
}
function reverseNumberFormat(num) {
return Number(num.replace(/,/g, ''));
}
var operator = document.getElementsByClassName("operator");
for (var i = 0; i < operator.length; i++) {
operator[i].addEventListener('click', function() {
if (this.id == "clear") {
printHistory("");
printOutput("");
} else if (this.id == "backspace") {
var output = reverseNumberFormat(getOutput()).toString();
if (output) { //if output has a value
output = output.substr(0, output.length - 1);
printOutput(output);
}
} else {
var output = getOutput();
var history = getHistory();
if (output == "" && history != "") {
if (isNaN(history[history.length - 1])) {
history = history.substr(0, history.length - 1);
}
}
if (output != "" || history != "") {
output = output == "" ? output : reverseNumberFormat(output);
history = history + output;
if (this.id == "=") {
var result = eval(history);
printOutput(result);
printHistory("");
} else {
history = history + this.id;
printHistory(history);
printOutput("");
}
}
}
});
}
var number = document.getElementsByClassName("number");
for (var i = 0; i < number.length; i++) {
number[i].addEventListener('click', function() {
var output = reverseNumberFormat(getOutput());
if (output != NaN) { //if output is a number
output = output + this.id;
printOutput(output);
}
});
}
var microphone = document.getElementById('microphone');
microphone.onclick = function() {
microphone.classList.add("record");
var recognition = new(window.SpeechRecognition || window.webkitSpeechRecognition || window.mozSpeechRecognition || window.msSpeechRecognition)();
recognition.lang = 'en-US';
recognition.start();
operations = {
"plus": "+",
"minus": "-",
"multiply": "*",
"multiplied": "*",
"divide": "/",
"divided": "/",
"reminder": "%"
}
recognition.onresult = function(event) {
var input = event.results[0][0].transcript;
for (property in operations) {
input = input.replace(property, operations[property]);
}
document.getElementById("output-value").innerText = input;
setTimeout(function() {
evaluate(input);
}, 2000);
microphone.classList.remove("record");
}
}
function evaluate(input) {
try {
var result = eval(input);
document.getElementById("output-value").innerText = result;
} catch (e) {
console.log(e);
document.getElementById("output-value").innerText = "";
}
}
/* Developed by Siddharth Pandey */