HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URL's added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using it's URL and the proper URL extention.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<div id="root"></div>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
box-sizing: border-box;
padding: 0;
margin: 0;
background-color: brown;
}
#calc_container {
display: block;
text-align: center;
border-width: 2px;
border-color: black;
border-style: solid;
border-radius: 5px;
background-color: #000066;
width: 360px;
padding: 10px;
}
#display_cont {
margin: 20px auto 30px auto;
width: 85%;
border-width: 5px;
border-color: white;
border-style: solid;
border-radius: 5px;
}
#eq_display {
box-sizing: border-box;
padding-right: 1%;
margin: 0;
height: 22px;
width: 100%;
text-align: right;
font-size: 18px;
font-family: Roboto, sans-serif;
border-width: 2px 2px 0px 2px;
border-color: black;
border-style: solid;
}
#display {
box-sizing: border-box;
padding-right: 1%;
margin: 0;
height: 35px;
width: 100%;
text-align: right;
font-size: 29px;
font-family: Roboto, sans-serif;
font-style: bold;
border-width: 0px 2px 2px 2px;
border-color: black;
border-style: solid;
}
#button_cont {
text-align: center;
width: 85%;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
grid-column-gap: 5px;
grid-row-gap: 5px;
margin: 0% auto 20px auto;
}
.calc_but {
background-color: grey;
color: white;
min-height: 50px;
font-size: 25px;
font-weight: bold;
width: 100%;
border-width: 1px;
border-radius: 4px;
}
.calc_but:hover {
background-color: #595959;
}
#clear {
grid-column: 1/3;
background-color: #9a2518;
}
#clear:hover,
#clear_entry:hover {
background-color: #58150e;
}
#clear_entry {
background-color: #9a2518;
}
#zero {
grid-column: 1/3;
}
#add,
#subtract,
#multiply,
#divide,
#equals {
background-color: #262626;
}
#add:hover,
#subtract:hover,
#multiply:hover,
#divide:hover,
#equals:hover {
background-color: black;
}
const render = ReactDOM;
const INT_STATE = {
eq: "", //The current equation
curr: "0", //What is currently displayed
result: "" //If the equals button has been pressed it will equal the result of the current equal, otherwise nothing
};
const OP_REG = /[\+\-\×\÷]{1}/;
const SIGN_REG = /[\+\-]{1}/;
const NEG_REG = /[\-]{1}/;
const NON_NEG_REG = /[\+\×\÷]{1}/;
const CalcButton = props => {
return(
<button id={props.id} className="calc_but" onClick={() => props.handler(props.value)}>
{props.value}
</button>
);
}
class Display extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div id="display_cont">
<input id="eq_display" type="text" value={this.props.eq} readOnly />
<input id="display" type="text" value={this.props.curr} readOnly />
</div>
);
}
}
class Calculator extends React.Component {
constructor(props) {
super(props);
this.state = INT_STATE;
this.handleInput = this.handleInput.bind(this);
this.clearEntry = this.clearEntry.bind(this);
this.handleOp = this.handleOp.bind(this);
this.handleEquals = this.handleEquals.bind(this);
this.handleDec = this.handleDec.bind(this);
this.handleNum = this.handleNum.bind(this);
this.nextNumber = this.nextNumber.bind(this);
this.evalOp = this.evalOp.bind(this);
this.evaluate = this.evaluate.bind(this);
}
//Essesntially a reducer determining how button input is handled
handleInput(value) {
if (value == "A/C") {
this.setState(INT_STATE);
} else if(value == "CE"){
this.clearEntry();
}else if(OP_REG.test(value)) {
this.handleOp(value);
} else if (value == "=") {
this.handleEquals(value);
} else if (value == ".") {
this.handleDec(value);
} else {
this.handleNum(value);
}
}
//Clear the previous entry displayed on the screen
clearEntry(){
if(this.state.eq.length > 0){
//Reset to the initial state if clearing directly after resolving an equation
if(/[=]{1}/.test(this.state.eq)){
this.setState(INT_STATE);
}
//Remove all of the first number in the equation if that number, used in the current equation, was the result of the previous equation
else if(this.state.result == this.state.curr && this.state.curr == this.state.eq){
this.setState(INT_STATE);
}
//Reset the program to the initial state if the first item in the equation is deleted and this equation does not use the result of the previous equation
else if(this.state.result == "" && this.state.curr == this.state.eq && this.state.curr.length == 1){
this.setState(INT_STATE);
}
//If the current entry for the equation is a number with more than one digit, remove the one farthest from the right
else if(this.state.curr.length > 1){
this.setState({eq: this.state.eq.slice(0,this.state.eq.length-1), curr: this.state.curr.slice(0,this.state.curr.length-1),result: this.state.result});
}
//If the current entry is an operator, the last one must be a number of unknown length
else if(OP_REG.test(this.state.curr)){
let i = this.state.eq.length-2;
let temp = "";
while(i>=0 && OP_REG.test(this.state.eq[i]) == false){
temp = this.state.eq[i] + temp;
i--;
}
this.setState({eq:this.state.eq.slice(0,this.state.eq.length-1), curr:temp,
result: this.state.result});
}
//If the current entry is a number, the last one must be an operator
else{
this.setState({eq:this.state.eq.slice(0,this.state.eq.length-1), curr:this.state.eq[this.state.eq.length-2],
result: this.state.result});
}
}
}
handleOp(value) {
let newEq = this.state.eq;
let now = this.state.curr;
if (newEq.length == 0 && !SIGN_REG.test(value)) { //Cannot start an equation with multiplication or division
newEq = "";
}
else if (NEG_REG.test(newEq[newEq.length - 1]) && NEG_REG.test(value) && OP_REG.test(newEq[newEq.length - 2]) ) {
}
else if (NEG_REG.test(newEq[newEq.length - 1]) && NON_NEG_REG.test(value)) {
if (OP_REG.test(newEq[newEq.length - 2])) {
newEq = newEq.slice(0, newEq.length - 2) + value;
} else {
newEq = newEq.slice(0, newEq.length - 1) + value;
}
now = value;
}
else if (OP_REG.test(newEq[newEq.length - 1]) && NON_NEG_REG.test(value)) {
newEq = newEq.slice(0, newEq.length - 1) + value;
now = value;
}
else if (this.state.result == now) { //If you are using the result of the previous equation in a new equation
newEq = this.state.result + value;
now = value;
} else {
newEq = newEq + value;
now = value;
}
this.setState({
eq: newEq,
curr: now,
result: this.state.result
});
}
handleEquals(value) {
let newEq = this.state.eq + value;
let now = this.state.curr;
let final = this.state.result ;
if (this.state.eq.length == 0) {//Cannot start an equation with an equals sign
newEq = "";
} else if (final != this.state.eq && !OP_REG.test(this.state.eq[this.state.eq.length - 1]) //Can only finish an equation if it is not already finished or the previous button pressed was an operator
) {
final = this.evaluate(newEq);
newEq = newEq + final;
now = final;
}
this.setState({ eq: newEq, curr: now, result: final });
}
handleDec(value) {
let newEq = this.state.eq + value;
let now = this.state.curr;
if (this.state.eq.length == 0) { //If the first button clicked was a decimal, make sure it has a zero in front of it
newEq = "0.";
now = newEq;
} else if (/\./.test(now)||this.state.result == now || OP_REG.test(this.state.eq[this.state.eq.length - 1])) //Cannot click decimal button if the current number already has a decimal, the equation has ended or the last button pressed was an operator
{
newEq = this.state.eq;
} else {
now = now + ".";
}
this.setState({ eq: newEq, curr: now, result: this.state.result });
}
handleNum(value) {
let newEq = this.state.eq + value;
let now = this.state.curr;
let final = this.state.result;
if (value == "0" && (now == "0" || now == "-0" || now == "+0" )) {// only allow the first digit in a number to be zero (for decimal numbers)
newEq = this.state.eq;
} else if (final == now) { // Just finished an equation but not using the result in the next equation
newEq = value;
now = value;
final = "";
}
else if(OP_REG.test(now) && now.length != this.state.eq.length){ //if the previous button clicked was an operator but was not the first button clicked
now = value;
}
else if((now == "+0" || now == "-0") && value != "0") { // at start of equation do not allow leading zero
newEq = this.state.eq.slice(0,this.state.eq.length-1) + value;
now = now[0] + value;
}else if (now == "0" && value != "0") { // during equation do not allow leading zeros
newEq = this.state.eq.slice(0,this.state.eq.length-1) + value;
now = value;
}
else {
now = now + value;
}
this.setState({
eq: newEq,
curr: now,
result: final
});
}
//Return the string representation of the next floating point number in the equation starting from position
//startPos in the provided text
nextNumber(text, startPos) {
let start = startPos;
let end = text.length - 1;
if (NEG_REG.test(text[startPos])) {
start = start + 1;
}
for (let i = start; i < text.length; i++) {
if (OP_REG.test(text[i]) || text[i] == "=") {
end = i - 1;
break;
}
}
return end + 1;
}
//apply an operator to two numbers
evalOp(num1, num2, op) {
if (op == "+") {
return num1 + num2;
} else if (op == "-") {
return num1 - num2;
} else if (op == "×") {
return num1 * num2;
} else if (op == "÷") {
return num1 / num2;
}
return undefined;
}
//Turns the equation the user inputed through the buttons into a resulting number
evaluate(value) {
let total = 0;
let pos = 0;
if (SIGN_REG.test(value[0])) {
pos = this.nextNumber(value, 1);
total = parseFloat(value[0] + value.slice(1, pos));
} else {
pos = this.nextNumber(value, 0);
total = parseFloat(value.slice(0, pos));
}
while (value[pos] != "=") {
let end = this.nextNumber(value, pos + 1);
total = this.evalOp(total, parseFloat(value.slice(pos + 1, end)), value[pos]);
pos = end;
}
//return parseFloat(total.toFixed(4)).toString();
return total.toString();
}
render() {
const butText = [
["clear", "A/C"],
["clear_entry", "CE"],
["divide", "÷"],
["seven", "7"],
["eight", "8"],
["nine", "9"],
["multiply", "×"],
["four", "4"],
["five", "5"],
["six", "6"],
["subtract", "-"],
["one", "1"],
["two", "2"],
["three", "3"],
["add", "+"],
["zero", "0"],
["decimal", "."],
["equals", "="],
];
let buttonList = [];
for (let i = 0; i < 18; i++) {
buttonList.push(
<CalcButton
id={butText[i][0]}
value={butText[i][1]}
handler={this.handleInput}
/>
);
}
return (
<div id="calc_container">
<Display eq={this.state.eq} curr={this.state.curr} />
<div id="button_cont">
{buttonList}
</div>
</div>
);
}
}
ReactDOM.render(<Calculator />, document.getElementById("root"));
Also see: Tab Triggers