You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/client/shared/hooks/useShallowObject.ts

18 lines
444 B
TypeScript

import { useLayoutEffect, useState } from 'react';
import { shallowEqual } from 'react-redux';
/**
* , ()
*/
export function useShallowObject<T>(object: T): T {
const [state, setState] = useState<T>(object);
useLayoutEffect(() => {
if (!shallowEqual(state, object)) {
setState(object);
}
}, [object]);
return state;
}