Skip to content

kaplanh/react-context-api-example-1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

8 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

React Context API Example-1

πŸ‘‰ Click here to see on browser

react-context-api


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

How To Run This Project πŸš€


πŸ’» Install React πŸ‘‡

yarn create react-app .  or npx create-react-app .

πŸ’» Install Sass πŸ‘‡

yarn add sass  or npm i sass

πŸ”΄ Delete these files and delete the importsπŸ‘‡

- App.test.js
- reportWebVitals.js
- setupTests.js
- favicon.ico
- logo192.png
- logo512.png
- manifest.json
- robots.txt

πŸ’» Start the project πŸ‘‡

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/
  • Enjoy! πŸŽ‰


Project Skeleton

 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



At the end of the project, the following topics are to be covered;

  • 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)

Feedback and Collaboration

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 ✍