aboutsummaryrefslogtreecommitdiff
path: root/react-frontend/src/components/InvestorInfo.js
diff options
context:
space:
mode:
Diffstat (limited to 'react-frontend/src/components/InvestorInfo.js')
-rw-r--r--react-frontend/src/components/InvestorInfo.js60
1 files changed, 30 insertions, 30 deletions
diff --git a/react-frontend/src/components/InvestorInfo.js b/react-frontend/src/components/InvestorInfo.js
index d368984..703c4c6 100644
--- a/react-frontend/src/components/InvestorInfo.js
+++ b/react-frontend/src/components/InvestorInfo.js
@@ -2,7 +2,7 @@
import { useEffect, useState } from "react";
// CSS import
-import '../css/UserCheckin.css';
+import "../css/UserCheckin.css";
/**
* Componenet for checkins. Has a toggle to show more info.
@@ -12,40 +12,40 @@ import '../css/UserCheckin.css';
function InvestorInfo(props) {
const [info, setInfo] = useState({});
- const toEpochMilli = date => Date.parse(date);
+ const toEpochMilli = (date) => Date.parse(date);
const getInfo = () => {
- console.log({
+ console.log({
person: props.name,
- start: toEpochMilli(props.dates.start),
- end: toEpochMilli(props.dates.end)
+ start: toEpochMilli(props.dates.start),
+ end: toEpochMilli(props.dates.end),
});
- if (props.name === "") {
+ if (props.name === "Mathews Krista Jean") {
return;
}
-
+
fetch("http://localhost:4567/profit", {
- method: "POST",
- body: JSON.stringify({
- person: props.name,
- start: toEpochMilli(props.dates.start),
- end: toEpochMilli(props.dates.end)
- }),
- headers: {
- "Content-Type": "application/json",
- },
- credentials: "same-origin"
- })
- .then(res => {
- console.log(res);
- res.json();
- })
- .then(data => {
- console.log(data);
- setInfo(data);
+ method: "POST",
+ body: JSON.stringify({
+ person: props.name,
+ start: toEpochMilli(props.dates.start),
+ end: toEpochMilli(props.dates.end),
+ }),
+ headers: {
+ "Content-Type": "application/json",
+ },
+ credentials: "same-origin",
})
- .catch(err => console.log(err));
- }
+ .then((res) => {
+ console.log(res);
+ res.json();
+ })
+ .then((data) => {
+ console.log(data);
+ setInfo(data);
+ })
+ .catch((err) => console.log(err));
+ };
/*
const coords = userCoords.map((coord, index) =>
@@ -54,13 +54,13 @@ function InvestorInfo(props) {
</li>
);*/
- useEffect(() => getInfo(), [props.name, props.isSelected, props.personId])
+ useEffect(() => getInfo(), [props.name, props.isSelected, props.personId]);
return (
- <div className="Chosen-user" hidden={props.isSelected}>
+ <div className="Chosen-user" hidden={false}>
hi
</div>
);
}
-export default InvestorInfo; \ No newline at end of file
+export default InvestorInfo;