mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 23:29:30 +08:00
01cec29a8e
* chore: comment on usePatchElement * refactor: conform message & notifaction code logic * feat: message useMessage, wip * feat: message.useMessage, it works now * fix: promise on regular api * feat: message hooks * chore: fix lint * chore: new line * chore: revert new line * refactor: prefixCls * fix: prefixCls * test: cov * chore * chore * chore * chore * docs * docs: message hooks faq * test: remove useless config provider * chore: remove some test codes * chore * docs: hooks version
22 lines
697 B
TypeScript
22 lines
697 B
TypeScript
import * as React from 'react';
|
|
|
|
export default function usePatchElement(): [
|
|
React.ReactElement[],
|
|
(element: React.ReactElement) => Function,
|
|
] {
|
|
const [elements, setElements] = React.useState<React.ReactElement[]>([]);
|
|
|
|
function patchElement(element: React.ReactElement) {
|
|
// append a new element to elements (and create a new ref)
|
|
setElements(originElements => [...originElements, element]);
|
|
|
|
// return a function that removes the new element out of elements (and create a new ref)
|
|
// it works a little like useEffect
|
|
return () => {
|
|
setElements(originElements => originElements.filter(ele => ele !== element));
|
|
};
|
|
}
|
|
|
|
return [elements, patchElement];
|
|
}
|