component: add custom Button component
This commit is contained in:
parent
670aeeccdf
commit
77a69afbe9
@ -1,6 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import Aux from '../../../hoc/Auxiliary';
|
import Aux from '../../../hoc/Auxiliary';
|
||||||
|
import Button from '../../UI/Button/Button';
|
||||||
|
|
||||||
const orderSummary = (props) => {
|
const orderSummary = (props) => {
|
||||||
const ingredients = Object.keys(props.ingredients)
|
const ingredients = Object.keys(props.ingredients)
|
||||||
@ -20,6 +21,8 @@ const orderSummary = (props) => {
|
|||||||
{ingredients}
|
{ingredients}
|
||||||
</ul>
|
</ul>
|
||||||
<p>Continue to Checkout?</p>
|
<p>Continue to Checkout?</p>
|
||||||
|
<Button btnType="Danger" clicked={props.purchaseCancalled}>CANCEL</Button>
|
||||||
|
<Button btnType="Success" clicked={props.purchaseContinued}>CONTINUE</Button>
|
||||||
</Aux>
|
</Aux>
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
24
src/components/UI/Button/Button.css
Normal file
24
src/components/UI/Button/Button.css
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
.Button {
|
||||||
|
background-color: transparent;
|
||||||
|
border: none;
|
||||||
|
color: white;
|
||||||
|
outline: none;
|
||||||
|
cursor: pointer;
|
||||||
|
font: inherit;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 10px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Button:first-of-type {
|
||||||
|
margin-left: 0;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Success {
|
||||||
|
color: #5C9210;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Danger {
|
||||||
|
color: #944317;
|
||||||
|
}
|
12
src/components/UI/Button/Button.js
Normal file
12
src/components/UI/Button/Button.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import classes from './Button.css';
|
||||||
|
|
||||||
|
const button = (props) => {
|
||||||
|
return (
|
||||||
|
<button className={[classes.Button, classes[props.btnType]].join(' ')}
|
||||||
|
onClick={props.clicked}> { props.children}</button >
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default button;
|
@ -86,6 +86,10 @@ class BurgerBuilder extends Component {
|
|||||||
this.setState({ purchasing: false });
|
this.setState({ purchasing: false });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
purchaseContinueHandler = () => {
|
||||||
|
alert("You continue");
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const disabledInfo = {
|
const disabledInfo = {
|
||||||
...this.state.ingredients
|
...this.state.ingredients
|
||||||
@ -100,7 +104,10 @@ class BurgerBuilder extends Component {
|
|||||||
<Modal
|
<Modal
|
||||||
show={this.state.purchasing}
|
show={this.state.purchasing}
|
||||||
modalClosed={this.purchaseCancelHandler}>
|
modalClosed={this.purchaseCancelHandler}>
|
||||||
<OrderSummary ingredients={this.state.ingredients}></OrderSummary>
|
<OrderSummary
|
||||||
|
ingredients={this.state.ingredients}
|
||||||
|
purchaseCancalled={this.purchaseCancelHandler}
|
||||||
|
purchaseContinued={this.purchaseContinueHandler}></OrderSummary>
|
||||||
</Modal>
|
</Modal>
|
||||||
<Burger ingredients={this.state.ingredients} />
|
<Burger ingredients={this.state.ingredients} />
|
||||||
<BuildControls
|
<BuildControls
|
||||||
|
Loading…
Reference in New Issue
Block a user