component: show/hide Modal with animation
This commit is contained in:
parent
8ff6175355
commit
aa5fc21a5d
@ -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>
|
||||
)
|
||||
|
||||
|
@ -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>
|
||||
);
|
||||
|
@ -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} />
|
||||
|
Loading…
Reference in New Issue
Block a user