React Advanced - Class 3

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 61 :- React Advanced - Class 3

In "React Advanced - Class 3," we'll continue exploring more advanced React concepts and build on what we learned in the previous classes. We'll cover topics such as React context, error boundaries, and advanced hooks like useReducer and useRef.

Step 1: React Context

React Context provides a way to pass data through the component tree without having to pass props down manually at every level. It allows you to create a global state accessible to all components within a specific context.

Creating a Context:

jsxCopy code

// ThemeContext.js import { createContext, useState } from 'react'; const ThemeContext = createContext(); export const ThemeProvider = ({ children }) => {  const [theme, setTheme] = useState('light');  return (    <ThemeContext.Provider value={{ theme, setTheme }}>      {children}    </ThemeContext.Provider>  ); }; export default ThemeContext;

In this example, we created a ThemeContext using createContext and provided a ThemeProvider component that wraps its children with the ThemeContext.Provider. It holds the theme state and the setTheme function as the value of the context.

Using the Context:

jsxCopy code

// App.js import React from 'react'; import { BrowserRouter as Router, Route, Link } from 'react-router-dom'; import { ThemeProvider } from './ThemeContext'; import Home from './Home'; import About from './About'; import Products from './Products'; function App() {  return (    <Router>      <ThemeProvider>        <div>          <h1>Hello, React!</h1>          <nav>            <ul>              <li>                <Link to="/">Home</Link>              </li>              <li>                <Link to="/about">About</Link>              </li>              <li>                <Link to="/products">Products</Link>              </li>            </ul>          </nav>          <Route exact path="/" component={Home} />          <Route path="/about" component={About} />          <Route path="/products" component={Products} />        </div>      </ThemeProvider>    </Router>  ); } export default App;

In this example, we wrapped the entire application with the ThemeProvider to make the theme state and setTheme function accessible to all child components.

Step 2: Error Boundaries

Error boundaries are components that catch JavaScript errors during rendering, in lifecycle methods, and in constructors of the whole tree below them. They help prevent the entire application from crashing due to errors in specific components.

jsxCopy code

// ErrorBoundary.js import React, { Component } from 'react'; class ErrorBoundary extends Component {  state = {    hasError: false,  };  static getDerivedStateFromError(error) {    return { hasError: true };  }  componentDidCatch(error, errorInfo) {    // You can log the error to an error reporting service    console.error('Error:', error);    console.error('Error Info:', errorInfo);  }  render() {    if (this.state.hasError) {      return <div>Something went wrong!</div>;    }    return this.props.children;  } } export default ErrorBoundary;

Using the Error Boundary:

Wrap the components you want to be covered by the error boundary using the ErrorBoundary component.

jsxCopy code

// App.js import React from 'react'; import { BrowserRouter as Router, Route, Link } from 'react-router-dom'; import { ThemeProvider } from './ThemeContext'; import Home from './Home'; import About from './About'; import Products from './Products'; import ErrorBoundary from './ErrorBoundary'; function App() {  return (    <Router>      <ThemeProvider>        <div>          <h1>Hello, React!</h1>          <nav>            <ul>              <li>                <Link to="/">Home</Link>              </li>              <li>                <Link to="/about">About</Link>              </li>              <li>                <Link to="/products">Products</Link>              </li>            </ul>          </nav>          <ErrorBoundary>            <Route exact path="/" component={Home} />            <Route path="/about" component={About} />            <Route path="/products" component={Products} />          </ErrorBoundary>        </div>      </ThemeProvider>    </Router>  ); } export default App;

In this example, we wrapped the Route components with the ErrorBoundary to catch any errors that may occur during rendering.

Step 3: useReducer Hook

The useReducer hook is an alternative to useState that allows you to handle more complex state logic. It uses a reducer function to update the state based on dispatched actions.

jsxCopy code

import React, { useReducer } from 'react'; const initialState = { count: 0 }; const reducer = (state, action) => {  switch (action.type) {    case 'INCREMENT':      return { count: state.count + 1 };    case 'DECREMENT':      return { count: state.count - 1 };    default:      return state;  } }; const Counter = () => {  const [state, dispatch] = useReducer(reducer, initialState);  return (    <div>      <h2>Count: {state.count}</h2>      <button onClick={() => dispatch({ type: 'INCREMENT' })}>Increment</button>      <button onClick={() => dispatch({ type: 'DECREMENT' })}>Decrement</button>    </div>  ); }; export default Counter;

In this example, we use useReducer to manage the state of the Counter component. The reducer function handles different actions (INCREMENT and DECREMENT) to update the state.

Step 4: useRef Hook

The useRef hook allows you to create a mutable reference that persists across renders. It is useful for accessing DOM elements, managing previous state values, and avoiding unnecessary re-renders.

jsxCopy code

import React, { useRef } from 'react'; const InputWithFocus = () => {  const inputRef = useRef(null);  const handleClick = () => {    inputRef.current.focus();  };  return (    <div>      <input type="text" ref={inputRef} />      <button onClick={handleClick}>Focus Input</button>    </div>  ); }; export default InputWithFocus;

In this example, we use useRef to create a reference to the input element. When the button is clicked, the handleClick function sets the focus on the input element using the focus() method.

Congratulations! You've completed the third class of React Advanced. You've learned about React context, error boundaries, using the useReducer and useRef hooks.

React offers a vast array of tools and techniques to build powerful and performant applications. As you continue your React journey, you can explore more advanced topics such as server-side rendering (SSR), integrating with state management libraries like Redux, using custom hooks, and exploring more complex use cases of context.

Keep practicing, building more complex applications, and exploring the vast possibilities of React! Happy coding!

15. React Advance

23 Comments

@familyvimes@gmail.com
[email protected] Jul 22, 2024 at 10:33 PM

Kindly check the lecture number 6. Lifecycle of a Change in 1. Git and Github The above lecture is not related to the course please update it ASAP Thank you

@harshp.cs.22
harshp.cs.22 Jul 10, 2024 at 3:37 PM

From where can I download the files which love babbar says he has uploaded on dashboard ??

@familyvimes@gmail.com
[email protected] Jul 23, 2024 at 12:05 PM

I have attached the link https://github.com/lakshayk12/ANN_optimization_BTP

@zubaid.zu
zubaid.zu May 9, 2024 at 2:42 AM

Paid for the course but it still locked, can solve this problem please, when you take the payment the couse should be unlocked, evey time i have to message for any purchase

@admin79
admin79 May 10, 2024 at 10:29 PM

Now your Paypal payment is accepted and your course is activated successfully. Please leave your valuable feedback.

@anandwising
anandwising Mar 12, 2024 at 4:05 PM

Why i am being asked for payment if i am already enrolled in the course

@admin79
admin79 Mar 12, 2024 at 5:22 PM

Dear anand, your payment is now updated check your course, apologize for several delays. Please leave your valuable feedback.

@anandwising
anandwising Mar 12, 2024 at 8:33 PM

thanks its working now

@Megha
Megha Feb 22, 2024 at 11:02 PM

hello ,I have a doubt

@akshaykumrawat99
akshaykumrawat99 Feb 22, 2024 at 10:56 PM

hello i have a doubt

@rajnireddyatr
rajnireddyatr Feb 3, 2024 at 12:08 AM

hi

@talha.developments
talha.developments Jan 18, 2024 at 9:34 PM

I'm paying through my Card, but it giving an error. why ? how we can purchase a course in Pakistan. Paypal is banned here

@aryangrg020
aryangrg020 Jan 17, 2024 at 10:25 PM

can we download the videos

@Krishanpal
Krishanpal Jan 14, 2024 at 8:12 PM

i done my payment for mern stack development love babbar but cant acces to course kindly give me access

@sciaku1
sciaku1 Jan 17, 2024 at 12:28 PM

Dear Krishnapal your payment is already accepted go and check back.

@shivanshgautam220
shivanshgautam220 Jan 10, 2024 at 4:57 PM

Why i am being asked for payment if i am already enrolled in the course

@sciaku1
sciaku1 Jan 11, 2024 at 3:18 PM

Dear Shivansh, if you already done your payment then contact us on our official Email id [email protected] or reply here.

@p8354046
p8354046 Jan 7, 2024 at 3:47 PM

Why i am being asked for payment if i am already enrolled in the course

@sciaku1
sciaku1 Jan 11, 2024 at 3:19 PM

Dear p8354046, if you already done your payment then contact us on our official Email id [email protected] or reply here.

@myidontablet
myidontablet Dec 30, 2023 at 4:28 PM

Why i am being asked for payment if i am already enrolled in the course

@sciaku1
sciaku1 Jan 6, 2024 at 1:42 AM

Dear, Don't worry now your problem is solved check your id.

@duabhi911
duabhi911 Nov 16, 2023 at 2:03 AM

Why i am being asked for payment if i am already enrolled in the course

@harshp.cs.22
harshp.cs.22 Dec 23, 2023 at 11:40 AM

Yes bro

@myidontablet
myidontablet Dec 30, 2023 at 4:28 PM

I'm facing same issue

@sciaku1
sciaku1 Jan 6, 2024 at 1:43 AM

Dear, Don't worry now your problem is solved check your id.

@lenientharsh
lenientharsh Oct 31, 2023 at 10:56 AM

i want debit card option

@lenientharsh
lenientharsh Oct 31, 2023 at 10:51 AM

how can i assure that this is not scam?

@jainarin416
jainarin416 Nov 2, 2023 at 12:37 AM

i have same doubt is this website real or a fraud

@sciaku1
sciaku1 Jan 6, 2024 at 1:45 AM

No its not any fraud. its genuine if you need any proof please contact us via email.

@sciaku1
sciaku1 Jan 6, 2024 at 1:44 AM

No it's not any scam, its genuine if you need any proof please contact us via email.

@hydrarishabh9
hydrarishabh9 Oct 21, 2023 at 11:47 PM

how to do payment ?

@sciaku1
sciaku1 Oct 30, 2023 at 5:34 PM

Click on Watch now button then click next video then payment option is showing

@minhajakram440
minhajakram440 Oct 18, 2023 at 11:18 PM

i am unable to access the video even i have already completed my payment .

@aeromusgyan
aeromusgyan Oct 21, 2023 at 1:17 AM

Your problem is solved

@saklyi70
saklyi70 Sep 30, 2023 at 11:02 AM

plz add codes lecture wise ! it wold be great and helpful also

@sciaku1
sciaku1 Jan 6, 2024 at 1:47 AM

now we have added starter package in lecture 2nd, go now and download it.

@thomasroka31
thomasroka31 Sep 29, 2023 at 4:05 PM

how to view this one

@jitendrakrverma02
jitendrakrverma02 Sep 23, 2023 at 3:57 PM

Why video not play

@sciaku1
sciaku1 Jan 6, 2024 at 1:47 AM

Now it's working.

@9035praveen
9035praveen Sep 2, 2023 at 12:12 PM

Thank you for the access of the videos. It would be greatful if I could no the way to download the videos

@mohammedunaismdr
mohammedunaismdr Sep 25, 2023 at 11:54 AM

Use idm to download

@mishraprajjwal295
mishraprajjwal295 Oct 13, 2023 at 11:07 PM

ok

@rahulkumarbaraswal30
rahulkumarbaraswal30 Nov 4, 2023 at 1:32 PM

Hello bro can you share course with me?

@bicky
bicky Sep 1, 2023 at 5:42 PM

hello everyone

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support