diff --git a/frontend/src/components/Portfolio.js b/frontend/src/components/Portfolio.js index a15f21b..98e8683 100644 --- a/frontend/src/components/Portfolio.js +++ b/frontend/src/components/Portfolio.js @@ -10,6 +10,7 @@ const Portfolio = (props) => { percentage: 0.5, stocks: [], }); + const [stocks, setStocks] = useState([]); const requestOptions = { method: "GET", @@ -28,30 +29,79 @@ const Portfolio = (props) => { }); }; + const callStocksAPI = () => { + fetch( + `${process.env.REACT_APP_API_ENDPOINT}/robinhood/fetch/`, + requestOptions + ) + .then((response) => response.json()) + .then((data) => { + if (data !== undefined) { + setStocks(data); + } + }); + }; + useEffect(() => { callAPI(); + callStocksAPI(); }, []); return (

Portfolio

-

Hello {state.user.username}!

-

Your Charity of Choice: {state.charity}

- +
+

Hello {state.user.username}!

+

+ Your Charity of Choice:{" "} + UN Women {state.charity} +

+

Your earnings: $0.00

+

Charity earnings: $17745.90

+
+

-

Your Stocks:

- {[].map((stock) => { - return ( -
-

Stock: {stock.ticker}

-

Quantity: {stock.quantity}

-

Buy Price: {stock.buy_price}

-
- -
-
- ); - })} +
+

+ Your Stocks: +

+ {stocks.map((stock) => { + return ( +
+

Stock: {stock.ticker}

+

Quantity: {stock.quantity}

+

Buy Price: ${stock.price}

+
+ +
+
+ ); + })} +
+

Stock: AMZN

+

Quantity: 5

+

Buy Price: $3206.20

+
+ +
+
+
+

Stock: INTC

+

Quantity: 10

+

Buy Price: $55.51

+
+ +
+
+
+

Stock: MSFT

+

Quantity: 5

+

Buy Price: $231.96

+
+ +
+
+
); diff --git a/website/images/browse.png b/website/images/browse.png new file mode 100644 index 0000000..d5bf591 Binary files /dev/null and b/website/images/browse.png differ diff --git a/website/images/portfolio.png b/website/images/portfolio.png new file mode 100644 index 0000000..710c547 Binary files /dev/null and b/website/images/portfolio.png differ diff --git a/website/index.html b/website/index.html index 9166ae1..8d3c3f1 100644 --- a/website/index.html +++ b/website/index.html @@ -101,20 +101,69 @@
-
+

Our Services

-

- ReInvest is a philanthropic platform where users can invest money - for charities. Instead of a simple donation, you can purchase stocks - for your charity of choice. This offers a great opportunity for you - to learn about stocks while helping your favorite organizations. - Scared of losing too much money? Our platform offers automatic stop - losses so that your organization doesn't lose more than a set - percentage of your initial donation. Additionally, you set the - percentage of profits that you get in return meanwhile your charity - gets the initial donation plus the rest of the profits. -

+ +
+
+  +
+
Browse Stocks
+
+

+ Easily browse through stocks and see their past. Change the + scale of the graph to your pleasing. Then if you wish to hold + a position, specify the amount of money you wish to donate and + submit. +

+
+
+
+
+
+
+  +
+
+
+
+ +
Charities
+
+ +

+ Help out your favorite charities while learning and practicing + trading. The charities will receive the initial buy price. + Then, you can set a percentage of the profits that also goes + to charity. In this era, instead of a simple donation, you can + use our trading platform to trade for your charities. +

+
+
+
+
+
+
+  +
+
+
+
+ +
Portfolio
+
+ +

+ Easily manage your portfolio with Reinvest. Here you can see + all the positions you currently hold as well as the initial + buy price and quantity. You can sell the stock by clicking + Sell for the desired stock. You can also see the current + earnings for yourself and the charity. +

+
+
+