我有一个无状态的功能组件,该组件没有道具,并且从React上下文中填充内容。作为参考,我的应用程序使用NextJS,并且是一个同构应用程序。我试图在这个组件上第一次使用React.memo(),但是它仍然在客户端页面更改时重新呈现,尽管道具和上下文没有更改。我知道这是由于我放置了控制台日志。
我的组件的一个简单示例是:
const Footer = React.memo(() => {
const globalSettings = useContext(GlobalSettingsContext);
console.log('Should only see this once');
return (
<div>
{globalSettings.footerTitle}
</div>
);
});
我什至尝试传递第二个参数也没有运气:
const Footer = React.memo(() => {
...
}, () => true);
有什么想法吗?
编辑:
_app.js
中上下文提供者的用法如下:
class MyApp extends App {
static async getInitialProps({ Component, ctx }) {
...
return { globalSettings };
}
render() {
return (
<Container>
<GlobalSettingsProvider settings={this.props.globalSettings}>
...
</GlobalSettingsProvider>
</Container>
);
}
}
实际的GlobalSettingsContext文件如下所示:
class GlobalSettingsProvider extends Component {
constructor(props) {
super(props);
const { settings } = this.props;
this.state = { value: settings };
}
render() {
return (
<Provider value={this.state.value}>
{this.props.children}
</Provider>
);
}
}
export default GlobalSettingsContext;
export { GlobalSettingsConsumer, GlobalSettingsProvider };
答案 0 :(得分:0)
问题来自useContext
。每当您的上下文中的任何值更改时,无论您使用的值是否已更改,组件都将重新呈现。
解决方案是像这样创建HOC(即withMyContext()
);
// MyContext.jsx
// exported for when you really want to use useContext();
export const MyContext = React.createContext();
// Provides values to the consumer
export function MyContextProvider(props){
const [state, setState] = React.useState();
const [otherValue, setOtherValue] = React.useState();
return <MyContext.Provider value={{state, setState, otherValue, setOtherValue}} {...props} />
}
// HOC that provides the value to the component passed.
export function withMyContext(Component){
<MyContext.Consumer>{(value) => <Component {...value} />}</MyContext.Consumer>
}
// MyComponent.jsx
const MyComponent = ({state}) => {
// do something with state
}
// compares stringified state to determine whether to render or not. This is
// specific to this component because we only care about when state changes,
// not otherValue
const areEqual = ({state:prev}, {state:next}) =>
JSON.stringify(prev) !== JSON.stringify(next)
// wraps the context and memo and will prevent unnecessary
// re-renders when otherValue changes in MyContext.
export default React.memo(withMyContext(MyComponent), areEqual)
将上下文作为道具传递而不是在render中使用它使我们能够隔离出我们真正关心的使用areEqual的变化值。在useContext
内渲染期间,无法进行此比较。
我会大力倡导将选择器作为第二个参数,类似于react-redux的新钩子useSelector。这将使我们能够做类似
的操作 const state = useContext(MyContext, ({state}) => state);
只有状态改变时,谁的返回值才会改变,而不是整个上下文。
但是我只是一个梦想家。
这可能是我目前关于在简单应用程序的钩子上使用react-redux的最大论点。