diff --git a/frontend/src/components/Browse.js b/frontend/src/components/Browse.js index 1c9d8af..a73b7b5 100644 --- a/frontend/src/components/Browse.js +++ b/frontend/src/components/Browse.js @@ -1,4 +1,5 @@ import React, { useState, useEffect } from "react"; +import { useHistory } from "react-router-dom"; import "./assets/Browse.css"; import Plotly from "plotly.js"; import createPlotlyComponent from "react-plotly.js/factory"; @@ -8,6 +9,8 @@ const Browse = (props) => { const [stockChartYValues, setStockChartYValues] = useState([]); const [days, setDays] = useState(30); const [stock, setStock] = useState("INTC"); + const [quantity, setQuantity] = useState(0); + const history = useHistory(); let stockChartXValuesList = []; let stockChartYValuesList = []; @@ -36,6 +39,23 @@ const Browse = (props) => { fetchStock(); }, [stock]); + const onSubmit = (e) => { + e.preventDefault(); + const requestOptions = { + method: "POST", + headers: { + "Content-Type": "application/json", + Authorization: `Bearer ${localStorage.getItem("token")}`, + }, + body: JSON.stringify({ ticker: stock, quantity: quantity }), + }; + fetch(`${process.env.REACT_APP_API_ENDPOINT}/stock/create`, requestOptions) + .then((response) => response.json()) + .then((data) => { + console.log(data); + }); + }; + return (

Browse

@@ -91,14 +111,15 @@ const Browse = (props) => {


-
+
setQuantity(e.target.value)} />

diff --git a/frontend/src/components/Portfolio.js b/frontend/src/components/Portfolio.js index 98e8683..3570227 100644 --- a/frontend/src/components/Portfolio.js +++ b/frontend/src/components/Portfolio.js @@ -67,7 +67,10 @@ const Portfolio = (props) => { {stocks.map((stock) => { return ( -
+

Stock: {stock.ticker}

Quantity: {stock.quantity}

Buy Price: ${stock.price}

@@ -77,30 +80,6 @@ const Portfolio = (props) => {
); })} -
-

Stock: AMZN

-

Quantity: 5

-

Buy Price: $3206.20

- - - -
-
-

Stock: INTC

-

Quantity: 10

-

Buy Price: $55.51

-
- -
-
-
-

Stock: MSFT

-

Quantity: 5

-

Buy Price: $231.96

-
- -
-