|
@@ -1,16 +1,16 @@
|
|
|
import React, { useEffect, useState } from 'react';
|
|
|
-import { Button, Dialog, Snackbar, Box, Grid } from '@material-ui/core';
|
|
|
+import { Button, Dialog, Grid, Snackbar } from '@material-ui/core';
|
|
|
import { makeStyles } from '@material-ui/styles';
|
|
|
import axios from 'axios';
|
|
|
import DeleteButton from "../Buttons/DeleteButton";
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
-import { func, bool, string, shape, arrayOf } from "prop-types";
|
|
|
+import { arrayOf, bool, func, shape, string } from "prop-types";
|
|
|
import Navbar from "../Navbar";
|
|
|
import FontButton from "../Buttons/FontButton";
|
|
|
import EditPlanItemCore from "./EditPlanItemCore";
|
|
|
import BackButton from "../Buttons/BackButton";
|
|
|
import { SlidingTransition } from "../util";
|
|
|
-import { withAuthenticationRequired, useAuth0 } from "@auth0/auth0-react";
|
|
|
+import { useAuth0, withAuthenticationRequired } from "@auth0/auth0-react";
|
|
|
import Loading from "../Loading";
|
|
|
|
|
|
const useStyles = makeStyles((theme) => ({
|
|
@@ -44,6 +44,7 @@ const useStyles = makeStyles((theme) => ({
|
|
|
}));
|
|
|
|
|
|
const inverseColors = true;
|
|
|
+const serverURL = process.env.REACT_APP_SERVER_URL;
|
|
|
|
|
|
const EditPlanItem = (props) => {
|
|
|
const classes = useStyles();
|
|
@@ -82,7 +83,7 @@ const EditPlanItem = (props) => {
|
|
|
}
|
|
|
console.log('to become', newPlan);
|
|
|
|
|
|
- axios.post('http://localhost:5000/plans/edit/' + planItem._id, newPlan).then((result) => {
|
|
|
+ axios.post(serverURL + '/plans/edit/' + planItem._id, newPlan).then((result) => {
|
|
|
console.log('edit request sent', result.data);
|
|
|
onDoneEditing();
|
|
|
});
|
|
@@ -90,7 +91,7 @@ const EditPlanItem = (props) => {
|
|
|
}
|
|
|
|
|
|
const deletePlan = () => {
|
|
|
- axios.post('http://localhost:5000/plans/delete/' + planItem._id).then((result) => {
|
|
|
+ axios.post(serverURL + '/plans/delete/' + planItem._id).then((result) => {
|
|
|
setDeletedItem(planItem);
|
|
|
setDeleteMessageVisible(true);
|
|
|
console.log('delete request sent', result.data);
|
|
@@ -100,7 +101,7 @@ const EditPlanItem = (props) => {
|
|
|
}
|
|
|
|
|
|
const undoDeletion = () => {
|
|
|
- axios.post('http://localhost:5000/plans/add', deletedItem).then((result) => {
|
|
|
+ axios.post(serverURL + '/plans/add', deletedItem).then((result) => {
|
|
|
console.log('re-add request sent', result.data);
|
|
|
setDeleteMessageVisible(false);
|
|
|
setReaddedMessageVisible(true);
|