Last active
August 15, 2019 08:34
-
-
Save AkatQuas/6039c005bccc6917726fda0324cf505a to your computer and use it in GitHub Desktop.
A brief example for using `useContext`, `useReducer` to create global state without libraries.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { createContext, useReducer, useContext, Fragment } from 'react'; | |
import './App.css'; | |
const authReducer = (state, action) => { | |
switch (action.type) { | |
case 'increment': | |
return { | |
...state, | |
age: state.age + 1 | |
}; | |
case 'login': | |
const { name } = action; | |
return { | |
...state, | |
name, | |
}; | |
default: | |
return state; | |
} | |
} | |
const AuthContext = createContext(null); | |
const AuthProvider = ({ | |
children | |
}) => { | |
const [state, dispatch] = useReducer(authReducer, { | |
name: 'yang', | |
age: 11, | |
}); | |
return ( | |
<AuthContext.Provider value={{ state, dispatch }} > | |
{children} | |
</AuthContext.Provider> | |
) | |
} | |
const NameLabel = (props) => { | |
const { state, dispatch } = useContext(AuthContext); | |
return ( | |
<Fragment> | |
<p>{state.name} @ {state.age}</p> | |
<p>{props.label}</p> | |
<button onClick={() => dispatch({ type: 'increment' })}> increment </button> | |
<button onClick={() => dispatch({ type: 'login', name: Math.random().toString(16) })}> chang name </button> | |
</Fragment> | |
) | |
} | |
function App() { | |
return ( | |
<AuthProvider> | |
<NameLabel label="example" /> | |
</AuthProvider> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment