You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
451 B
19 lines
451 B
4 years ago
|
import * as React from 'react';
|
||
|
import useForceUpdate from './useForceUpdate';
|
||
|
|
||
|
type UseSyncStateProps<T> = [() => T, (newValue: T) => void];
|
||
|
|
||
|
export default function useSyncState<T>(initialValue: T): UseSyncStateProps<T> {
|
||
|
const ref = React.useRef<T>(initialValue);
|
||
|
const forceUpdate = useForceUpdate();
|
||
|
|
||
|
return [
|
||
|
() => ref.current,
|
||
|
(newValue: T) => {
|
||
|
ref.current = newValue;
|
||
|
// re-render
|
||
|
forceUpdate();
|
||
|
},
|
||
|
];
|
||
|
}
|