Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
4dfce8fd
Commit
4dfce8fd
authored
5 years ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[dome] data example in doc
parent
95f47e76
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ivette/src/dome/src/renderer/data.js
+52
-4
52 additions, 4 deletions
ivette/src/dome/src/renderer/data.js
with
52 additions
and
4 deletions
ivette/src/dome/src/renderer/data.js
+
52
−
4
View file @
4dfce8fd
...
@@ -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 `use
New
Library()` and
You create libraries with `createLibrary()` or `use
Local
Library()` 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
use
New
Library
()
{
export
function
use
Local
Library
()
{
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
}
=
use
New
Library
();
let
{
library
,
items
}
=
use
Local
Library
();
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
,
use
New
Library
,
useCurrentLibrary
,
use
Local
Library
,
Item
,
Component
,
Node
,
Fragment
Item
,
Component
,
Node
,
Fragment
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment