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

Dnyandeo: Component Based Design, 3 weeks #416

Open
7 of 12 tasks
Dnyandeo33 opened this issue Sep 29, 2022 · 3 comments
Open
7 of 12 tasks

Dnyandeo: Component Based Design, 3 weeks #416

Dnyandeo33 opened this issue Sep 29, 2022 · 3 comments

Comments

@Dnyandeo33
Copy link
Contributor

Dnyandeo33 commented Sep 29, 2022

Learning Objectives

Priorities: 🥚, 🐣, 🐥, 🐔 (click to learn more)

There is a lot to learn in this repository. If you can't master all the material
at once, that's expected! Anything you don't master now will always be waiting
for you to review when you need it. These 4 emoji's will help you prioritize
your study time and to measure your progress:

  • 🥚: Understanding this material is required, it covers the base skills you'll
    need for this module and the next. You do not need to finish all of them but
    should feel comfortable that you could with enough time.
  • 🐣: You have started all of these exercises and feel you could complete them
    all if you just had more time. It may not be easy for you but with effort you
    can make it through.
  • 🐥: You have studied the examples and started some exercises if you had time.
    You should have a big-picture understanding of these concepts/skills, but may
    not be confident completing the exercises.
  • 🐔: These concepts or skills are not necessary but are related to this module.
    If you are finished with 🥚, 🐣 and 🐥 you can use the 🐔 exercises to push
    yourself without getting distracted from the module's main objectives.

1. Rendering Static Pages

  • recreate an HTML/CSS web page using pure functions components and encapsulated styles

🥚 JSX : you can ...

  • Write elements with JSX syntax

2. Rendering Data

  • functional React components
  • render a static page with provided data
  • component props
  • splitting components with design in mind

🥚functional React components: you can ...

  • Create a React function component (both function definition and arrow function styles)

  • Import/export components between files

🥚 Render data: you can

  • Use interpolation ({}) to insert JavaScript expressions into JSX
  • Render a list using the .map method

🥚 Components and props : you can ...

  • create small, reusable components
  • how to pass props into React components

🥚 Create reusable components: you can ...

  • Nest components within other components
    • one folder with a main component
    • sub-components for your convenience (not part of public contract)

3. Stateful Components

  • VDOM
  • what is a hook
  • useState
  • useEffect (any side-effect)
  • component lifecycle

🥚VDOM : you ....

  • can differenciate the real dom from the virtual dom
  • know what reconciliation process is ..

🥚 Hook

  • simple, just enough for the flavor
  • the react docs "rules of hooks"

🥚 use-state

🥚 use-effect

🥚 component lifecycle

4. Events

  • create components that manage internal state and emit custom events
  • handling events
  • build reusable components that take functions as arguments
  • child components communicating with parent components
  • passing functions as props

5. Component Structure

  • splitting components with logic in mind
    • why create dumb components when hooks can be anywhere?
  • re-render cycles (all children)
    • why putting state at lower levels is efficient
    • why not to use everything in global state

6. Consuming APIs

  • fetch and use API data in components
  • async useEffect callbacks

7. Frontend Routing

  • react router

8. Global State

  • being careful about what you put in useContext
    • only move data to context when it's necessary
  • store and manage global app state shared between components
  • useContext
    • shared state, not the same as useState
  • other state management systems/strategies exist
@Dnyandeo33 Dnyandeo33 added this to the 10. Component Based Design milestone Sep 29, 2022
@Dnyandeo33 Dnyandeo33 self-assigned this Sep 29, 2022
@Dnyandeo33
Copy link
Contributor Author

Dnyandeo33 commented Sep 29, 2022

Week 1

I Need Help With:

I didn't understand class components
Why do we use useEffect hook? I didn't understand well.

What went well?

  • Creating and rendering data.
  • Understood basics and react concepts like Fragment, props, useState .
  • Understood Functional components.
  • Tried fetching data and creating a user interface using Tailwind CSS framework.
  • Created a Navigation bar using react react-router-dom.
  • Understood well how to use BrowserRouter, Route, Routes, and Link.

Hero Section

Screenshot 2022-09-29 at 19 37 33

Fetch Data

Screenshot 2022-09-29 at 19 44 00

Product page

Screenshot 2022-09-29 at 19 59 38

Sunday Prep Work

Continue studying...

@danielhalasz
Copy link
Contributor

I didn't understand class components
Why do we use useEffect hook? I didn't understand well.

we will not be using class components, that is the older way of writing React.
useEffect we will cover in the next class once more. here is an explanation with examples:
https://reactjs.org/docs/hooks-effect.html

@danielhalasz
Copy link
Contributor

  • Tried fetching data and creating a user interface using Tailwind CSS framework.
  • Created a Navigation bar using react react-router-dom.

excellent work on this, it is great to see that you took the initiative to cover new topics and you created a nice site!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants