useValueIds
The useValueIds
hook returns the Ids
of every Value
in a Store
, and registers a listener so that any changes to that result will cause a re-render.
useValueIds(storeOrStoreId?: StoreOrStoreId): Ids
Type | Description | |
---|---|---|
storeOrStoreId? | StoreOrStoreId | The |
returns | Ids |
A Provider
component is used to wrap part of an application in a context, and it can contain a default Store
or a set of Store
objects named by Id
. The useValueIds
hook lets you indicate which Store
to get data for: omit the optional parameter for the default context Store
, provide an Id
for a named context Store
, or provide a Store
explicitly by reference.
When first rendered, this hook will create a listener so that changes to the Value
Ids
will cause a re-render. When the component containing this hook is unmounted, the listener will be automatically removed.
Examples
This example creates a Store
outside the application, which is used in the useValueIds
hook by reference. A change to the data in the Store
re-renders the component.
import React from 'react';
import {createRoot} from 'react-dom/client';
import {createStore} from 'tinybase';
import {useValueIds} from 'tinybase/ui-react';
const store = createStore().setValue('open', true);
const App = () => <span>{JSON.stringify(useValueIds(store))}</span>;
const app = document.createElement('div');
createRoot(app).render(<App />);
console.log(app.innerHTML);
// -> '<span>["open"]</span>'
store.setValue('employees', 3);
console.log(app.innerHTML);
// -> '<span>["open","employees"]</span>'
This example creates a Provider context into which a default Store
is provided. A component within it then uses the useValueIds
hook.
import {Provider, useValueIds} 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 = () => <span>{JSON.stringify(useValueIds())}</span>;
const store = createStore().setValue('open', true);
const app = document.createElement('div');
createRoot(app).render(<App store={store} />);
console.log(app.innerHTML);
// -> '<span>["open"]</span>'
This example creates a Provider context into which a Store
is provided, named by Id
. A component within it then uses the useValueIds
hook.
import {Provider, useValueIds} from 'tinybase/ui-react';
import React from 'react';
import {createRoot} from 'react-dom/client';
import {createStore} from 'tinybase';
const App = ({store}) => (
<Provider storesById={{petStore: store}}>
<Pane />
</Provider>
);
const Pane = () => <span>{JSON.stringify(useValueIds('petStore'))}</span>;
const store = createStore().setValue('open', true);
const app = document.createElement('div');
createRoot(app).render(<App store={store} />);
console.log(app.innerHTML);
// -> '<span>["open"]</span>'
Since
v3.0.0