Various frameworks provide data binding facilities (Knockout, AngularJS, etc.) these days.
They are based on kind-of-MVC concept: you have some data (structure, model), view rendering that data in html and some code in between that commonly named as controllers. How successful/convenient those frameworks are subject of separate topic. For me they are too intrusive I would say. On some views/pages they make sense, on others final solution looks too ugly.
Anyway, here is an alternative idea...
Instead of separating data structure and its view we simply can create construction that is a data model and its view at the same time :)
I named that magic "construction" as Formation. Formation is essentially a collection of DOM elements organized in a tree that reproduces structure of the data (or model if you wish). Value of the formation is JSON data structure - the model per se.
Consider this example:
On the left you see live data of the Formation (editable textarea). Changes there reflect state of elements. In the same way changes in inputs reflect text in this textarea.
The Formation implementation does two major things:
- creates formation trees and
- initializes custom DOM elements (check that <input-list> in HTML source - that friends list).
Couple of words about custom elements support in formations:
When formation sees custom DOM element ( any DOM element with tag name containing '-' inside ) it tries to find its initializer in registry of jQuery plugins - that famous $.fn collection. And calls it if it was found. You can check js/jquery.list-input.js - it is normal jQuery plugin with the name matching that custom element tag name: "INPUT-LIST".
To create/get formation of some container you can call
- either global [window.] formation( domel_or_$_wrapper ) function or
- $(selector).formation().
You can store created formation in some variable and access DOM elements in it in quite effective manner:
- var inputs = $("section#inputs").formation();
- $(inputs.firstName).on("change", function() {...});
Accessing formation members directly is faster than accessing them using jQuery selectors as these are just direct references.
You can download complete sample to play with form here:http://terrainformatica.com/formation/formation.0.1.0.zipFuture Formation plans: to implement so called repeatable formations, so if you have this markup:
- <ul repeatable name="stockItems">
- <li><output name="name"> <output name="price" type="currency"></li>
- </ul>
and will feed it (through formation) by this data:
- [ {name:"Apple", price: 1.05 },
- {name:"Orange", price: 0.52 } ]
it will render two <li>s in the list.
Another ng-inspired idea is to have class switches as Formation elements, this class declaration:
- <div class="{someSwitch:collapsed|expanded}" >...</div>
will cause corresponding formation to have element named "someSwitch" that can be assigned false/true or 0|1 values to change class to either <div class="collapsed"> or to <div class="expanded">...
That is it for now. My pardon if some will think that all this is complete non-sense.