import {useEffect, useState} from 'react'; import Reflux from 'reflux'; import {CommonStoreInterface} from './types'; type LegacyStoreShape = Reflux.Store & CommonStoreInterface; /** * This wrapper exists because we have many old-style enzyme tests that trigger * updates to stores without being wrapped in act. * * Wrting tests with React Testing Library typically circumvents the need for * this. See [0]. * * [0]: https://javascript.plainenglish.io/you-probably-dont-need-act-in-your-react-tests-2a0bcd2ad65c */ window._legacyStoreHookUpdate = update => update(); /** * Returns the state of a reflux store. Automatically unsubscribes when destroyed * * ``` * const teams = useLegacyStore(TeamStore); * ``` */ export function useLegacyStore( store: T ): ReturnType { const [state, setState] = useState(store.getState()); // Not all stores emit the new state, call get on change const callback = () => window._legacyStoreHookUpdate(() => setState(store.getState())); useEffect(() => store.listen(callback, undefined) as () => void, []); return state; }