AddMeal.jsx 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. import React, { useEffect, useState } from 'react';
  2. import { Button } from '@material-ui/core';
  3. import { makeStyles } from '@material-ui/styles';
  4. import axios from 'axios';
  5. import { v4 as uuidv4 } from 'uuid';
  6. import FontButton from "../Buttons/FontButton";
  7. import Navbar from "../Navbar";
  8. import { useHistory } from "react-router-dom";
  9. import BackButton from "../Buttons/BackButton";
  10. import { useTranslation } from 'react-i18next';
  11. import { deleteAllImagesFromMeal } from "./meals.util";
  12. import EditMealCore from "./EditMealCore";
  13. import { withAuthenticationRequired, useAuth0 } from "@auth0/auth0-react";
  14. import Loading from "../Loading";
  15. const useStyles = makeStyles(theme => ({
  16. form: {
  17. padding: '1rem 2.5rem',
  18. maxHeight: `calc(100% - 2rem - ${process.env.REACT_APP_NAV_TOP_HEIGHT}px)`,
  19. overflowY: 'auto',
  20. },
  21. submitButton: {
  22. margin: '0.5em 0 0 auto',
  23. display: 'block',
  24. }
  25. }));
  26. const serverURL = process.env.REACT_APP_SERVER_URL;
  27. const AddMeal = (props) => {
  28. const classes = useStyles();
  29. let history = useHistory();
  30. const { t } = useTranslation();
  31. const { user } = useAuth0();
  32. const { onDoneAdding } = props;
  33. const emptyMeal = {
  34. _id: uuidv4(),
  35. userId: user ? user.sub : '',
  36. title: '',
  37. images: [],
  38. recipeLink: '',
  39. comment: '',
  40. };
  41. useEffect(() => {
  42. updateMeal('userId', user.sub);
  43. }, [user]);
  44. const [meal, setMeal] = useState(emptyMeal);
  45. const updateMeal = (key, value) => {
  46. setMeal(prevState => ({
  47. ...prevState,
  48. [key]: value,
  49. }));
  50. }
  51. const addNewMeal = (event) => {
  52. event.preventDefault();
  53. if (meal.title) {
  54. axios.post(serverURL + '/meals/add', meal, {})
  55. .then(res => { // then print response status
  56. console.log('added meal', res);
  57. onDoneAdding();
  58. }).catch(err => {console.log(err)});
  59. }
  60. }
  61. return (
  62. <>
  63. <Navbar pageTitle={t('New Meal')} leftSideComponent={<BackButton onClick={() => {
  64. deleteAllImagesFromMeal(meal._id, () => {updateMeal('images', []);});
  65. history.goBack();
  66. }} />} rightSideComponent={meal.title ? <FontButton onClick={addNewMeal} label={t('Done')} /> : ''} />
  67. <form noValidate onSubmit={addNewMeal} className={classes.form}>
  68. <EditMealCore updateMeal={updateMeal} meal={meal} />
  69. <Button type="submit" disabled={!meal.title} className={classes.submitButton} variant='contained' color='primary'>{t('add')}</Button>
  70. </form>
  71. </>
  72. );
  73. }
  74. export default withAuthenticationRequired(AddMeal, {
  75. onRedirecting: () => <Loading />,
  76. });