Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to use new firebase and React router version (version 6) #31

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .env.local.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
REACT_APP_FIREBASE_API_KEY=your_api_key
REACT_APP_FIREBASE_AUTH_DOMAIN=your_auth_domain
REACT_APP_FIREBASE_DATABASE_URL=your_database_url
REACT_APP_FIREBASE_PROJECT_ID=your_project_id
REACT_APP_FIREBASE_STORAGE_BUCKET=your_storage_bucket
REACT_APP_FIREBASE_MESSAGING_SENDER_ID=your_messaging_sender_id
REACT_APP_FIREBASE_APP_ID=your_app_id
20,073 changes: 19,423 additions & 650 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"bootstrap": "^4.5.2",
"firebase": "^7.20.0",
"firebase": "^9.15.0",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-router": "^6.6.0",
"react-router-dom": "^6.6.0",
"react-scripts": "3.4.3"
},
"scripts": {
Expand Down
62 changes: 38 additions & 24 deletions src/components/App.js
Original file line number Diff line number Diff line change
@@ -1,35 +1,49 @@
import React from "react"
import Signup from "./Signup"
import { Container } from "react-bootstrap"
import { AuthProvider } from "../contexts/AuthContext"
import { BrowserRouter as Router, Switch, Route } from "react-router-dom"
import Dashboard from "./Dashboard"
import Login from "./Login"
import PrivateRoute from "./PrivateRoute"
import ForgotPassword from "./ForgotPassword"
import UpdateProfile from "./UpdateProfile"
import React from "react";
import { Container } from "react-bootstrap";
import { AuthProvider } from "../contexts/AuthContext";
import { BrowserRouter, Routes, Route } from "react-router-dom";
import Signup from "./Signup";
import Dashboard from "./Dashboard";
import Login from "./Login";
import PrivateRoute from "./PrivateRoute";
import ForgotPassword from "./ForgotPassword";
import UpdateProfile from "./UpdateProfile";

function App() {
return (
<Container
className="d-flex align-items-center justify-content-center"
className="d-flex align-items-center justif-content-center"
style={{ minHeight: "100vh" }}
>
<div className="w-100" style={{ maxWidth: "400px" }}>
<Router>
<AuthProvider>
<Switch>
<PrivateRoute exact path="/" component={Dashboard} />
<PrivateRoute path="/update-profile" component={UpdateProfile} />
<Route path="/signup" component={Signup} />
<Route path="/login" component={Login} />
<Route path="/forgot-password" component={ForgotPassword} />
</Switch>
</AuthProvider>
</Router>
<AuthProvider>
<BrowserRouter>
<Routes>
<Route
path="/"
element={
<PrivateRoute>
<Dashboard />
</PrivateRoute>
}
/>
<Route
path="/update-profile"
element={
<PrivateRoute>
<UpdateProfile />
</PrivateRoute>
}
/>
<Route path="/signup" element={<Signup />} />
<Route path="/login" element={<Login />} />
<Route path="/forgot-password" element={<ForgotPassword />} />
</Routes>
</BrowserRouter>
</AuthProvider>
</div>
</Container>
)
);
}

export default App
export default App;
28 changes: 13 additions & 15 deletions src/components/Dashboard.js
Original file line number Diff line number Diff line change
@@ -1,31 +1,29 @@
import React, { useState } from "react"
import { Card, Button, Alert } from "react-bootstrap"
import { useAuth } from "../contexts/AuthContext"
import { Link, useHistory } from "react-router-dom"
import React, { useState } from "react";
import { Card, Button, Alert } from "react-bootstrap";
import { useAuth } from "../contexts/AuthContext";
import { Link, useNavigate } from "react-router-dom";

export default function Dashboard() {
const [error, setError] = useState("")
const { currentUser, logout } = useAuth()
const history = useHistory()

const { currentUser, logout } = useAuth();
const [error, setError] = useState("");
const navigate = useNavigate();
async function handleLogout() {
setError("")
setError("");

try {
await logout()
history.push("/login")
await logout();
navigate("/login");
} catch {
setError("Failed to log out")
setError("Failed to logout");
}
}

return (
<>
<Card>
<Card.Body>
<h2 className="text-center mb-4">Profile</h2>
{error && <Alert variant="danger">{error}</Alert>}
<strong>Email:</strong> {currentUser.email}
<strong>Email: </strong> {currentUser?.email}
<Link to="/update-profile" className="btn btn-primary w-100 mt-3">
Update Profile
</Link>
Expand All @@ -37,5 +35,5 @@ export default function Dashboard() {
</Button>
</div>
</>
)
);
}
45 changes: 25 additions & 20 deletions src/components/ForgotPassword.js
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
import React, { useRef, useState } from "react"
import { Form, Button, Card, Alert } from "react-bootstrap"
import { useAuth } from "../contexts/AuthContext"
import { Link } from "react-router-dom"
import React, { useRef, useState } from "react";
import { Form, Button, Card, Alert } from "react-bootstrap";
import { useAuth } from "../contexts/AuthContext";
import { Link } from "react-router-dom";

export default function ForgotPassword() {
const emailRef = useRef()
const { resetPassword } = useAuth()
const [error, setError] = useState("")
const [message, setMessage] = useState("")
const [loading, setLoading] = useState(false)
const emailRef = useRef();
const { resetPassword } = useAuth();
const [error, setError] = useState("");
const [message, setMessage] = useState("");
const [loading, setLoading] = useState(false);

async function handleSubmit(e) {
e.preventDefault()
e.preventDefault();

try {
setMessage("")
setError("")
setLoading(true)
await resetPassword(emailRef.current.value)
setMessage("Check your inbox for further instructions")
setMessage("");
setError("");
setLoading(true);
await resetPassword(emailRef.current.value);
setMessage("Check your inbox for further instructions");
} catch {
setError("Failed to reset password")
setError("Failed to reset password");
}

setLoading(false)
setLoading(false);
}

return (
Expand All @@ -36,7 +36,12 @@ export default function ForgotPassword() {
<Form onSubmit={handleSubmit}>
<Form.Group id="email">
<Form.Label>Email</Form.Label>
<Form.Control type="email" ref={emailRef} required />
<Form.Control
type="email"
ref={emailRef}
required
placeholder="Enter your Email"
/>
</Form.Group>
<Button disabled={loading} className="w-100" type="submit">
Reset Password
Expand All @@ -48,8 +53,8 @@ export default function ForgotPassword() {
</Card.Body>
</Card>
<div className="w-100 text-center mt-2">
Need an account? <Link to="/signup">Sign Up</Link>
Need an account? <Link to="/signup">Register</Link>
</div>
</>
)
);
}
60 changes: 34 additions & 26 deletions src/components/Login.js
Original file line number Diff line number Diff line change
@@ -1,48 +1,56 @@
import React, { useRef, useState } from "react"
import { Form, Button, Card, Alert } from "react-bootstrap"
import { useAuth } from "../contexts/AuthContext"
import { Link, useHistory } from "react-router-dom"
import React, { useRef, useState } from "react";
import { Form, Button, Card, Alert } from "react-bootstrap";
import { useAuth } from "../contexts/AuthContext";
import { Link, useNavigate } from "react-router-dom";

export default function Login() {
const emailRef = useRef()
const passwordRef = useRef()
const { login } = useAuth()
const [error, setError] = useState("")
const [loading, setLoading] = useState(false)
const history = useHistory()
const emailRef = useRef();
const passwordRef = useRef();
const { login } = useAuth();
const [error, setError] = useState("");
const [loading, setLoading] = useState(false);
const navigate = useNavigate();

async function handleSubmit(e) {
e.preventDefault()

e.preventDefault();
try {
setError("")
setLoading(true)
await login(emailRef.current.value, passwordRef.current.value)
history.push("/")
setError("");
setLoading(true);
await login(emailRef.current.value, passwordRef.current.value);
navigate("/");
} catch {
setError("Failed to log in")
setError("Failed to Login");
}

setLoading(false)
setLoading(false);
}

return (
<>
<Card>
<Card.Body>
<h2 className="text-center mb-4">Log In</h2>
<h2 className="text-center mb-4">Login</h2>
{error && <Alert variant="danger">{error}</Alert>}
<Form onSubmit={handleSubmit}>
<Form.Group id="email">
<Form.Label>Email</Form.Label>
<Form.Control type="email" ref={emailRef} required />
<Form.Control
type="email"
ref={emailRef}
placeholder="Enter your Email"
required
/>
</Form.Group>
<Form.Group id="password">
<Form.Label>Password</Form.Label>
<Form.Control type="password" ref={passwordRef} required />
<Form.Control
type="password"
ref={passwordRef}
placeholder="Enter your Password"
required
/>
</Form.Group>
<br />
<Button disabled={loading} className="w-100" type="submit">
Log In
Login
</Button>
</Form>
<div className="w-100 text-center mt-3">
Expand All @@ -51,8 +59,8 @@ export default function Login() {
</Card.Body>
</Card>
<div className="w-100 text-center mt-2">
Need an account? <Link to="/signup">Sign Up</Link>
Not yet Registered? <Link to="/signup">Register</Link>
</div>
</>
)
);
}
21 changes: 8 additions & 13 deletions src/components/PrivateRoute.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
import React from "react"
import { Route, Redirect } from "react-router-dom"
import { useAuth } from "../contexts/AuthContext"
import React from "react";
import { Navigate } from "react-router-dom";
import { useAuth } from "../contexts/AuthContext";

export default function PrivateRoute({ component: Component, ...rest }) {
const { currentUser } = useAuth()
function PrivateRoute({ children }) {
const { currentUser } = useAuth();

return (
<Route
{...rest}
render={props => {
return currentUser ? <Component {...props} /> : <Redirect to="/login" />
}}
></Route>
)
return currentUser ? children : <Navigate to="/login" />;
}

export default PrivateRoute;
Loading