component: show/hide Modal with animation

master
oscarzhou 2020-12-12 19:22:54 +13:00
parent 8ff6175355
commit aa5fc21a5d
3 changed files with 29 additions and 18 deletions

View File

@ -22,7 +22,8 @@ const buildControls = (props) => (
disabled={props.disabled[ctrl.type]} />
))}
<button className={classes.OrderButton}
disabled={!props.purchasable}>ORDER NOW</button>
disabled={!props.purchasable}
onClick={props.ordered}>ORDER NOW</button>
</div>
)

View File

@ -4,7 +4,11 @@ import classes from './Modal.css';
const modal = (props) => {
return (
<div className={classes.Modal}>
<div
className={classes.Modal}
style={{
transform: props.show ? 'translateY(0)' : 'translateY(-100vh)'
}}>
{props.children}
</div>
);

View File

@ -24,6 +24,7 @@ class BurgerBuilder extends Component {
},
totalPrice: 0,
purchasable: false,
purchasing: false,
}
updatePurchaseState(ingredients) {
@ -77,6 +78,10 @@ class BurgerBuilder extends Component {
this.updatePurchaseState(updatedIngredients);
}
purchaseHandler = () => {
this.setState({ purchasing: true });
}
render() {
const disabledInfo = {
...this.state.ingredients
@ -88,13 +93,14 @@ class BurgerBuilder extends Component {
return (
<Aux>
<Modal>
<Modal show={this.state.purchasing}>
<OrderSummary ingredients={this.state.ingredients}></OrderSummary>
</Modal>
<Burger ingredients={this.state.ingredients} />
<BuildControls
ingredientAdded={this.addIngredientHandler}
ingredientRemoved={this.removeIngredientHandler}
ordered={this.purchaseHandler}
disabled={disabledInfo}
purchasable={this.state.purchasable}
price={this.state.totalPrice} />