π Click here to see on browser
What's used in this app ? | How use third party libraries | Author |
---|---|---|
useContext()/Context APi | npm i / yarn add react-router-dom | Take a look at my portfolio |
React-Router-Dom | npm i / yarn add react-router-dom | Visit me on Linkedin |
useEfect() Hook componentDidUpdate() | ||
useState() Hook | ||
fetch API | npm i/yarn add fetch | |
react-events | ||
Bootstrap | npm i / yarn add bootstrap | |
React-icons | npm i / yarn add react-icons | |
lifting state up | ||
props-drilling | ||
Semantic-Commits | ||
Deploy with Vercel | ||
API reqres |
yarn create react-app . or npx create-react-app .
yarn add sass or npm i sass
- App.test.js
- reportWebVitals.js
- setupTests.js
- favicon.ico
- logo192.png
- logo512.png
- manifest.json
- robots.txt
yarn start or npm start
OR
-
Clone the Repo
git clone
-
Install NPM packages
npm install or yarn
-
Run the project
npm start or yarn start
-
Open the project on your browser
http://localhost:3000/
React-Context-Api-example(folder)
|
|----public (folder)
β βββ index.html
|----src (folder)
| |--- components (folder)
β β βββ Courses.jsx
β β βββ Footer.jsx
β β βββ Navs.jsx
β β
| |--- img (folder)
β β
β |--- pages (folder)
| | βββ About.jsx
| | βββ Home.jsx
| | βββ LogΔ±n.jsx
| | βββ People.jsx
| | βββ PersonDetaΔ±l.jsx
| | βββ PrivateRouter.jsx
| |
| |--- context (folder)
β β βββ LoginContext.jsx
| |
| |
β β--- App.js
β |--- index.js
β |--- index.css
β
β
|ββ .gitignore
|ββ package-lock.json
βββ package.json
|ββ README.md
|ββ yarn.lock
- useContext()/ Context Api
//! 1.Adim
//context/LoginContext.jsx
import { createContext } from "react";
//! Login Context'i olusuturuldu
export const LoginContext = createContext();
//! 2.adim
//App.jsx
import Footer from "./components/Footer";
import Navs from "./components/Navs";
import About from "./pages/About";
import Home from "./pages/Home";
import People from "./pages/People";
import { BrowserRouter, Routes, Route, Navigate } from "react-router-dom";
import PersonDetail from "./pages/PersonDetail";
import Login from "./pages/Login";
import { LoginContext } from "./context/LoginContext";
import { useState } from "react";
import PrivateRouter from "./pages/PrivateRouter";
function App() {
// //! Local State
const [user, setUser] = useState({ email: "", password: "" });
console.log(user);
return (
<LoginContext.Provider value={{ user, setUser }}>
<BrowserRouter>
<Navs />
<Routes>
<Route index element={<Home />} />
<Route path="about" element={<About />} />
<Route path="login" element={<Login />} />
<Route path="people" element={<PrivateRouter />}>
<Route path="" element={<People />} />
<Route path=":id" element={<PersonDetail />} />
</Route>
<Route path="*" element={<Navigate to="/" />} />
</Routes>
<Footer />
</BrowserRouter>
</LoginContext.Provider>
);
}
export default App;
//! 3.adim
import { useContext } from "react";
import { Outlet, Navigate } from "react-router-dom";
import { LoginContext } from "../context/LoginContext";
const PrivateRouter = () => {
const { user } = useContext(LoginContext);
return user.email && user.password ? <Outlet /> : <Navigate to="/login" />;
};
export default PrivateRouter;
- Private Router
//PrivateRouter.jsx
import { useContext } from "react";
import { Outlet, Navigate } from "react-router-dom";
import { LoginContext } from "../context/LoginContext";
const PrivateRouter = () => {
const { user } = useContext(LoginContext);
return user.email && user.password ? <Outlet /> : <Navigate to="/login" />;
};
export default PrivateRouter;
-
Login& Logout
import { useContext } from "react"; import Container from "react-bootstrap/Container"; import Button from "react-bootstrap/Button"; import Form from "react-bootstrap/Form"; import { LoginContext } from "../context/LoginContext"; import { useNavigate } from "react-router-dom"; const Login = () => { // //! Local State // const [user, setUser] = useState({ email: "", password: "" }) //? Consuming of login context const { user, setUser } = useContext(LoginContext); const navigate = useNavigate(); const handleSubmit = (e) => { e.preventDefault(); navigate(-1); // setUser({ email: "", password: "" }) }; return ( <Container> <h1 className="text-center mt-4">LOGIN PAGE</h1> <Form onSubmit={(e) => handleSubmit(e)}> <Form.Group className="mb-3" controlId="username"> <Form.Label>Email</Form.Label> <Form.Control type="email" placeholder="Enter your email" name="email" value={user?.email} required onChange={(e) => setUser({ ...user, email: e.target.value }) } /> </Form.Group> <Form.Group className="mb-3" controlId="password"> <Form.Label>Password</Form.Label> <Form.Control type="password" placeholder="Enter your password" name="password" value={user?.password} required onChange={(e) => setUser({ ...user, password: e.target.value }) } /> </Form.Group> <Container className="text-center"> <Button variant="danger" type="submit"> Submit </Button> </Container> </Form> </Container> ); }; export default Login;
-
Semantic Commit Messages See how a minor change to your commit message style can make you a better programmer.
Format: ():
is optional
- Example
feat: add hat wobble ^--^ ^------------^ | | | +-> Summary in present tense. | +-------> Type: chore, docs, feat, fix, refactor, style, or test.
-
More Examples:
feat
: (new feature for the user, not a new feature for build script)fix
: (bug fix for the user, not a fix to a build script)docs
: (changes to the documentation)style
: (formatting, missing semi colons, etc; no production code change)refactor
: (refactoring production code, eg. renaming a variable)test
: (adding missing tests, refactoring tests; no production code change)chore
: (updating grunt tasks etc; no production code change)
I value your feedback and suggestions. If you have any comments, questions, or ideas for improvement regarding this project or any of my other projects, please don't hesitate to reach out. I'm always open to collaboration and welcome the opportunity to work on exciting projects together. Thank you for visiting my project. I hope you have a wonderful experience exploring it, and I look forward to connecting with you soon!
β Happy Coding β