knockout-pre-rendered
v0.11.0
Published
Knockout pre-rendered
Downloads
2,087
Maintainers
Readme
Knockout pre-rendered binding handlers
This library adds two new binding handlers to Knockout that allow observables to be initialized from pre-rendered HTML content:
init: initialize an observable to a value retrieved from existing HTML content.foreachInit: wraps theforeachbinding, with the observable array's elements bound to existing HTML elements.
Init binding
Suppose we have the following view model:
function ViewModel() {
this.name = ko.observable();
}Normally, you'd bind the name observable to an HTML element as follows:
<span data-bind="text: name">Michael Jordan</span>Once the binding has been applied however, the text within the <span> element will be cleared, as the bound observable did not have a value (existing HTML content is ignored).
We can fix this by specifying the init binding handler before the text binding handler:
<span data-bind="init, text: name">Michael Jordan</span>Now, the text within the <span> element is left unchanged. This is due to the init binding handler setting the observable's value to the text content of the bound element. As Knockout binding handlers are executed left-to-right, when the text binding executes the init binding will already have initialized the observable.
You can combine the init handler with any binding, as long as you ensure that it is listed before the other bindings:
<span data-bind="init, textInput: name">Michael Jordan</span>
<!--
This binding will use the "value" attribute to initialize the observable
-->
<input data-bind="init, value: name" value="Larry Bird" type="text" />Converting
By default, the init binding will set the observable's value to a string. If you want to convert to a different type, you can specify a convert function:
<span data-bind="init: { convert: parseInt }, text: height">198</span>Now, the observable's value will be set to what the convert function, with the innerText value as its parameter, returns.
Custom conversion
It is also possible to use your own, custom conversion function. You could, for example, define it in your view model:
function CustomConvertViewModel() {
this.dateOfBirth = ko.observable();
this.parseDate = function(innerText) {
return new Date(Date.parse(innerText));
};
}You can then use this custom convert function as follows:
<span data-bind="init: { convert: parseDate }, text: dateOfBirth"
>February 17, 1963</span
>Virtual elements
You can also use the init binding handler as a virtual element:
<!-- ko init: { field: name }
-->Michael Jordan<!--
/ko
-->Converting works the same as before:
<!-- ko init: { field: height, convert: parseInt }
-->198<!--
/ko
-->Note that we now need to explicitly specify the field parameter, which points to the observable to initialize. In our previous examples, the init binding was able to infer this due to it being combined with the text, textInput, value or checked binding and using the observable they were pointing to. As a consequence, the following bindings are equivalent:
<span data-bind="init, text: name">Michael Jordan</span>
<span data-bind="init: { field: name }, text: name">Michael Jordan</span>Explicit value
If you provide a value parameter to the init binding, that value will be used to initialize the observable instead:
<span data-bind="init: { field: name, value: 'Larry Bird' }, text: name"
>Michael Jordan</span
>This would result in the observable's value being set to "Larry Bird", and thus the element's content is changed once the text binding is applied.
Multiple values
If you want to initialize multiple observable's at once, you just specify them as key/value pairs:
<span data-bind="init: { city: 'London', year: 230 }"></span>This would set the city observable to "London" and the year observable to 230.
Note: the keys cannot be equal to the "value", "convert" or "field" strings.
Supported bindings
The init binding can be used with the following bindings:
text: the value is set to the bound element's text contents.textInput: the value is set to the bound element's text contents.value: the value is set to the bound element's value.html: the value is set to the bound element's inner HTML value.attr: the bound attribute properties are set to their respective attribute values.checked: the value is set to the bound element's checked value.visible: the value is set totrueorfalsedepending on the bound element's visibility.enable: the value is set totrueif the bound element does not have adisabledattribute; otherwise, it is set tofalse.disable: the value is set totrueif the bound element has adisabledattribute; otherwise, it is set totrue.
Foreach init binding
This binding handler wraps the foreach binding, but instead of creating new HTML elements, it binds to existing HTML elements. Consider the following view model:
function PersonViewModel() {
this.name = ko.observable();
}
function ForeachViewModel() {
this.persons = ko.observableArray();
this.persons.push(new PersonViewModel());
this.persons.push(new PersonViewModel());
this.persons.push(new PersonViewModel());
}We can bind the elements in the persons observable array to existing HTML elements by using the foreachInit binding handler:
<ul data-bind="foreachInit: persons">
<li data-template data-bind="text: name"></li>
<li data-init data-bind="init, text: name">Michael Jordan</li>
<li data-init data-bind="init, text: name">Larry Bird</li>
<li data-init data-bind="init, text: name">Magic Johnson</li>
</ul>There are several things to note:
- There must be one child element with the
data-templateattribute. This element will be used as the template when new items are added to the array. - Elements to be bound to array items must have the
data-initattribute. - You can use the
initbinding handler to initialize the array items themselves.
Template
You can also use a template that is defined elsewhere on the page:
<ul data-bind="foreachInit: { name: 'personTemplate', data: persons }">
<li data-bind="init, text: name">Michael Jordan</li>
<li data-bind="init, text: name">Larry Bird</li>
<li data-bind="init, text: name">Magic Johnson</li>
</ul>
<script type="text/ko-template" id="personTemplate">
<li data-bind="text: name"></li>
</script>Note: if you use a named template, the data-init and data-template can be omitted.
Create missing array elements
Up until now, we assumed that the observable array already contained an item for each HTML element bound inside the foreachInit section. However, you can also have the foreachInit binding handler dynamically add an element for each bound element.
Take the following view model:
function ForeachDynamicViewModel() {
this.persons = ko.observableArray();
this.addPerson = function() {
this.persons.push(new PersonViewModel());
};
}Note that the persons observable array does not contain any elements, but that it does have a function to add a new element to the array.
We can use the foreachInit binding handler as follows:
<ul data-bind="foreachInit: { data: persons, createElement: createPerson }">
<li data-template data-bind="text: name"></li>
<li data-init data-bind="init, text: name">Michael Jordan</li>
<li data-init data-bind="init, text: name">Larry Bird</li>
<li data-init data-bind="init, text: name">Magic Johnson</li>
</ul>What happens is that for each element with the data-init attribute, the function specified in the createElement parameter is called. Our modified code now looks as follows:
function ForeachDynamicViewModel() {
this.persons = ko.observableArray();
this.createPerson = function() {
return new PersonViewModel();
};
}Processing data changes
The foreachInit binding does not immediately process changes. Instead, it queues all changes, which it then later processes all at once. If you want to do additional processing before or after each queue processing round, you can use the dataChanged, beforeQueueFlush and afterQueueFlush attributes:
<ul
data-bind="foreachInit: { data: persons, dataChanged: dataChanged, beforeQueueFlush: beforeQueue, afterQueueFlush: afterQueue }"
>
<li data-template data-bind="text: name"></li>
</ul>All three attributes point to callback functions with one argument: the change queue being processed. Each change item in this queue has three properties:
index: the index of the item in the underlying array.status: indicates the status of the change item, eitherexisting,addedorremoved.value: the array item being processed.
We can use these callbacks in our view model as follows:
function ForeachQueueCallbackViewModel() {
this.persons = ko.observableArray();
this.dataChanged = function(changes) {
console.log(changes.added.length + " items have been added");
console.log(changes.existing.length + " items were modified");
console.log(changes.deleted.length + " items were deleted");
};
this.beforeQueue = function(changeQueue) {
console.log(changeQueue.length + " queued items will be processed");
};
this.afterQueue = function(changeQueue) {
console.log(changeQueue.length + " queued items have been processed");
};
}There are two main differences between the dataChanged and beforeQueue callbacks:
- The
dataChangedcallback is also called upon initialization, when the input array may be empty. - The
dataChangedcallback on receives the new changes that will be added to the queue, whereasbeforeQueuewill receive the complete queue.
Installation
The best way to install this library is using Bower:
bower install knockout-pre-renderedYou can also install the library using NPM:
npm install knockout-pre-rendered --save-devThe library is also available from a CDN.
Demos
There is a JSBin demo for each of the binding handlers:
foreachInitbindingforeachInitbinding using createElementforeachInitbinding using templateinitwith text bindinginitwith value bindinginitwith html bindinginitwith attr bindinginitwith checked bindinginitwith visible bindinginitwith enable bindinginitwith disable bindinginitbinding
History
Acknowledgements
Many thanks go out to Brian M Hunt, which fastForEach binding handler formed the basis of the foreachInit binding handler.
