switched back to functional components

This commit is contained in:
Joshua Hsueh 2021-01-30 16:51:29 -05:00
parent 3c739f5e25
commit 94c0fd4405
5 changed files with 78 additions and 84 deletions

View File

@ -1,26 +1,25 @@
import React, { Component } from "react"; import React, { useState, useEffect } from "react";
import "./assets/Bank.css"; import "./assets/Portfolio.css";
class Bank extends Component { const Portfolio = (props) => {
constructor(props) { const [state, setState] = useState({});
super(props); useEffect(() => {
this.state = { apiResponse: "" }; callAPI();
} });
callAPI() {
const callAPI = () => {
fetch("http://localhost:9000/FETCHURL") fetch("http://localhost:9000/FETCHURL")
.then((res) => res.text()) .then((res) => res.text())
.then((res) => this.setState()({ apiresponse: res })) .then((res) => setState(res))
.catch((err) => err); .catch((err) => err);
} };
componentDidMount() {
this.callAPI();
}
render() {
return ( return (
<div class="container"> <div class="container">
<h1 class="d-flex justify-content-center m-2 p-4">Bank</h1> <h1 class="d-flex justify-content-center m-2 p-4">Bank</h1>
<h1></h1>
</div> </div>
); );
} };
}
export default Bank; export default Bank;

View File

@ -1,27 +1,25 @@
import React, { Component } from "react"; import React, { useState, useEffect } from "react";
import "./assets/Browse.css"; import "./assets/Browse.css";
class Browse extends Component { const Portfolio = (props) => {
constructor(props) { const [state, setState] = useState({});
super(props); useEffect(() => {
this.state = { apiResponse: "" }; callAPI();
} });
callAPI() {
const callAPI = () => {
fetch("http://localhost:9000/FETCHURL") fetch("http://localhost:9000/FETCHURL")
.then((res) => res.text()) .then((res) => res.text())
.then((res) => this.setState()({ apiresponse: res })) .then((res) => setState(res))
.catch((err) => err); .catch((err) => err);
} };
componentDidMount() {
this.callAPI();
}
render() {
return ( return (
<div class="container"> <div class="container">
<h1 class="d-flex justify-content-center m-2 p-4">Browse</h1> <h1 class="d-flex justify-content-center m-2 p-4">Browse</h1>
<h1></h1>
</div> </div>
); );
} };
}
export default Browse; export default Browse;

View File

@ -1,27 +1,25 @@
import React, { Component } from "react"; import React, { useState, useEffect } from "react";
import "./assets/Portfolio.css"; import "./assets/Portfolio.css";
class Portfolio extends Component {
constructor(props) { const Portfolio = (props) => {
super(props); const [state, setState] = useState({});
this.state = { apiResponse: "" }; useEffect(() => {
} callAPI();
callAPI() { });
const callAPI = () => {
fetch("http://localhost:9000/FETCHURL") fetch("http://localhost:9000/FETCHURL")
.then((res) => res.text()) .then((res) => res.text())
.then((res) => this.setState()({ apiresponse: res })) .then((res) => setState(res))
.catch((err) => err); .catch((err) => err);
} };
componentDidMount() {
this.callAPI();
}
render() {
return ( return (
<div class="container"> <div class="container">
<h1 class="d-flex justify-content-center m-2 p-4">Portfolio</h1> <h1 class="d-flex justify-content-center m-2 p-4">Portfolio</h1>
<h1>{this.state.apiResponse}</h1> <h1></h1>
</div> </div>
); );
} };
}
export default Portfolio; export default Portfolio;

View File

@ -1,26 +1,25 @@
import React, { Component } from "react"; import React, { useState, useEffect } from "react";
import "./assets/Profile.css"; import "./assets/Portfolio.css";
class Profile extends Component {
constructor(props) { const Portfolio = (props) => {
super(props); const [state, setState] = useState({});
this.state = { apiResponse: "" }; useEffect(() => {
} callAPI();
callAPI() { });
const callAPI = () => {
fetch("http://localhost:9000/FETCHURL") fetch("http://localhost:9000/FETCHURL")
.then((res) => res.text()) .then((res) => res.text())
.then((res) => this.setState()({ apiresponse: res })) .then((res) => setState(res))
.catch((err) => err); .catch((err) => err);
} };
componentDidMount() {
this.callAPI();
}
render() {
return ( return (
<div class="container"> <div class="container">
<h1 class="d-flex justify-content-center m-2 p-4">Profile</h1> <h1 class="d-flex justify-content-center m-2 p-4">Profile</h1>
<h1></h1>
</div> </div>
); );
} };
}
export default Profile; export default Portfolio;

BIN
website/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB