-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
368 lines (337 loc) · 11.9 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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
const expression = document.querySelector('#expression');
const result = document.querySelector('#result');
const buttons = document.querySelector('#buttons');
const syntaxErr = 'SYNTAX ERROR';
const mathErr = 'MATH ERROR';
const genericErr = 'ERROR';
// Matches parenthesed numbers: (5), (-2.4), (.482), but not (3+5) for instance
const enclosedNumber = /\(-?\d*\.?\d*\)/;
// Matches numbers like 3, -2.42, 92875, .889, 0.27
const number = /[^+–×÷^%()]-?\d*\.?\d*/;
// Matches all numbers like 3, -2.42, 92875, .889, 0.27 from the expression we
// check against: "32.4+68−.6".match(numbers) -> ["32.4", "68", ".6"]
const numbers = /[^+–×÷^%()]-?\d*\.?\d*/g;
// Last computed expression
let lastExpr = '';
// Buffers the expression the user was typing before they loaded the previous
let currentExpr = expression.textContent;
// Flags to keep this expression history working properly
let isDownLocked = true;
let isUpLocked = true;
// +1 (resp. -1) when user inputs an opening (resp. closing) parenthese
// Can't be negative
let parentheseBalance = 0;
const add = (a, b) => +(a + b).toPrecision(getPrecision(a, b));
const subtract = (a, b) => +(a - b).toPrecision(getPrecision(a, b));
const multiply = (a, b) => +(a * b).toPrecision(getPrecision(a, b));
const divide = (a, b) => a / b;
const pow = (x, n) => x ** n;
const percent = (a, b) => b / 100 * a;
function getPrecision(a, b) {
const [aStr, bStr] = [a.toString(), b.toString()]
let [aPrecision, bPrecision] = [1, 1];
if (aStr.includes('.')) {
aPrecision += aStr.slice(aStr.indexOf('.') + 1).length;
}
if (bStr.includes('.')) {
bPrecision += bStr.slice(bStr.indexOf('.') + 1).length;
}
return Math.max(aPrecision, bPrecision);
}
function operate (operand1, operand2, operator) {
if (operator === '+') return add(operand1, operand2);
else if (operator === '–') return subtract(operand1, operand2);
else if (operator === '×') return multiply(operand1, operand2);
else if (operator === '÷') return divide(operand1, operand2);
else if (operator === '^') return pow(operand1, operand2);
else if (operator === '%') return percent(operand1, operand2);
else if (!isOperator(operator)) {
if (operand1) return operand1;
}
else return genericErr;
}
const hasParentheses = expr => /[()]/.test(expr);
function parseSimpleExpr(expr) {
if (hasParentheses(expr)) {
expr = expr.slice(1, -1);
}
let opIndex = expr.search(/[^\d.-]/);
if (opIndex === -1) return [expr];
let operand1 = +expr.slice(0, opIndex);
let operand2 = +expr.slice(opIndex + 1);
let operator = expr.charAt(opIndex);
return [operand1, operand2, operator];
}
// Get the substring containing the operation with highest precedence
function pickNextOperation(expr) {
if (hasParentheses(expr)) {
if (enclosedNumber.test(expr)) {
/** If there is an expression enclosed in parentheses, we simplify
* it until it becomes a number. At that point we return the number
* WITH its parentheses so that everything is simplified/replaced in
* the expression.
*/
return String(expr.match(enclosedNumber));
}
let end = expr.indexOf(')');
let start = expr.slice(0, end).lastIndexOf('(');
expr = expr.slice(start + 1, end);
}
let opIndex = 0;
if (expr.includes('^')) opIndex = expr.indexOf('^');
else if (expr.includes('×')) opIndex = expr.indexOf('×');
else if (expr.includes('÷')) opIndex = expr.indexOf('÷');
else if (expr.includes('%')) opIndex = expr.indexOf('%');
else if (expr.includes('–')) opIndex = expr.indexOf('–');
else if (expr.includes('+')) opIndex = expr.indexOf('+');
let leftOperand = getLastOperand(expr.slice(0, opIndex));
let rightOperand = expr.slice(opIndex + 1).match(number);
return leftOperand + expr.charAt(opIndex) + rightOperand;
}
// Simplifies the expression string until it's a number
function calculateExpression(expr) {
while(Number.isNaN(+expr)) {
let operation = pickNextOperation(expr);
let result = operate(...parseSimpleExpr(operation));
if (result === Infinity) {
return mathErr;
}
expr = expr.replace(operation, result);
}
return +expr;
}
/** Although the parentheses are counted as the expression is being written,
* We need to update the count when switching between current/old expression.
*/
function countParentheses (expr) {
return [...expr].reduce((parentheseBalance, char) => {
if (char === '(') ++parentheseBalance;
else if (char === ')') --parentheseBalance;
return parentheseBalance;
}, 0);
}
const isOperator = c => /[+–×÷^%]/.test(c);
const isNumberFloat = operand => /\./.test(operand);
function getLastOperand (expr) {
let operands = expr.match(numbers);
if (operands) {
return operands[operands.length - 1];
} else {
return null;
}
}
function resetCalculator() {
expression.textContent = '';
lastExpr = '';
currentExpr = '';
exprBuffer = '';
result.textContent = 0;
parentheseBalance = 0;
isUpLocked = true;
isDownLocked = true;
}
function backspace (expr, lastChar) {
if (lastChar === '(') {
parentheseBalance--;
} else if (lastChar === ')') {
parentheseBalance++;
}
expr.textContent = expr.textContent.slice(0, -1);
}
function updateResult (expr, lastChar) {
lastExpr = expr.textContent;
let text = expr.textContent;
isUpLocked = false;
if (parentheseBalance !== 0 ||
getLastOperand(text) === '.' ||
getLastOperand(text) === '-' ||
getLastOperand(text) === '-.' ||
isOperator(lastChar)) {
result.textContent = syntaxErr;
} else {
result.textContent = calculateExpression(expr.textContent);
}
expr.textContent = '';
parentheseBalance = 0;
}
function appendOperator (expr, button, lastChar) {
if (isOperator(lastChar)) {
expr.textContent = expr.textContent.slice(0, -1);
}
if (expr.textContent !== '' && lastChar !== '.' && lastChar !== '(') {
expr.textContent += button.textContent;
}
}
function appendFloatPoint(expr, button, lastChar) {
let lastOperand = getLastOperand(expr.textContent);
if (expr.textContent === '') {
expr.textContent += button.textContent;
} else if ((!isNumberFloat(lastOperand) && lastChar !== ')') ||
isOperator(lastChar)) {
expr.textContent += button.textContent;
}
}
function appendParenthese (expr, button, lastChar) {
if (expr.textContent.slice(-1) === '.') return;
if (button.id === 'openParenthese') {
if (isOperator(lastChar) || lastChar === '-' || lastChar === '(' ||
expr.textContent === '') {
expr.textContent += button.textContent;
parentheseBalance++;
}
} else if (button.id === 'closeParenthese') {
if (parentheseBalance >= 1 &&
(/\d/.test(lastChar) || lastChar === ')')) {
expr.textContent += button.textContent;
parentheseBalance--;
}
}
}
function appendDigits(expr, digit, lastChar) {
let lastOperand = getLastOperand(expr.textContent);
if (!lastOperand) {
expr.textContent += digit;
} else {
if (/[1-9]/.test(digit)) {
// Preventing leading zeroes
if (lastOperand === '0') {
// Can't use replace("lastOperand", `${digit}`), if there's more
// than 1 occurence of lastOperand ; only the first would be replaced.
let index = expr.textContent.lastIndexOf(lastOperand);
let start = expr.textContent.slice(0, index);
expr.textContent = start + `${digit}${expr.textContent.slice(index)}`;
} else if (lastChar !== ')') {
expr.textContent += digit;
}
} else if (digit === '0') {
// Preventing trailing zeroes
if (isNumberFloat(lastOperand) || +lastOperand !== 0) {
expr.textContent += '0';
}
}
}
}
function changeLastOperandSign(expr, lastChar) {
let lastOperand = getLastOperand(expr.textContent);
if (!lastOperand) {
if (lastChar === '-') {
expr.textContent = expr.textContent.slice(0, -1);
} else {
expr.textContent += '-';
}
} else {
// Can't use replace("lastOperand", `-${lastOperand}`), if there's more
// than 1 occurence of lastOperand ; only the first would be replaced.
let signIndex = expr.textContent.lastIndexOf(lastOperand);
let exprStart = expr.textContent.slice(0, signIndex);
if (/-/.test(lastOperand)) {
expr.textContent = exprStart + expr.textContent.slice(signIndex + 1);
} else {
expr.textContent = exprStart + `-${expr.textContent.slice(signIndex)}`;
}
}
}
function updateExpr(expr, button) {
expr.textContent = expr.textContent.trim();
let lastChar = expr.textContent.slice(-1);
if (button.id === 'clear') {
resetCalculator();
} else if (button.id === 'backspace') {
backspace(expr, lastChar);
} else if (button.id === 'equals') {
updateResult(expr, lastChar);
} else if (button.classList.contains('operator')) {
appendOperator(expr, button, lastChar);
} else if (button.id === 'floatingPoint') {
appendFloatPoint(expr, button, lastChar);
} else if (button.classList.contains('parenthese')) {
appendParenthese(expr, button, lastChar);
} else if (button.id === 'sign') {
changeLastOperandSign(expr, lastChar);
} else if (/\d/.test(button.textContent)) {
appendDigits(expr, button.textContent, lastChar);
}
// For display purposes I can't have an empty expression
if (expr.textContent === '') {
expr.textContent = ' ';
}
}
const helpToggle = document.querySelector('#helpToggle');
const help = document.querySelector('#help');
function toggleHelp(e) {
help.classList.toggle('hidden');
if (e) e.target.blur()
}
helpToggle.addEventListener('click', toggleHelp);
buttons.addEventListener('click', e => {
if (e.target.tagName.toLowerCase() === 'button') {
updateExpr(expression, e.target);
/** When clicking buttons with the mouse, they gain focus.
* If we press Enter to calculate, it will also immediately input
* that focused button afterwards. We manually lose the focus with this.
**/
e.target.blur();
}
});
// Keyboard mappings
window.addEventListener('keydown', e => {
let key = String(e.key).toLowerCase();
if (key === 'escape' || key === 'c') {
const esc = document.querySelector('#clear');
esc.classList.add('active');
updateExpr(expression, esc);
} else if (key === 'backspace') {
const back = document.querySelector('#backspace');
back.classList.add('active');
updateExpr(expression, back);
} else if (key === 'enter') {
const enter = document.querySelector('#equals');
enter.classList.add('active');
updateExpr(expression, enter);
} else if (key === 's') {
const sign = document.querySelector('#sign');
sign.classList.add('active');
updateExpr(expression, sign);
} else if (key === '-') {
const minus = document.querySelector('#subtract');
minus.classList.add('active');
updateExpr(expression, minus);
} else if (key === '*') {
const mult = document.querySelector('#multiply');
mult.classList.add('active');
updateExpr(expression, mult);
} else if (key === '/') {
e.preventDefault();
const divi = document.querySelector('#divide');
divi.classList.add('active');
updateExpr(expression, divi);
} else if (key === 'arrowup') {
if (lastExpr === '' || isUpLocked) return;
currentExpr = expression.textContent;
expression.textContent = lastExpr;
isUpLocked = true;
isDownLocked = false;
parentheseBalance = countParentheses(expression.textContent);
} else if (key === 'arrowdown') {
if (isDownLocked) return;
expression.textContent = currentExpr;
isDownLocked = true;
isUpLocked = false;
parentheseBalance = countParentheses(expression.textContent);
} else if (key === 'h') {
toggleHelp();
} else {
[...buttons.children].forEach(button => {
if (String(e.key) === button.textContent) {
button.classList.add('active');
updateExpr(expression, button);
}
});
}
});
[...buttons.children].forEach(button => {
button.addEventListener('transitionend', e => {
if (e.propertyName !== 'outline-width') return;
e.target.classList.remove('active');
});
});