working buy function and portfolio

This commit is contained in:
Joshua Hsueh 2021-01-31 11:53:34 -05:00
parent e241f43bdf
commit ef8059bf56
2 changed files with 27 additions and 27 deletions

View File

@ -1,4 +1,5 @@
import React, { useState, useEffect } from "react"; import React, { useState, useEffect } from "react";
import { useHistory } from "react-router-dom";
import "./assets/Browse.css"; import "./assets/Browse.css";
import Plotly from "plotly.js"; import Plotly from "plotly.js";
import createPlotlyComponent from "react-plotly.js/factory"; import createPlotlyComponent from "react-plotly.js/factory";
@ -8,6 +9,8 @@ const Browse = (props) => {
const [stockChartYValues, setStockChartYValues] = useState([]); const [stockChartYValues, setStockChartYValues] = useState([]);
const [days, setDays] = useState(30); const [days, setDays] = useState(30);
const [stock, setStock] = useState("INTC"); const [stock, setStock] = useState("INTC");
const [quantity, setQuantity] = useState(0);
const history = useHistory();
let stockChartXValuesList = []; let stockChartXValuesList = [];
let stockChartYValuesList = []; let stockChartYValuesList = [];
@ -36,6 +39,23 @@ const Browse = (props) => {
fetchStock(); fetchStock();
}, [stock]); }, [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 ( return (
<div className="portfolio container"> <div className="portfolio container">
<h1 className="d-flex justify-content-center m-2 p-4">Browse</h1> <h1 className="d-flex justify-content-center m-2 p-4">Browse</h1>
@ -91,14 +111,15 @@ const Browse = (props) => {
</div> </div>
<div> <div>
<br></br> <br></br>
<form method="POST" action="/browse/"> <form onSubmit={onSubmit}>
<div id="form-group"> <div id="form-group">
<label className="h4">Amount:</label> <label className="h4">Amount:</label>
<input <input
className="form-control" className="form-control"
name="username" name="username"
type="number" type="number"
step="0.01" value={quantity}
onChange={(e) => setQuantity(e.target.value)}
/> />
</div> </div>
<br /> <br />

View File

@ -67,7 +67,10 @@ const Portfolio = (props) => {
</h4> </h4>
{stocks.map((stock) => { {stocks.map((stock) => {
return ( return (
<div className="m-1 d-inline-block text-dark text-wrap bg-white rounded p-3"> <div
key={stock.uuid}
className="m-1 d-inline-block text-dark text-wrap bg-white rounded p-3"
>
<h3>Stock: {stock.ticker}</h3> <h3>Stock: {stock.ticker}</h3>
<p>Quantity: {stock.quantity}</p> <p>Quantity: {stock.quantity}</p>
<p>Buy Price: ${stock.price}</p> <p>Buy Price: ${stock.price}</p>
@ -77,30 +80,6 @@ const Portfolio = (props) => {
</div> </div>
); );
})} })}
<div className="m-1 d-inline-block text-dark text-wrap bg-white rounded p-3">
<h3>Stock: AMZN</h3>
<p>Quantity: 5</p>
<p>Buy Price: $3206.20</p>
<form method="POST" action="/delete/">
<input type="submit" value="Sell" class="btn btn-danger" />
</form>
</div>
<div className="d-inline-block m-1 text-wrap bg-white text-dark rounded p-3">
<h3>Stock: INTC</h3>
<p>Quantity: 10</p>
<p>Buy Price: $55.51</p>
<form method="POST" action="/delete/">
<input type="submit" value="Sell" class="btn btn-danger" />
</form>
</div>
<div className="m-1 d-inline-block text-dark text-wrap bg-white rounded p-3">
<h3>Stock: MSFT</h3>
<p>Quantity: 5</p>
<p>Buy Price: $231.96</p>
<form method="POST" action="/delete/">
<input type="submit" value="Sell" class="btn btn-danger" />
</form>
</div>
</div> </div>
</div> </div>
</div> </div>