an introduction to knockout js
play

An Introduction to Knockout.js with Daniel Doezema dan.doezema.com - PowerPoint PPT Presentation

An Introduction to Knockout.js with Daniel Doezema dan.doezema.com Knockout.js Standalone / Pure JavaScript Open Source (MIT license) Wide Browser Support ( IE 6+ / FF 2+ / Chrome / Opera / Safari - Mobile) Framework


  1. An Introduction to Knockout.js with Daniel Doezema dan.doezema.com

  2. Knockout.js ● Standalone / Pure JavaScript ● Open Source (MIT license) ● Wide Browser Support ○ ( IE 6+ / FF 2+ / Chrome / Opera / Safari - Mobile) ● Framework Agnostic

  3. Best Use Cases ● Web Apps ● User Interaction ● UI / UX Priority ● AJAX / API Backed

  4. Benefits ● Reusability (DRY) ● View Consistency ● Concise Code ● Logic / Responsibility Encapsulation

  5. Model-View-View Model (MVVM) ● Model - Persistent Data Store ● View - UI / Layout ● View Model - The Staging Area

  6. View Model (JavaScript) var ViewModel = function(){ this.name = "Daniel Doezema"; this.site = "http://dan.doezema.com"; this.age = 28; }; var view_model = new ViewModel();

  7. View (HTML) ● Bind Attribute <h1>Presenter</h1> <h3>Name</h3> <p data-bind="text:name"></p> <h3>Site</h3> ● Knockout <p data-bind="text:site"></p> "Binding" <h3>Age</h3> <p data-bind="text:age"></p> ● View Model Property

  8. Activation / Page Bootstrap $(function($){ var view_mode = new ViewModel(); ko.applyBindings(view_model); });

  9. Rendered View Presenter Name Daniel Doezema Site http://dan.doezema.com Age 28

  10. Observables // Static Properties var ViewModel = function(){ this.name = "Daniel Doezema"; this.site = "http://dan.doezema.com"; this.age = 28; }; // Observable Properties var ViewModel = function(){ this.name = ko.observable("Daniel Doezema"); this.site = ko.observable("http://dan.doezema.com"); this.age = ko.observable(28); };

  11. Observables ● Method, acting as property... view_model.name(); // Getter view_model.name("John Doe"); // Setter ● Notifies Subscribers ● Detects Dependencies ● Reflects Changes of Bindings

  12. Subscribers Bi-Directional Bindings <input data-bind="value:name" /> <input type="checkbox" data-bind="checked:is_admin" />

  13. Subscribers Computed Observables var ViewModel = function(){ var self = this; self.signature = ko.computed(function(){ return self.name() + " - " + self.site(); }); }; <p data-bind="text:signature"></p>

  14. Observable Arrays var view_model = new ViewModel(); view_model.links = ko.obserableArray([ {name:"Me", url:"http://dan.doezema.com"}, {name:"Apple", url:"http://apple.com"}, {name:"Twitter", url:"http://twitter.com"} ]); ko.applyBindings(view_model);

  15. ObservableArray + `foreach` Binding <ul data-bind="foreach:links"> <li> <a data-bind="attr:{href:$data.url}, text:$data.name"></a> </li> </ul> Me ● Apple ● Twitter ●

  16. ObservableArray Methods ● .splice ● .push ● .slice ● .pop ● .remove ● .shift ● .removeAll ● .unshift ● .destroy ● .reverse ● .destroyAll ● .sort

  17. In Action... http://kojs.dan.doezema.com

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend