|
@@ -1,5 +1,5 @@
|
|
|
import React, { useEffect, useState } from 'react';
|
|
|
-import { Button, Checkbox, FormControlLabel, TextField } from '@material-ui/core';
|
|
|
+import { Button, Checkbox, FormControlLabel, TextField, Box, Grid } from '@material-ui/core';
|
|
|
import { Autocomplete } from '@material-ui/lab';
|
|
|
import { makeStyles } from '@material-ui/styles';
|
|
|
import axios from 'axios';
|
|
@@ -9,8 +9,11 @@ import FontButton from "../Buttons/FontButton";
|
|
|
import { useHistory } from "react-router-dom";
|
|
|
import BackButton from "../Buttons/BackButton";
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
+import { faMinusCircle, faPlusCircle } from "@fortawesome/free-solid-svg-icons";
|
|
|
+import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
+import DeleteButton from "../Buttons/DeleteButton";
|
|
|
|
|
|
-const useStyles = makeStyles({
|
|
|
+const useStyles = makeStyles(theme => ({
|
|
|
dateSelectionWrapper: {
|
|
|
display: 'flex',
|
|
|
justifyContent: 'space-between',
|
|
@@ -25,17 +28,48 @@ const useStyles = makeStyles({
|
|
|
marginLeft: 'auto',
|
|
|
},
|
|
|
form: {
|
|
|
- padding: '1em 3.5em',
|
|
|
+ padding: '1em 2.5em',
|
|
|
},
|
|
|
textField: {
|
|
|
width: '100%',
|
|
|
marginTop: '1em',
|
|
|
marginBottom: '1em',
|
|
|
},
|
|
|
+ buttonGridCell: {
|
|
|
+ maxWidth: 'calc(2em + 8px)',
|
|
|
+ flexGrow: 1,
|
|
|
+ flexBasis: 0,
|
|
|
+ textAlign: 'center',
|
|
|
+ },
|
|
|
+ missingIngredientsBox: {
|
|
|
+ paddingLeft: '2em',
|
|
|
+ marginTop: '0.5em',
|
|
|
+ },
|
|
|
+ newIngredientInputGrid: {
|
|
|
+ marginBottom: '0.5em',
|
|
|
+ },
|
|
|
+ addIngredientButton: {
|
|
|
+ borderRadius: '100%',
|
|
|
+ minWidth: '1em',
|
|
|
+ padding: 0,
|
|
|
+ color: '#ffffff',
|
|
|
+ },
|
|
|
+ addIngredientButtonIcon: {
|
|
|
+ color: theme.palette.secondary.main,
|
|
|
+ },
|
|
|
+ removeIngredientButtonIcon: {
|
|
|
+ color: theme.palette.error.light,
|
|
|
+ },
|
|
|
+ missingIngredientItem: {
|
|
|
+ display: 'flex',
|
|
|
+ },
|
|
|
+ missingIngredientCheckbox: {
|
|
|
+ padding: '5px 9px',
|
|
|
+ },
|
|
|
submitButton: {
|
|
|
margin: '1.5em 0 0',
|
|
|
}
|
|
|
-});
|
|
|
+}));
|
|
|
|
|
|
const AddPlanItem = (props) => {
|
|
|
const classes = useStyles();
|
|
@@ -49,6 +83,12 @@ const AddPlanItem = (props) => {
|
|
|
const [date, setDate] = useState(new Date());
|
|
|
const [useDate, setUseDate] = useState(false);
|
|
|
const [gotEverything, setGotEverything] = useState(true);
|
|
|
+ const [newIngredient, setNewIngredient] = useState('');
|
|
|
+ const [missingIngredients, setMissingIngredients] = useState([]);
|
|
|
+
|
|
|
+ const [, updateState] = React.useState();
|
|
|
+ const forceUpdate = React.useCallback(() => updateState({}), []);
|
|
|
+
|
|
|
const [meals, setMeals] = useState([]);
|
|
|
|
|
|
const fetchAndUpdateMeals = () => {
|
|
@@ -89,7 +129,31 @@ const AddPlanItem = (props) => {
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
- console.log('title', title)
|
|
|
+
|
|
|
+ const addIngredient = () => {
|
|
|
+ const ingredientToAdd = {
|
|
|
+ name: newIngredient,
|
|
|
+ checked: false,
|
|
|
+ }
|
|
|
+ setMissingIngredients(prevIngredients => [...prevIngredients, ingredientToAdd]);
|
|
|
+ setNewIngredient('');
|
|
|
+ }
|
|
|
+
|
|
|
+ const setIngredientChecked = (ingredient, newCheckedStatus) => {
|
|
|
+ const updatedIngredients = missingIngredients;
|
|
|
+ updatedIngredients.forEach(i => i.checked = (i === ingredient) ? newCheckedStatus : i.checked);
|
|
|
+ setMissingIngredients(updatedIngredients);
|
|
|
+ forceUpdate();
|
|
|
+ }
|
|
|
+
|
|
|
+ const removeIngredient = (ingredient) => {
|
|
|
+ const updatedIngredients = missingIngredients.filter(i => i !== ingredient);
|
|
|
+ console.log(updatedIngredients);
|
|
|
+
|
|
|
+ setMissingIngredients(updatedIngredients);
|
|
|
+ // forceUpdate();
|
|
|
+ }
|
|
|
+
|
|
|
return (
|
|
|
<>
|
|
|
|
|
@@ -97,23 +161,13 @@ const AddPlanItem = (props) => {
|
|
|
leftSideComponent={<BackButton onClick={() => {history.goBack()}} />}
|
|
|
rightSideComponent={title ? <FontButton label={t('Done')} onClick={addNewPlan} /> : ''} />
|
|
|
<form noValidate onSubmit={addNewPlan} className={classes.form}>
|
|
|
- <Autocomplete
|
|
|
- id="planTitle"
|
|
|
- freeSolo
|
|
|
- value={connectedMeal}
|
|
|
- onChange={(event, newValue) => {
|
|
|
- setConnectedMeal(newValue);
|
|
|
- }}
|
|
|
- inputValue={title}
|
|
|
- onInputChange={(event, newInputValue) => {
|
|
|
- setTitle(newInputValue);
|
|
|
- }}
|
|
|
- options={meals}
|
|
|
- getOptionLabel={(option) => option.title || ''}
|
|
|
- renderInput={(params) => (
|
|
|
- <TextField {...params} className={classes.textField} label={t('New Plan')} variant="outlined" autoFocus required />
|
|
|
- )}
|
|
|
- />
|
|
|
+ <Autocomplete id="planTitle" freeSolo value={connectedMeal} onChange={(event, newValue) => {
|
|
|
+ setConnectedMeal(newValue);
|
|
|
+ }} inputValue={title} onInputChange={(event, newInputValue) => {
|
|
|
+ setTitle(newInputValue);
|
|
|
+ }} options={meals} getOptionLabel={(option) => option.title || ''} renderInput={(params) => (
|
|
|
+ <TextField {...params} className={classes.textField} label={t('New Plan')} variant="outlined" autoFocus required />
|
|
|
+ )} />
|
|
|
<div className={classes.dateSelectionWrapper}>
|
|
|
<FormControlLabel className={classes.dateLabel} label="Date" control={
|
|
|
<Checkbox checked={useDate} onChange={e => setUseDate(e.target.checked)} color="primary" />
|
|
@@ -131,9 +185,47 @@ const AddPlanItem = (props) => {
|
|
|
<FormControlLabel label={t('Got everything?')} control={
|
|
|
<Checkbox checked={gotEverything} onChange={e => setGotEverything(e.target.checked)} color="primary" />
|
|
|
} />
|
|
|
+ <Box className={classes.missingIngredientsBox} hidden={gotEverything}>
|
|
|
+
|
|
|
+ <Grid container spacing={1} justify="space-between" alignItems="flex-end" className={classes.newIngredientInputGrid}>
|
|
|
+ <Grid item xs>
|
|
|
+ <TextField value={newIngredient} color="secondary" name="newIngredient" onChange={e => setNewIngredient(e.target.value)} onKeyUp={(event) => {
|
|
|
+ if (event.key === 'Enter') {
|
|
|
+ addIngredient();
|
|
|
+ }
|
|
|
+ }} label={t('Add missing ingredient')} variant="standard" />
|
|
|
+ </Grid>
|
|
|
+ <Grid item className={classes.buttonGridCell}>
|
|
|
+ <Button type="button"
|
|
|
+ disabled={!newIngredient}
|
|
|
+ className={classes.addIngredientButton}
|
|
|
+ onClick={addIngredient}
|
|
|
+ variant='contained'><FontAwesomeIcon className={classes.addIngredientButtonIcon} icon={faPlusCircle} size="2x" /></Button>
|
|
|
+ </Grid>
|
|
|
+ </Grid>
|
|
|
+
|
|
|
+ {missingIngredients.map(ingredient =>
|
|
|
+ <Grid container spacing={1} justify="space-between" alignItems="center">
|
|
|
+ <Grid item xs>
|
|
|
+ <FormControlLabel label={ingredient.name} className={classes.missingIngredientItem} control={
|
|
|
+ <Checkbox className={classes.missingIngredientCheckbox}
|
|
|
+ checked={ingredient.checked}
|
|
|
+ onChange={e => setIngredientChecked(ingredient, e.target.checked)}
|
|
|
+ color="secondary" />
|
|
|
+ } />
|
|
|
+ </Grid>
|
|
|
+ <Grid item className={classes.buttonGridCell}>
|
|
|
+ <Button type="button"
|
|
|
+ className={classes.addIngredientButton}
|
|
|
+ onClick={() => {removeIngredient(ingredient)}}
|
|
|
+ variant='contained'><FontAwesomeIcon className={classes.removeIngredientButtonIcon} icon={faMinusCircle} size="lg" /></Button>
|
|
|
+ </Grid>
|
|
|
+ </Grid>
|
|
|
+ )}
|
|
|
+ </Box>
|
|
|
<br />
|
|
|
|
|
|
- <Button type="submit" disabled={!title} className={classes.submitButton} variant='contained' color='primary'>{t('Add')}</Button>
|
|
|
+ <Button type="submit" disabled={!title} className={classes.submitButton} variant='contained' color='primary'>{t('Add Plan')}</Button>
|
|
|
</form>
|
|
|
</>
|
|
|
);
|