Security News
Introducing the Socket Python SDK
The initial version of the Socket Python SDK is now on PyPI, enabling developers to more easily interact with the Socket REST API in Python projects.
context-state
Advanced tools
React hooks 状态管理方案
npm i context-state
React Context 和 useContext 存在一些性能问题,当 context 上下文改变时,所有使用到 context 的组件都会更新渲染。
使用 context-state
,开发者不必考虑 context 穿透问题
import { createContainer } from 'context-state';
import React from 'react';
function useCounter() {
const [count, setCount] = React.useState(0);
const increment = () => setCount((c) => c + 1);
return {
count,
increment,
};
}
const CounterContainer = createContainer(useCounter);
function CounterDisplay() {
const { count, increment } = CounterContainer.usePicker(['count', 'increment']);
return (
<div>
{count}
<button
type='button'
onClick={increment}
>
ADD
</button>
</div>
);
}
function App() {
return (
<CounterContainer.Provider>
<CounterDisplay />
</CounterContainer.Provider>
);
}
render(<App />, document.getElementById('root'));
createContainer(useHook)
import { createContainer, useMemoizedFn } from 'context-state';
function useCustomHook() {
const [value, setInput] = useState();
const onChange = useMemoizedFn((e) => setValue(e.currentTarget.value));
return {
value,
onChange,
};
}
const Container = createContainer(useCustomHook);
// Container === { Provider, usePicker }
<Container.Provider>
const Container = createContainer(useCustomHook);
function ParentComponent({ children }) {
return <Container.Provider>{children}</Container.Provider>;
}
<Container.Provider value>
function useCustomHook(value = '') {
const [value, setValue] = useState(value);
// ...
}
const Container = createContainer(useCustomHook);
function ParentComponent({ children }) {
return <Container.Provider value='value'>{children}</Container.Provider>;
}
Container.Consumer
function ChildComponent() {
return <Container.Consumer>{(value) => <span>{value}</span>}</Container.Consumer>;
}
Container.useSelector()
监听当前容器中选择后的值,若值发生改变,则触发 rerender
function ChildComponent() {
const value = Container.useSelector((state) => state.value);
return <span>{value}</span>;
}
Container.usePicker()
useSelector
的语法糖
function ChildComponent() {
const { value } = Container.usePicker(['value']);
return <span>{value}</span>;
}
FAQs
React state management library
We found that context-state demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The initial version of the Socket Python SDK is now on PyPI, enabling developers to more easily interact with the Socket REST API in Python projects.
Security News
Floating dependency ranges in npm can introduce instability and security risks into your project by allowing unverified or incompatible versions to be installed automatically, leading to unpredictable behavior and potential conflicts.
Security News
A new Rust RFC proposes "Trusted Publishing" for Crates.io, introducing short-lived access tokens via OIDC to improve security and reduce risks associated with long-lived API tokens.