actives
The main idea of actives
to have ability to write pure logic
(PL) and pure views
(PV). (PL) <-> (PV).
Then we connect both (logic and views) for your goals and we get a real view.
It's only concept for now an example below.
Example
There is an example with reactjs view.
There are some required packages.
;; ;;
Pure logic and view.
// pure logic, it means that logic does not know about view { thiscounter = 0; } { ; } { thiscounter++; } { return thiscounter; } // pure view, view does not know about logic at alllet { return <div><p>counter</p><button onClick=onUp>up</button></div>};
Make box and define state.
// let's make state for counterlet box = ;// add counter to the boxbox; // connect state to the counterbox ;
Connect state/actions to the view and render.
// connect state with view, view should not know about real logiclet CounterWidget = ; // render widget now it's connected to state. And it will react on changes.;
You can manipulate counter
(logic instance). And it will present view.
// lets GO!let counter = boxcounter;counter;
Counter example on GitHub
It's an example with the simplest counter to get an idea. example
Todos example on GitHub
It's an example with todo list. Follow to get more ideas example
React-native + Web app, example on GitHub
Two apps - Web and Mobile Native apps with same codebase. It's an example with the simplest counter. To get ideas simply. example