Direct Mapping
Direct mapping is the simplest use. The direct
means that all props of your agent are directly mapped to destination associated container.
Make sure that you read about through area
and through containers
and through agents
in core concepts before read this. And check that you already have it installed and enabled
Let's suppose for example the area name is an indicator
. Then the through container may be created with throughDirect
like this:
this ballance indicator may be rendered at application top bar:
But data is actually mapped from place where our indicator agent is rendered.
The simplest way to create agent just call agent factory function with same through area name like this:
Now rendering IndicatorAgent
at any place of the react tree maps balance declaratively to indicator container:
Only one such direct agent can be rendered in the through area. But any number of through containers can be created for the same area.
To get multiple agents for the same area, you need to organize a way how to differentiate agents from each other. Read about that in the next section.
Agent itself renders nothing but you can wrap it in component or you can create advanced agents described in advanced section.
Second argument of throughDirect
function may be the name of bearing prop or the bearing key builder function which is described in the next sections.
The next step is communication from multiple agents
Last updated