Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Math magicians :Events #3

Merged
merged 5 commits into from
Mar 30, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add logic
  • Loading branch information
torobucci committed Mar 29, 2023
commit 76ce096a0e6760d2eb65ae8303d7829770a1b6a2
19 changes: 16 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"big.js": "^6.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
Expand Down
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import DisplayCalculator from './components/DisplayCalculator';
import Calculator from './components/Calculator';

function App() {
return (
<div className="app">
<DisplayCalculator />
<Calculator />
</div>
);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import Buttons from './Buttons';

function DisplayCalculator() {
function Calculator() {
return (
<div className="calculator">
<input type="text" placeholder="0" className="input" />
<Buttons />
</div>
);
}
export default DisplayCalculator;
export default Calculator;
133 changes: 133 additions & 0 deletions src/logic/calculate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
import operate from './operate';

function isNumber(item) {
return !!item.match(/[0-9]+/);
}

/**
* Given a button name and a calculator data object, return an updated
* calculator data object.
*
* Calculator data object contains:
* total:s the running total
* next:String the next number to be operated on with the total
* operation:String +, -, etc.
*/
export default function calculate(obj, buttonName) {
if (buttonName === 'AC') {
return {
total: null,
next: null,
operation: null,
};
}

if (isNumber(buttonName)) {
if (buttonName === '0' && obj.next === '0') {
return {};
}
// If there is an operation, update next
if (obj.operation) {
if (obj.next && obj.next !== '0') {
return { ...obj, next: obj.next + buttonName };
}
return { ...obj, next: buttonName };
}
// If there is no operation, update next and clear the value
if (obj.next && obj.next !== '0') {
return {
next: obj.next + buttonName,
total: null,
};
}
return {
next: buttonName,
total: null,
};
}

if (buttonName === '.') {
if (obj.next) {
if (obj.next.includes('.')) {
return { ...obj };
}
return { ...obj, next: `${obj.next}.` };
}
if (obj.operation) {
return { ...obj, next: '0.' };
}
if (obj.total) {
if (obj.total.includes('.')) {
return {};
}
return { ...obj, next: `${obj.total}.` };
}
return { ...obj, next: '0.' };
}

if (buttonName === '=') {
if (obj.next && obj.operation) {
return {
total: operate(obj.total, obj.next, obj.operation),
next: null,
operation: null,
};
}
// '=' with no operation, nothing to do
return {};
}

if (buttonName === '+/-') {
if (obj.next) {
return { ...obj, next: (-1 * parseFloat(obj.next)).toString() };
}
if (obj.total) {
return { ...obj, total: (-1 * parseFloat(obj.total)).toString() };
}
return {};
}

// Button must be an operation

// When the user presses an operation button without having entered
// a number first, do nothing.
// if (!obj.next && !obj.total) {
// return {};
// }

// User pressed an operation after pressing '='
if (!obj.next && obj.total && !obj.operation) {
return { ...obj, operation: buttonName };
}

// User pressed an operation button and there is an existing operation
if (obj.operation) {
if (obj.total && !obj.next) {
return { ...obj, operation: buttonName };
}

if (!obj.total) {
return { total: 0, operation: buttonName };
}

return {
total: operate(obj.total, obj.next, obj.operation),
next: null,
operation: buttonName,
};
}

// no operation yet, but the user typed one

// The user hasn't typed a number yet, just save the operation
if (!obj.next) {
return { operation: buttonName };
}

// save the operation and shift 'next' into 'total'
return {
total: obj.next,
next: null,
operation: buttonName,
};
}
30 changes: 30 additions & 0 deletions src/logic/operate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import Big from 'big.js';

export default function operate(numberOne, numberTwo, operation) {
const one = Big(numberOne);
const two = Big(numberTwo);
if (operation === '+') {
return one.plus(two).toString();
}
if (operation === '-') {
return one.minus(two).toString();
}
if (operation === 'x') {
return one.times(two).toString();
}
if (operation === '÷') {
try {
return one.div(two).toString();
} catch (err) {
return "Can't divide by 0.";
}
}
if (operation === '%') {
try {
return one.mod(two).toString();
} catch (err) {
return "Can't find modulo as can't divide by 0.";
}
}
throw Error(`Unknown operation '${operation}'`);
}