odin-calculator/script.js

169 lines
4.9 KiB
JavaScript
Raw Normal View History

const viewDiv = document.querySelector("#view");
const signGui = viewDiv.querySelector("#sign");
const valueGui = viewDiv.querySelector("#value");
2024-01-11 22:20:16 +00:00
function add(a, b) {
return a + b;
}
function substract(a, b) {
return a - b;
}
function multiply(a, b) {
return a * b;
}
function divide(a, b) {
return a / b;
}
function operate(equals) {
switch(equals.operator) {
case "+":
return add(+equals.a, +equals.b);
2024-01-11 22:20:16 +00:00
case "-":
return substract(+equals.a, +equals.b);
2024-01-11 22:20:16 +00:00
case "*":
return multiply(+equals.a, +equals.b);
2024-01-11 22:20:16 +00:00
case "/":
return divide(+equals.a, +equals.b);
2024-01-11 22:20:16 +00:00
}
}
function execute(operation) {
if (operation.readyForEquasion) {
const result = operate(operation);
operation.addToA = !operation.addToA;
operation.readyForEquasion = false;
operation.operator = "";
if (operation.addToA) {
operation.a = `${result}`;
operation.b = "";
operation.outputOfEquasion = true;
valueGui.textContent = `${operation.a}`;
}
console.table(operation);
console.log(`Result: ${result}`);
}
}
2024-01-11 22:20:16 +00:00
let operation = {
a: "0",
operator: "",
b: "",
addToA: true,
readyForEquasion: false,
outputOfEquasion: false,
}
let readyForEquasion = "";
function click(value) {
if (!isNaN(+value)) {
if (operation.outputOfEquasion) {
operation.a = value;
operation.outputOfEquasion = false;
signGui.textContent = "";
valueGui.textContent = `${operation.a}`;
operation.addToA = true;
} else {
if (operation.addToA) {
if (operation.a == "0") {
operation.a = "";
}
operation.a += value;
valueGui.textContent = `${operation.a}`;
} else {
if (operation.b == "0") {
operation.b = "";
}
operation.b += value;
operation.readyForEquasion = true;
valueGui.textContent = `${operation.b}`;
}
}
} else if (value == "=") {
execute(operation);
signGui.textContent = value;
} else {
if (operation.operator == "") {
operation.addToA = !operation.addToA;
operation.operator = value;
signGui.textContent = value;
}
if (operation.addToA) {
operation.operator = value;
}
operation.outputOfEquasion = false;
}
console.table(operation);
}
function generateGui() {
const allButtons = [
[
{ id: "C", width: 1, height: 1, display: "C", },
{ id: "X", width: 1, height: 1, display: "X", },
{ id: "+", width: 1, height: 1, display: "+", },
{ id: "-", width: 1, height: 1, display: "-", },
],
[
{ id: "7", width: 1, height: 1, display: "7", },
{ id: "8", width: 1, height: 1, display: "8", },
{ id: "9", width: 1, height: 1, display: "9", },
{ id: "*", width: 1, height: 1, display: "*", },
],
[
{ id: "4", width: 1, height: 1, display: "4", },
{ id: "5", width: 1, height: 1, display: "5", },
{ id: "6", width: 1, height: 1, display: "6", },
{ id: "/", width: 1, height: 1, display: "/", },
],
[
{ id: "1", width: 1, height: 1, display: "1", },
{ id: "2", width: 1, height: 1, display: "2", },
{ id: "3", width: 1, height: 1, display: "3", },
{ id: "=", width: 1, height: 2, display: "=", },
],
[
{ id: "0", width: 2, height: 1, display: "0", },
{ id: ".", width: 1, height: 1, display: ".", },
],
];
const buttonsDiv = document.querySelector("#buttons");
const table = document.createElement("table");
table.id = "table";
allButtons.forEach(row => {
const tableRow = document.createElement("tr");
row.forEach(buttonProperties => {
const button = document.createElement("td");
button.setAttribute("value", buttonProperties.id);
button.setAttribute("colspan", buttonProperties.width);
button.setAttribute("rowspan", buttonProperties.height);
button.textContent = buttonProperties.display;
button.addEventListener("click", (event) => {
click(event.target.getAttribute("value"));
});
tableRow.append(button);
});
table.append(tableRow);
});
buttonsDiv.append(table);
}
generateGui();
document.addEventListener("keydown", numbers);
function numbers(e) {
e = e || window.event;
let passLetter = e.key.toLowerCase();
if (!isNaN(+passLetter)) {
click(passLetter);
}
}