mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-04 20:40:19 -04:00
feat(frontend): began user auth
This commit is contained in:
parent
02d169e1ee
commit
422732c7df
|
@ -1,4 +1,4 @@
|
|||
DEBUG=True
|
||||
SECRET_KEY=wjtowjatiowjatioawtawt
|
||||
DEBUG=
|
||||
SECRET_KEY=
|
||||
DATABASE_USER=
|
||||
DATABASE_PASSWORD=
|
||||
DATABASE_PASSWORD=
|
||||
|
|
|
@ -1 +1 @@
|
|||
REACT_APP_API_ENDPOINT=https://api.reinvest.space/api
|
||||
REACT_APP_API_ENDPOINT=https://api.reinvest.space/api
|
||||
|
|
|
@ -1,70 +0,0 @@
|
|||
# Getting Started with Create React App
|
||||
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
||||
|
||||
## Available Scripts
|
||||
|
||||
In the project directory, you can run:
|
||||
|
||||
### `yarn start`
|
||||
|
||||
Runs the app in the development mode.\
|
||||
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
|
||||
|
||||
The page will reload if you make edits.\
|
||||
You will also see any lint errors in the console.
|
||||
|
||||
### `yarn test`
|
||||
|
||||
Launches the test runner in the interactive watch mode.\
|
||||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
|
||||
|
||||
### `yarn build`
|
||||
|
||||
Builds the app for production to the `build` folder.\
|
||||
It correctly bundles React in production mode and optimizes the build for the best performance.
|
||||
|
||||
The build is minified and the filenames include the hashes.\
|
||||
Your app is ready to be deployed!
|
||||
|
||||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
|
||||
|
||||
### `yarn eject`
|
||||
|
||||
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
|
||||
|
||||
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
|
||||
|
||||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
|
||||
|
||||
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
|
||||
|
||||
## Learn More
|
||||
|
||||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
||||
|
||||
To learn React, check out the [React documentation](https://reactjs.org/).
|
||||
|
||||
### Code Splitting
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
|
||||
|
||||
### Analyzing the Bundle Size
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
|
||||
|
||||
### Making a Progressive Web App
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
|
||||
|
||||
### Advanced Configuration
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
|
||||
|
||||
### Deployment
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
|
||||
|
||||
### `yarn build` fails to minify
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
|
BIN
frontend/public/favicon.ico
Normal file
BIN
frontend/public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
|
@ -9,6 +9,7 @@
|
|||
name="description"
|
||||
content="Web site created using create-react-app"
|
||||
/>
|
||||
<link rel="icon" href="favicon.png" />
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<title>ReInvest</title>
|
||||
</head>
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap");
|
||||
|
||||
* {
|
||||
font-family: "Source Sans Pro" !important;
|
||||
}
|
|
@ -4,46 +4,27 @@ import Portfolio from "./components/Portfolio";
|
|||
import Bank from "./components/Bank";
|
||||
import Profile from "./components/Profile";
|
||||
import Browse from "./components/Browse";
|
||||
import Login from "./components/Login";
|
||||
import Nav from "./components/Nav";
|
||||
import Signin from "./components/auth/Signin";
|
||||
import Signup from "./components/auth/Signup";
|
||||
|
||||
import "./App.css";
|
||||
import ProtectedRoute from "./components/ProtectedRoute";
|
||||
|
||||
function App() {
|
||||
const adminUser = {
|
||||
email: "admin@admin.com",
|
||||
password: "admin123",
|
||||
};
|
||||
|
||||
const [user, setUser] = useState({ name: "", email: "" });
|
||||
const [error, setError] = useState("");
|
||||
|
||||
const Login = (details) => {
|
||||
console.log(details);
|
||||
};
|
||||
|
||||
const Logout = () => {
|
||||
console.log("Logout");
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="App">
|
||||
<BrowserRouter>
|
||||
<Nav />
|
||||
<Switch>
|
||||
<Route component={Bank} path="/banking" />
|
||||
<Route component={Browse} path="/browse" />
|
||||
<Route component={Profile} path="/profile" />
|
||||
<Route component={Portfolio} path="/" />
|
||||
<Route component={Signup} path="/register" />
|
||||
<Route component={Signin} path="/login" />
|
||||
<ProtectedRoute component={Bank} path="/banking" />
|
||||
<ProtectedRoute component={Browse} path="/browse" />
|
||||
<ProtectedRoute component={Profile} path="/profile" />
|
||||
<ProtectedRoute exact component={Portfolio} path="/" />
|
||||
</Switch>
|
||||
</BrowserRouter>
|
||||
{/* {(user.email !== "") ? (
|
||||
<div className="welcome">
|
||||
<h2>Welcome, <span>{user.name}</span></h2>
|
||||
<button>Logout</button>
|
||||
</div>
|
||||
) : (
|
||||
<Login/>
|
||||
)} */}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -3,6 +3,8 @@ import "./assets/Portfolio.css";
|
|||
|
||||
const Bank = (props) => {
|
||||
const [state, setState] = useState({});
|
||||
const [bruh, setBruh] = useState(1);
|
||||
|
||||
useEffect(() => {
|
||||
callAPI();
|
||||
});
|
||||
|
@ -15,9 +17,9 @@ const Bank = (props) => {
|
|||
};
|
||||
|
||||
return (
|
||||
<div className="container">
|
||||
<h1 className="d-flex justify-content-center m-2 p-4">Bank</h1>
|
||||
<h1></h1>
|
||||
<div class="container">
|
||||
<h1 class="d-flex justify-content-center m-2 p-4">Bank</h1>
|
||||
<h1>{process.env.REACT_APP_API_ENDPOINT}</h1>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
import React from "react";
|
||||
|
||||
const Login = (props) => {
|
||||
return (
|
||||
<form>
|
||||
<div className="form-inner">
|
||||
<h2>Login</h2>
|
||||
<div className="form-group">
|
||||
<label htmlFor="name">Name:</label>
|
||||
<input type="text" name="name" id="name" />
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<label htmlFor="email">Email: </label>
|
||||
<input type="email" name="email" id="email" />
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<label htmlFor="password">Password:</label>
|
||||
<input type="password" name="password" id="password" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
);
|
||||
};
|
||||
|
||||
export default Login;
|
49
frontend/src/components/ProtectedRoute.js
Normal file
49
frontend/src/components/ProtectedRoute.js
Normal file
|
@ -0,0 +1,49 @@
|
|||
import React from "react";
|
||||
import { Route, Redirect } from "react-router-dom";
|
||||
|
||||
const ProtectedRoute = ({ component: Component, ...rest }) => {
|
||||
const isAuthenticated = async () => {
|
||||
try {
|
||||
const requestOptions = {
|
||||
method: "GET",
|
||||
headers: { Authorization: `JWT ${localStorage.getItem("token")}` },
|
||||
};
|
||||
const response = await fetch(
|
||||
`${process.env.REACT_APP_API_ENDPOINT}/profile`,
|
||||
requestOptions
|
||||
);
|
||||
|
||||
if (response.status === 200) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<Route
|
||||
{...rest}
|
||||
render={(props) => {
|
||||
if (isAuthenticated()) {
|
||||
return <Component {...props} {...rest} />;
|
||||
} else {
|
||||
return (
|
||||
<Redirect
|
||||
to={{
|
||||
pathname: "/",
|
||||
state: {
|
||||
from: props.location,
|
||||
},
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default ProtectedRoute;
|
0
frontend/src/components/assets/Register.css
Normal file
0
frontend/src/components/assets/Register.css
Normal file
65
frontend/src/components/auth/Signin.js
Normal file
65
frontend/src/components/auth/Signin.js
Normal file
|
@ -0,0 +1,65 @@
|
|||
import React, { useState } from "react";
|
||||
import { useHistory } from "react-router-dom";
|
||||
|
||||
const Signup = (props) => {
|
||||
let history = useHistory();
|
||||
|
||||
const [username, setUsername] = useState("");
|
||||
const [password, setPassword] = useState("");
|
||||
|
||||
const onSubmit = async (e) => {
|
||||
e.preventDefault();
|
||||
const requestOptions = {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({ username: username, password: password }),
|
||||
};
|
||||
try {
|
||||
const response = await fetch(
|
||||
`${process.env.REACT_APP_API_ENDPOINT}/token`,
|
||||
requestOptions
|
||||
);
|
||||
const data = await response.json();
|
||||
|
||||
localStorage.setItem("token", data.token);
|
||||
history.push("/");
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<form onSubmit={onSubmit}>
|
||||
<div className="form-inner">
|
||||
<h2>Login</h2>
|
||||
<div className="form-group">
|
||||
<label htmlFor="name">Username:</label>
|
||||
<input
|
||||
type="text"
|
||||
onChange={(e) => {
|
||||
setUsername(e.target.value);
|
||||
}}
|
||||
value={username}
|
||||
name="name"
|
||||
id="name"
|
||||
/>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<label htmlFor="password">Password:</label>
|
||||
<input
|
||||
type="password"
|
||||
onChange={(e) => {
|
||||
setPassword(e.target.value);
|
||||
}}
|
||||
value={password}
|
||||
name="password"
|
||||
id="password"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
);
|
||||
};
|
||||
|
||||
export default Signup;
|
127
frontend/src/components/auth/Signup.js
Normal file
127
frontend/src/components/auth/Signup.js
Normal file
|
@ -0,0 +1,127 @@
|
|||
import React, { useState } from "react";
|
||||
import { useHistory } from "react-router-dom";
|
||||
|
||||
const Signup = (props) => {
|
||||
let history = useHistory();
|
||||
|
||||
const [username, setUsername] = useState("");
|
||||
const [password, setPassword] = useState("");
|
||||
const [verifyPassword, setVerifyPassword] = useState("");
|
||||
const [email, setEmail] = useState("");
|
||||
const [firstName, setFirstName] = useState("");
|
||||
const [lastName, setLastName] = useState("");
|
||||
|
||||
const onSubmit = async (e) => {
|
||||
e.preventDefault();
|
||||
if (verifyPassword !== password) {
|
||||
alert("The passwords don't match!");
|
||||
return;
|
||||
}
|
||||
const requestOptions = {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({
|
||||
username: username,
|
||||
password: password,
|
||||
email: email,
|
||||
first_name: firstName,
|
||||
last_name: lastName,
|
||||
}),
|
||||
};
|
||||
try {
|
||||
const response = await fetch(
|
||||
`${process.env.REACT_APP_API_ENDPOINT}/profile/create`,
|
||||
requestOptions
|
||||
);
|
||||
const data = await response.json();
|
||||
console.log(data.username);
|
||||
|
||||
history.push("/login");
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<form onSubmit={onSubmit}>
|
||||
<div className="form-inner">
|
||||
<h2>Register</h2>
|
||||
<div className="form-group">
|
||||
<label htmlFor="name">Username:</label>
|
||||
<input
|
||||
type="text"
|
||||
onChange={(e) => {
|
||||
setUsername(e.target.value);
|
||||
}}
|
||||
value={username}
|
||||
name="name"
|
||||
id="name"
|
||||
/>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<label htmlFor="password">Password:</label>
|
||||
<input
|
||||
type="password"
|
||||
onChange={(e) => {
|
||||
setPassword(e.target.value);
|
||||
}}
|
||||
value={password}
|
||||
name="password"
|
||||
id="password"
|
||||
/>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<label htmlFor="password">Verify Password:</label>
|
||||
<input
|
||||
type="password"
|
||||
onChange={(e) => {
|
||||
setVerifyPassword(e.target.value);
|
||||
}}
|
||||
value={verifyPassword}
|
||||
name="password"
|
||||
id="password"
|
||||
/>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<label htmlFor="name">Email:</label>
|
||||
<input
|
||||
type="text"
|
||||
onChange={(e) => {
|
||||
setEmail(e.target.value);
|
||||
}}
|
||||
value={email}
|
||||
name="name"
|
||||
id="name"
|
||||
/>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<label htmlFor="name">First Name:</label>
|
||||
<input
|
||||
type="text"
|
||||
onChange={(e) => {
|
||||
setFirstName(e.target.value);
|
||||
}}
|
||||
value={firstName}
|
||||
name="name"
|
||||
id="name"
|
||||
/>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<label htmlFor="name">Last Name:</label>
|
||||
<input
|
||||
type="text"
|
||||
onChange={(e) => {
|
||||
setLastName(e.target.value);
|
||||
}}
|
||||
value={lastName}
|
||||
name="name"
|
||||
id="name"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
);
|
||||
};
|
||||
|
||||
export default Signup;
|
Loading…
Reference in New Issue
Block a user