ant-design/components/menu/__tests__/cached-context.test.tsx
2022-06-22 14:57:09 +08:00

56 lines
1.9 KiB
TypeScript

import { mount } from 'enzyme';
import React, { memo, useContext, useRef, useState } from 'react';
import Menu from '../index';
import MenuContext from '../MenuContext';
// we use'memo' here in order to only render inner component while context changed.
const CacheInner = memo(() => {
const countRef = useRef(0);
countRef.current++;
// subscribe anchor context
useContext(MenuContext);
return (
<div>
Child Rendering Count: <span id="child_count">{countRef.current}</span>
</div>
);
});
const CacheOuter = () => {
// We use 'useState' here in order to trigger parent component rendering.
const [count, setCount] = useState(1);
const handleClick = () => {
setCount(count + 1);
};
// During each rendering phase, the cached context value returned from method 'Menu#getMemoizedContextValue' will take effect.
// So 'CacheInner' component won't rerender.
return (
<div>
<button type="button" onClick={handleClick} id="parent_btn">
Click
</button>
Parent Rendering Count: <span id="parent_count">{count}</span>
<Menu>
<Menu.Item key="test">
<CacheInner />
</Menu.Item>
</Menu>
</div>
);
};
it("Rendering on Menu without changed MenuContext won't trigger rendering on child component.", () => {
const wrapper = mount(<CacheOuter />);
const childCount = wrapper.find('#child_count').text();
wrapper.find('#parent_btn').at(0).simulate('click');
expect(wrapper.find('#parent_count').text()).toBe('2');
// child component won't rerender
expect(wrapper.find('#child_count').text()).toBe(childCount);
wrapper.find('#parent_btn').at(0).simulate('click');
expect(wrapper.find('#parent_count').text()).toBe('3');
// child component won't rerender
expect(wrapper.find('#child_count').text()).toBe(childCount);
// in order to depress warning "Warning: An update to Menu inside a test was not wrapped in act(...)."
wrapper.unmount();
});