-
Prop Drilling
-
React Hooks
-
Context API
-
Context Providers
-
Shared State
-
Interface vs Implementation Functions !!
-
Simple Auth / Login App
-
Demonstrates Context Providers and useContext
-
accepts any username / email address & password
-
creates a dummy userId for the newly logged in user
-
sets
auth
state if logged in and shows User Info if auth=true -
uses
CounterProvider
component to wrap<Info>
and<Login
> inAppjs
-
uses
AuthProvider
component to wrap<App>
inindex.js
-
Do not share "interface" functions:
setCounter(), setUser()
. -
Only share "implementation" functions:
increment(), clear(), login()
-
Can share state primitives, just don't share their
setState
functions -
Its generally "OK" to share more complex state objects eg
user
-
Sharing a function is better:
isloggedIn(), getUserName()
-
Avoid deeply nested State. eg: No
state
object -
Keep your state as flat as possible
-
Notifications
You must be signed in to change notification settings - Fork 20
gary-jipp/demo-react-context
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published