Skip to content
Snippets Groups Projects
Commit 4dfce8fd authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[dome] data example in doc

parent 95f47e76
No related branches found
No related tags found
No related merge requests found
...@@ -6,9 +6,26 @@ ...@@ -6,9 +6,26 @@
@description @description
This module allows to integrate data definitions within React elements. This module allows to integrate data definitions within React elements.
Typically, you can use it to define your own structure of logical elements
and display them at different places in the GUI. For instance, you may
want to define a custom list of elements, where each element
will be rendered twice: locally with the currenly selected item, and in a side-bar
or in the menu-bar, or for any other purpose than rendering. You want to declare
your list like this:
```{jsx}
<MyList>
<MyItem id={A} ... >...</MyItem>
<MyItem id={B} ... >...</MyItem>
<MyItem id={C} ... >...</MyItem>
</MyList>
```
Dome data libraries, as provided by this module, allows you to define such
collection of data mixed with rendered elements.
Data are collected through libraries. Data are collected through libraries.
You create libraries with `createLibrary()` or `useNewLibrary()` and You create libraries with `createLibrary()` or `useLocalLibrary()` and
then provide them to `<Data.Item>`, `<Data.Component>`, `<Data.Node>` or then provide them to `<Data.Item>`, `<Data.Component>`, `<Data.Node>` or
`<Data.Fragment>` elements. `<Data.Fragment>` elements.
...@@ -37,6 +54,37 @@ rendered differenly with this respect: ...@@ -37,6 +54,37 @@ rendered differenly with this respect:
- `<Data.Fragment>` renders its children within a React fragment, with optional context library and specified order. - `<Data.Fragment>` renders its children within a React fragment, with optional context library and specified order.
See each component for more details. See each component for more details.
As an example of use, the introductory example can be implemented as follows:
```{jsx}
const lib = createLibrary();
// To be used at any (possibly repeated) place in the hierarchy of react elements
// Children items are only added to the library when the list is mounted
const MyList = ({ children }) => {
// Actually renders nothing if children only contains items.
// The fragment makes items keep their declaration ordering.
return (
<Data.Fragment lib={lib}>{children}</Data.Fragment>
);
};
// To be used also at any (possibly repeated) place in the hierarchy
const MyItem = (props) => <Data.Item lib={lib} {...props} /> ;
// To be used for instance at top-level inside a side-bar
const MyListIndex = () => {
let items = Data.useLibrary(lib);
return (
<ul>
{ items.map(({id,label}) => (<li key={id}>{label}</li>)) }
</ul>
);
};
```
*/ */
import _ from 'lodash' ; import _ from 'lodash' ;
...@@ -150,7 +198,7 @@ export function useLibrary(library) { ...@@ -150,7 +198,7 @@ export function useLibrary(library) {
const items = useLibrary( library ); const items = useLibrary( library );
``` ```
*/ */
export function useNewLibrary() { export function useLocalLibrary() {
const library = React.useMemo( createLibrary , [] ); const library = React.useMemo( createLibrary , [] );
const items = useLibrary( library ); const items = useLibrary( library );
return { library , items }; return { library , items };
...@@ -311,7 +359,7 @@ export const Component = ( { children, ...props} ) => { ...@@ -311,7 +359,7 @@ export const Component = ( { children, ...props} ) => {
defined `<Node/>` item. defined `<Node/>` item.
*/ */
export const Node = ({ children, ...props }) => { export const Node = ({ children, ...props }) => {
let { library, items } = useNewLibrary(); let { library, items } = useLocalLibrary();
let path = useLocalItem( props , items ); let path = useLocalItem( props , items );
return ( return (
<CurrentLib.Provider value={library}> <CurrentLib.Provider value={library}>
...@@ -356,7 +404,7 @@ export const Fragment = ({lib:localLib, order, enabled=true, disabled=false, chi ...@@ -356,7 +404,7 @@ export const Fragment = ({lib:localLib, order, enabled=true, disabled=false, chi
export default { export default {
Library, Library,
createLibrary, useLibrary, createLibrary, useLibrary,
useCurrentLibrary, useNewLibrary, useCurrentLibrary, useLocalLibrary,
Item, Component, Node, Fragment Item, Component, Node, Fragment
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment