Idea-[context] StateRef provider instead of state and dispatch in separate hooks
还没有人认领这个 Issue。
- 主要语言
- JavaScript
- 星标
- 11.8k
- 派生
- 7.9k
- 平均合并
- 1 天 11 小时
- 30 天内合并 PR
- 11
描述
As per docs
const [state, dispatch] = useReducer(reducer,initData);
return (
<StateContext.Provider value={state}>
<DispatchContext.Provider value={dispatch}>
{children}
</DispatchContext.Provider>
</StateContext.Provider>)
as we separated state and dispatch now we can be sure that the component using only useDispatch doesn't rerender with state update.
additional boilerplate
additional boilerplate in case when a component use both state and dispatch
const state=useState()
const dispatch=useDispatch()
what if a component have to rely on the state only while handling events
const handleClick=()=>{
if(state.open){
...
}
else{
....
}
}
suggesting StateRef provider
const [state, dispatch] = useReducer(reducer,initData);
const stateRef = React.useRef(state);
stateRef.current=state // while rendering or preferably in effect
return (
<StateContext.Provider value={state}>
<StateRefContext.Provider value={stateRef}>
<DispatchContext.Provider value={dispatch}>
{children}
</DispatchContext.Provider>
</StateRefContext.Provider>
</StateContext.Provider>)
export function useState() {
const state= useContext(StateContext);
const dispatch= useContext(DispatchContext);
return {state,dispatch}
}
export function useStateRef() {
const stateRef= useContext(StateRefContext);
const dispatch= useContext(DispatchContext);
const {stateRef,dispatch}
}
or with memoization
const [state, dispatch] = useReducer(reducer,initData);
const value={state,dispatch}
const stateRef = React.useRef(state);
stateRef.current=state // while rendering or preferably in effect
const refValue=useMemo(()=>({stateRef,dispatch}),[])
return (
<StateContext.Provider value={value}>
<StateRefContext.Provider value={refValue}>
/*<DispatchContext.Provider value={dispatch}*/
{children}
</StateRefContext.Provider>
</StateContext.Provider>)
we can use either one of the hooks based on how a component depended on the state
const {state,dispatch}=useState() //for rendering
// or
const {stateRef,dispatch}=useStateRef() //for referring state
// based on how a component depended on the state
useStateProvider can be used when a component uses the state and Having dispatch provided with it doesn't do any harm.
useStateRefProvider can be used when a component has to refer to the state in only event handlers. Instead of wrapping a component or prop drilling an event handler corresponding to where a component has been used.
Thus increasing the reusability of the components
If it is wrong or an absolute anti-pattern please correct me, it will help in deepening my understanding
It is my first time writing in github, It`s unintentional if I failed to comply with your contributing guidelines
thank you
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
未指定文件或测试。首先查看已记录的 useReducer、useContext、useState 和 useDispatch 使用模式,然后确定 StateRef provider 和 useStateRef hook 是否适合该项目;要视为完成,需要有达成一致的设计、文档化的用法,以及任何相应的示例或测试。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- javascript, react
- 领域
- documentation
- Issue 类型
- 功能
- 难度
- 5/5
- 预计耗时
- 一周以上
- 活跃度
- 停滞
- 描述清晰度
- 需要澄清
- 新手友好度
- 20/100