useDidFinishTransactionListener
The useDidFinishTransactionListener
hook registers a listener function with a Store
that will be called just after other non-mutating listeners are called at the end of the transaction.
useDidFinishTransactionListener(
listener: TransactionListener,
listenerDeps?: DependencyList,
storeOrStoreId?: StoreOrStoreId,
): void
Type | Description | |
---|---|---|
listener | TransactionListener | The function that will be called after the end of a transaction. |
listenerDeps? | DependencyList | An optional array of dependencies for the |
storeOrStoreId? | StoreOrStoreId | The |
returns | void | This has no return value. |
Unlike the addDidFinishTransactionListener
method, which returns a listener Id
and requires you to remove it manually, the useDidFinishTransactionListener
hook manages this lifecycle for you: when the listener changes (per its listenerDeps
dependencies) or the component unmounts, the listener on the underlying Store
will be deleted.
Example
This example uses the useDidFinishTransactionListener
hook to create a listener that is scoped to a single component. When the component is unmounted, the listener is removed from the Store
.
import {
Provider,
useDidFinishTransactionListener,
} from 'tinybase/ui-react';
import React from 'react';
import {createRoot} from 'react-dom/client';
import {createStore} from 'tinybase';
const App = ({store}) => (
<Provider store={store}>
<Pane />
</Provider>
);
const Pane = () => {
useDidFinishTransactionListener(() =>
console.log('Did finish transaction'),
);
return <span>App</span>;
};
const store = createStore();
const app = document.createElement('div');
const root = createRoot(app);
root.render(<App store={store} />);
console.log(store.getListenerStats().transaction);
// -> 1
store.setValue('open', false);
// -> 'Did finish transaction'
root.unmount();
console.log(store.getListenerStats().transaction);
// -> 0
Since
v4.2.2