SlideShare a Scribd company logo
Building SPA’s (Single Page App) with Backbone.js
Building SPA’s (Single Page App) with Backbone.js
Building SPA’s (Single Page App) with Backbone.js
Where to start

•   Consumerisation of technology has had a large impact on how we
    build apps

•   Affordable portable devices means that consumers care more about
    mobility

•   Customers desire their product to be available on a wide range of
    devices for consumers
Impacts on development

•   Multi tenanted development teams

•   HTML stack / .net stack / iOS stack / Java stack

•   Management of source code, testing, maintainability, consistency
Snooze you loose

•   Building x-platform x-device app

•   Targeting wp7 and windows 7 tablet

•   Performance problems with .net client side implementation

•   Rebuilt in html and js
A time for change

•   Build apps that meet these needs

•   Touch based

•   Mouse based

•   Consumable on anything anywhere

•   Development costs
Something's never change

•   Software craftsmanship

•   Still face the same problems

•   Changing implementation language does not make it easier

•   Actually some of the problems get bigger…much bigger!

•   Browser inconsistency
Something's do change

Improvements in

•   Browser performance
•   HTML
•   CSS
•   ECMA Script
•   Frameworks
•   Development tools
And so the journey begins

Client side Architecture

   Async communication mechanism with server
   MV* framework
   Local storage mechanism
   Responsive web pages
   View management
   Data management
   UI interactions to enhance the experience
Client side Architecture


   Async communication mechanism with server
   MV* framework
   Local storage mechanism
   Responsive web pages
   View management
   Data management
   UI interactions to enhance the experience
Async Communication

•   Endpoints are REST based
•   Endpoints support JSON and Xml – JSON is preferred
•   jQuery $.ajax(query options)

$.ajax({
  type: "POST",
  url: "some.php",
  data: { name: "John", location: “Birmingham" }
}).done(function( msg ) {
  alert( "Data Saved: " + msg );
});
Client side Architecture


   Async communication mechanism with server
   MV* framework
   Local storage mechanism
   Responsive web pages
   View management
   Data management
   UI interactions to enhance the experience
MV* framework

•   Extensive range of JS frameworks that support MVC, MVP and MVVM

•   YAFS! – each week there seems to be a new one

•   IMHO there should be more focus on scaffolding tools

•   Confused! Try this out! http://todomvc.com/
MV* framework – KO js

I want something that will make it easy to build complex dynamic UIs with
a clean underlying data model and declarative bindings.
It should automatically update my UI on model changes using two-way
bindings and support dependency tracking of model data.
I should be able to use it with whatever framework I prefer, or even an
existing app.
It should also come with templating built-in and be easily extensible.

Resource: Addy Osmani
MV* framework – backbone js

I want something flexible which offers a minimalist solution to separating
concerns in my application.
It should support a persistence layer and RESTful sync, models, views
(with controllers), event-driven communication, templating and routing.
It should be imperative, allowing one to update the View when a model
changes.
I’d like some decisions about the architecture left up to me. Ideally, many
large companies have used the solution to build non-trivial applications

Resource: Addy Osmani
Client side Architecture


   Async communication mechanism with server
   MV* framework
   Local storage mechanism
   Responsive web pages
   View management
   Data management
   UI interactions to enhance the experience
Local Storage - amplify

•   Amplifyjs http://amplifyjs.com/

•   Simple to use as everything is all done via key value pairs

•   Amplify works out what browser your app is running in and makes a
    choice which local storage option to use

     Local Storage if available (latest browsers)
     Cookie in older browsers
Client side Architecture


   Async communication mechanism with server
   MV* framework
   Local storage mechanism
   Responsive web pages
   View management
   Data management
   UI interactions to enhance the experience
Responsive layout

•   As I eluded earlier supporting x-devices, x-browser means that we
    need to up our game

•   We want to be pragmatic about it and thus avoid tumbling/cascading
    conditional blocks of code to handle the different browser
Responsive layout - bootstrap

•   Bootstrap http://twitter.github.com/bootstrap/

•   Bootstrap provides everything that we need to build responsive web
    pages

•   Provides a 12-column responsive grid

•   Builds on CSS media queries to provide responsive functionality

•   Uses LESS to help with maintainability of CSS from a Developer
    prospective
Client side Architecture


   Async communication mechanism with server
   MV* framework
   Local storage mechanism
   Responsive web pages
   View management
   Data management
   UI interactions to enhance the experience
View Layout Management

•   Layout Manager https://github.com/tbranyen/backbone.layoutmanager

•   When building a complex UI there is always the issue of how we
    manage our views and also our sub-views

•   Reusable views

•   To be pragmatic we want to insure that we adhere to the DRY principle

•   Backbone does not provide a formalised way for how we do
    templatingttps://github.com/tbranyen/backbone.layoutmanager
Single Page App Design

•   Taking Ajax to the next level

•   Provide a UX which is closer to an app or desktop app UX

•   Our application UX all happens in a single page and is not spread
    across multiple pages

•   Don’t think about a web site think about an app a web app experience
Ajax everything…

•   Dynamically loading templates

•   Html templates are defined on the server and loaded async when
    required

•   Html templates are associated with the backbone view

•   Layout manager provides a strategy for managing views
Everything ajax…

•   Asynchronous Module Definitions

•   Use Requirejs http://requirejs.org/
•
•   Provides a mechanism for include/import/require
•   Ability to load nested dependencies

•   Ease of use for developer but then backed by an optimisation tool that
    helps with deployment
Client side Architecture


   Async communication mechanism with server
   MV* framework
   Local storage mechanism
   Responsive web pages
   View management
   Data management
   UI interactions to enhance the experience
Data Management

•   Backbone paginator
    https://github.com/addyosmani/backbone.paginator

•   Pagination of data

•   Client side pagination

•   Server side pagination

https://github.com/addyosmani/backbone.paginator
Client side Architecture


   Async communication mechanism with server
   MV* framework
   Local storage mechanism
   Responsive web pages
   View management
   Data management
   UI interactions to enhance the experience
UI Interactions

•   jQuery does everything that you need and more

•   jQuery and Backbone play nice together

•   jQuery Mobile
Client side Architecture

Bucket list

   Async communication mechanism with server
   MV* framework
   Local storage mechanism
   Responsive web pages
   View management
   Data management
   UI interactions to enhance the experience
Tool up

•   BDD / TDD

•   Grunt

•   Sublime Text Editor

•   Development server
Tool up

•   BDD / TDD

•   Grunt

•   Sublime Text Editor

•   Development server
Jasmine

•   Jasmine http://pivotal.github.com/jasmine/

•   Does not depend on any other JS framework

                              Client side Architecture
•   Does not require a DOM

•   Given, When, Then syntax

•   Works on windows 8!
Tool up

•   BDD / TDD

•   Grunt

•   Sublime Text Editor

•   Development server
Grunt

•   grunt http://gruntjs.com/

•   Requires Node – install using npm grunt

•   Provides the ability for developers to have a pseudo compilation
    mechanism

•   MSBuild analogy where by developers can create a script that
    performs a series of actions
Grunt

Build Script
• Run tests

• JSHint code
  • http://www.jshint.com/

• Uglification / Compression of code
  • https://github.com/mishoo/UglifyJS


• Bundling of code ready for deployment
Tool up

•   BDD / TDD

•   Grunt

•   Sublime Text Editor

•   Development server
Sublime text editor

•   Nuget style package management console

•   Support for backbone snippets

•   Support for jQuery snippets

•   Supports grunt build files

•   Supports jshint configuration
Tool up

•   BDD / TDD

•   Grunt

•   Sublime Text Editor

•   Development server
Web Matrix

•   Local Server for running web apps

•   Awesome for deployment to Azure

•   Has its own editor
Backbone
                                    view


Events
Models
Collections              router            events

Views
Routers

                                  collection                 model


http://backbonejs.org/

                                                    events
Router

•   Provides methods for routing client-side pages, and connecting them
    to actions and events

•   Until recently, hash fragments (#page) were used to provide these
    permalinks, but with the arrival of the History API, it's now possible to
    use standard URLs (/page)

•   For browsers which don't yet support the History API, the Router
    handles graceful fallback and transparent translation to the fragment
    version of the URL
Router
var Workspace = Backbone.Router.extend({
  routes: {
     "help":                      "help",     // #help
     "search/:query":             "search",   // #search/kiwis
     "search/:query/p:page":      "search"    // #search/kiwis/p7
  },

 help: function() {},

  search: function(query, page) {}
});
Events

•   Events is a module that can be mixed into any object
•   Provides the ability to bind and trigger custom named events
•   Normally used in the view so that it can update when our model
    changes

                  this.model.on("destroy", this.close, this);

                  this.model.on(“reset”, this.addAll, this);

                  this.model.on(“add”, this.addOne, this);
Models

•   Models are at the heart of any js app

•   Models contain interactive data as well as a large part of the logic
    surrounding it

•   Models are databound to the html

•   Models can also be extended to help contain common functionality

•   By convention the initialise function gets called with the arguments
    passed into the constructor
Collections

•   Collections are ordered sets of models

•   Bind “change” events to be notified when any model in the collection
    has been modified

•    Common change events to listen for
     Add
     Remove
Collections

Fetch()

•   Call to populate collection with data
Collections

Sync(crud method, model, options callback)

•   CRUD – Create, Read, Update or Delete

•   Model – Model to be operated on

•   Options – callbacks success and error
Collections

CRUD to REST

• Create -> POST     /collection

• Read -> GET        /collection[id]

• Update -> PUT      /collection/id

• Delete -> DELETE   /collection/id
Views

•   More convention than they are code

•   They don't determine anything about your HTML or CSS for you, and
    can be used with any JavaScript templating library

•   Organize your interface into logical views, backed by models, each of
    which can be updated independently when the model
    changes, without having to redraw the page

•   Bind your view's render function to the model's "change" event and
    now everywhere that model data is displayed in the UI, it is always
    immediately up to date
Backbone
                      view




           router            events




                    collection                 model




                                      events
MVVM
                 view




       View
                        events
       model




               collection                 model




                                 events
Underscore

•   http://underscorejs.org/

•   80 odd helper functions

•   Works seamlessly with jQuery and Backbone

•   Provides the ability to shape data similar to how we would use linq or
    lambda in .net

•   Provides the ability to add script into our html templates
Underscore

Shaping data

• each

• map

• where

• sortBy, groupBy
Underscore

Templating

Works in the same way as other templating frameworks

<td>
    <%=
       typeof(model.get("foo")) !== 'undefined' ? model.get("foo").toPrecision(4) : ''
    %>
</td>
Putting it all together
events
 dom                                               layout
                         view
                                                  manager




            router              events




  web        local
request    storage
                       collection                       model




          pagination
                                         events
Building SPA’s (Single Page App) with Backbone.js
Web Request   Initialise App    Router       Collection




                                Layout
 Fetch data   Render Page                       View
                               Manager




                               Populate     Notify UI that
   Sync       On success
                               Collection   data changed




                                            Render View
Web app

•   News reader – uses Guardian API

•   Router / Models / Views

•   Pagination

•   Local Storage

•   View Management
Main layout
                                 Section List                Section List Item
                 Main.html
                                    View                           View
                               section/list.html            section/item.html




  Section Header
       View                                                                      Story List View
section/header.html                                                              story/list.html




                                          Story List Item
                                               View
                                         story/item.html
<div class="nav-collapse sectionListView"></div>
<div id="sectionHeaderView" class="hero-unit sectionHeaderView"></div>                                Section List
                                                                                                          View
<div id="storyListView" class="storyListView"></div>
                                                            Main layout                             section/list.html
                                                             Main.html
                                                                                               <ul class="nav"></ul>




                                                                                                                                       Section List Item
                                                                                                                                             View
                                                               <a href="<%= model.get("id") %>">                                      section/item.html
                                                                 <%= typeof(model.get("webTitle")) !== 'undefined' ? model.get("webTitle") : '' %>
                                                               </a>




<span>
       <%= typeof(model.get("webTitle")) !== 'undefined' ? model.get("webTitle") : '' %>
</span>                    Section Header
                                View
                         section/header.html



                                                                                                                                               Story List View
                                                                                                                                               story/list.html
                                                                                                     Story List Item
                                                                                                          View
                                                                                                    story/item.html
<div class="nav-collapse sectionListView"></div>
  <div id="sectionHeaderView" class="hero-unit sectionHeaderView"></div>                            Section List
                                                                                                        View
  <div id="storyView" class="storyView"></div>
                                                              Story layout                        section/list.html
                                                               story.html


                                                                                                                                       Section List Item
                                                                                                                                             View
                                                                                                                                      section/item.html
  Section Header
       View                                  Story List View
section/header.html                          story/list.html

                                                           <p><img width="20%" src="<%= model.get('fields').thumbnail %>" type="" media=""></p>
                                                           <h1><%= model.get("fields").headline %></h1>
                                                           <div style="columns:100px 2; -webkit-columns:100px 2; -moz-columns:100px 2;">
                                                             <p><%= model.get("fields").body %></>
                                                           </div>
Building SPA’s (Single Page App) with Backbone.js
Winjs

•   Provides access to winrt interfaces via javascript

•   Uses the chakra engine same engine used in IE10

•   Introduces some rather desirable programming concepts such as
    namespaces, data binding, background tasks and more

•   Builds on ECMA script 5 such as promises
Winjs and backbone

•   Use backbone for all our data

•   Use winjs as our UI Framework

•   Ability to integrate and weave the backbone types into winjs binding
    list types

•   Ability to abstract backbone implementation behind more complex
    winjs implementations
Putting it all together
events
dom
                      view



                                      events

       navigation
                                        binding
                                          list

                           events

app       local
load    storage
                    collection                    model




       pagination
                                    events
Building SPA’s (Single Page App) with Backbone.js
App Load     Initialise App   Navigation    Collection




               Render          Process
Fetch data                                     View
              Fragment        Fragment




                              Populate      Convert to
  Sync       On success
                              Collection    Binding List




                               Render      Notify UI that
                              Fragment     data changed
Winjs app

•   Reader port to windows 8

•   Changes to note

   Change in User Experience impacts how and what data needs to be displayed
   Removal views (css, html and js) and replaced with winjs ui controls
   Replacing jQuery $Ajax with winjs xhr
   Replacing router with winjs navigation
   Extending data list source to be used in conjunction with Backbone collection
Building SPA’s (Single Page App) with Backbone.js
Looking back

•   Overview of some useful js frameworks that allow us to create
    maintainable client side apps in js/html/css

•   Building on our experiences with xaml and
    .net, databinding, composite UI and separation of view model
    controller designs

•   Ability to reuse underpinning modules in browser and win8
Looking forwards

•   Improvements in the frameworks and plugins

•   Improvements in scaffolding for building apps

•   Better tools to help manage larger client side apps

•   Better support for winjs binding list

•   Better support for jQuery
Building SPA’s (Single Page App) with Backbone.js

More Related Content

What's hot (20)

PDF
Microservice Websites – Øredev 2017
Gustaf Nilsson Kotte
 
PDF
SOFEA: Service Oriented Front End Architecture, Next Gen Web Architecture for...
Kunal Ashar
 
PDF
Berlin.JAR: Web future without web frameworks
Stephan Schmidt
 
PDF
Buiding and Deploying SaaS with WSO2 as as-a-Service
WSO2
 
PPTX
A High-Performance Solution to Microservice UI Composition @ XConf Hamburg
Dr. Arif Wider
 
PPTX
Pros and Cons of developing a Thick Clientside App
Ravi Teja
 
PPTX
Sitecore and Responsive Web Design
ISITE Design is now Connective DX
 
PPTX
Mobile gotcha
phegaro
 
PPTX
Express yourself
Yaniv Rodenski
 
PPTX
Azure Serverless Conf
Jose Javier Columbie
 
PDF
Free Online SharePoint Framework Webinar
Manoj Mittal
 
PDF
Single Page Apps
Gil Fink
 
PDF
Introduction tosinglepageapplications
Nabeel Khan
 
PDF
Single page applications with backbone js
Gil Fink
 
PDF
Adobe AEM for Business Heads
Yash Mody
 
PDF
Owning Web Performance with PhantomJS 2 - Fluent 2016
Wesley Hales
 
PDF
Great Responsive-ability Web Design
Mike Wilcox
 
PPTX
Why XAF and XPO?
Jose Javier Columbie
 
PDF
Web Components v1
Mike Wilcox
 
PDF
Making Multisite Work for You
drywallbmb
 
Microservice Websites – Øredev 2017
Gustaf Nilsson Kotte
 
SOFEA: Service Oriented Front End Architecture, Next Gen Web Architecture for...
Kunal Ashar
 
Berlin.JAR: Web future without web frameworks
Stephan Schmidt
 
Buiding and Deploying SaaS with WSO2 as as-a-Service
WSO2
 
A High-Performance Solution to Microservice UI Composition @ XConf Hamburg
Dr. Arif Wider
 
Pros and Cons of developing a Thick Clientside App
Ravi Teja
 
Sitecore and Responsive Web Design
ISITE Design is now Connective DX
 
Mobile gotcha
phegaro
 
Express yourself
Yaniv Rodenski
 
Azure Serverless Conf
Jose Javier Columbie
 
Free Online SharePoint Framework Webinar
Manoj Mittal
 
Single Page Apps
Gil Fink
 
Introduction tosinglepageapplications
Nabeel Khan
 
Single page applications with backbone js
Gil Fink
 
Adobe AEM for Business Heads
Yash Mody
 
Owning Web Performance with PhantomJS 2 - Fluent 2016
Wesley Hales
 
Great Responsive-ability Web Design
Mike Wilcox
 
Why XAF and XPO?
Jose Javier Columbie
 
Web Components v1
Mike Wilcox
 
Making Multisite Work for You
drywallbmb
 

Similar to Building SPA’s (Single Page App) with Backbone.js (20)

PDF
Best Practices for couchDB developers on Microsoft Azure
Brian Benz
 
PDF
From server generated pages to client app in a micro-services world
Assaf Gannon
 
PPTX
Top 10 frameworks of node js
HabileLabs
 
PPTX
The future of web development write once, run everywhere with angular.js and ...
Mark Roden
 
PDF
The future of web development write once, run everywhere with angular js an...
Mark Leusink
 
PPTX
SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem.
Kushan Lahiru Perera
 
PDF
Building Enterprise Grade Front-End Applications with JavaScript Frameworks
FITC
 
PDF
Aerobatic Introduction
David Von Lehman
 
PPT
A Public Cloud Based SOA Workflow for Machine Learning Based Recommendation A...
Ram G Athreya
 
PPTX
Building a website without a webserver on Azure
Todd Whitehead
 
PDF
Angular Meetup 1 - Angular Basics and Workshop
Nitin Bhojwani
 
PDF
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
Serdar Basegmez
 
PPTX
JavaScript MVC Frameworks: Backbone, Ember and Angular JS
Harbinger Systems - HRTech Builder of Choice
 
DOCX
Top 10 Javascript Frameworks For Easy Web Development
Technostacks Infotech Pvt. Ltd.
 
PDF
Microservices and Serverless for Mega Startups - DevOps IL Meetup
Boaz Ziniman
 
PPTX
Full Stack development made on React JS Project
AmanKoli6
 
PPTX
Web Applications Development with MEAN Stack
Shailendra Chauhan
 
PPTX
Developing JavaScript Widgets
Bob German
 
DOC
Amit Kumar Architect with Web and Angular JS
Amit Kumar
 
PDF
Making Of PHP Based Web Application
Sachin Walvekar
 
Best Practices for couchDB developers on Microsoft Azure
Brian Benz
 
From server generated pages to client app in a micro-services world
Assaf Gannon
 
Top 10 frameworks of node js
HabileLabs
 
The future of web development write once, run everywhere with angular.js and ...
Mark Roden
 
The future of web development write once, run everywhere with angular js an...
Mark Leusink
 
SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem.
Kushan Lahiru Perera
 
Building Enterprise Grade Front-End Applications with JavaScript Frameworks
FITC
 
Aerobatic Introduction
David Von Lehman
 
A Public Cloud Based SOA Workflow for Machine Learning Based Recommendation A...
Ram G Athreya
 
Building a website without a webserver on Azure
Todd Whitehead
 
Angular Meetup 1 - Angular Basics and Workshop
Nitin Bhojwani
 
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
Serdar Basegmez
 
JavaScript MVC Frameworks: Backbone, Ember and Angular JS
Harbinger Systems - HRTech Builder of Choice
 
Top 10 Javascript Frameworks For Easy Web Development
Technostacks Infotech Pvt. Ltd.
 
Microservices and Serverless for Mega Startups - DevOps IL Meetup
Boaz Ziniman
 
Full Stack development made on React JS Project
AmanKoli6
 
Web Applications Development with MEAN Stack
Shailendra Chauhan
 
Developing JavaScript Widgets
Bob German
 
Amit Kumar Architect with Web and Angular JS
Amit Kumar
 
Making Of PHP Based Web Application
Sachin Walvekar
 
Ad

More from Microsoft Developer Network (MSDN) - Belgium and Luxembourg (20)

PPTX
Code in the Cloud - Ghent - 20 February 2015
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Executive Summit for ISV & Application builders - January 2015
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PDF
Executive Summit for ISV & Application builders - Internet of Things
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Executive Summit for ISV & Application builders - January 2015
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Code in the Cloud - December 8th 2014
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
cloud value for application development
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Modern lifecycle management practices
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Inside the Microsoft TechDays Belgium Apps
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Windows Phone 8 Security Deep Dive
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Deep Dive into Entity Framework 6.0
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Applied MVVM in Windows 8 apps: not your typical MVVM session!
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Deep Dive and Best Practices for Windows Azure Storage Services
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Building data centric applications for web, desktop and mobile with Entity Fr...
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Putting the Microsoft Design Language to work
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Code in the Cloud - Ghent - 20 February 2015
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Executive Summit for ISV & Application builders - January 2015
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Executive Summit for ISV & Application builders - Internet of Things
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Executive Summit for ISV & Application builders - January 2015
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
cloud value for application development
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Inside the Microsoft TechDays Belgium Apps
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Applied MVVM in Windows 8 apps: not your typical MVVM session!
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Deep Dive and Best Practices for Windows Azure Storage Services
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Building data centric applications for web, desktop and mobile with Entity Fr...
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Putting the Microsoft Design Language to work
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Ad

Building SPA’s (Single Page App) with Backbone.js

  • 4. Where to start • Consumerisation of technology has had a large impact on how we build apps • Affordable portable devices means that consumers care more about mobility • Customers desire their product to be available on a wide range of devices for consumers
  • 5. Impacts on development • Multi tenanted development teams • HTML stack / .net stack / iOS stack / Java stack • Management of source code, testing, maintainability, consistency
  • 6. Snooze you loose • Building x-platform x-device app • Targeting wp7 and windows 7 tablet • Performance problems with .net client side implementation • Rebuilt in html and js
  • 7. A time for change • Build apps that meet these needs • Touch based • Mouse based • Consumable on anything anywhere • Development costs
  • 8. Something's never change • Software craftsmanship • Still face the same problems • Changing implementation language does not make it easier • Actually some of the problems get bigger…much bigger! • Browser inconsistency
  • 9. Something's do change Improvements in • Browser performance • HTML • CSS • ECMA Script • Frameworks • Development tools
  • 10. And so the journey begins Client side Architecture  Async communication mechanism with server  MV* framework  Local storage mechanism  Responsive web pages  View management  Data management  UI interactions to enhance the experience
  • 11. Client side Architecture  Async communication mechanism with server  MV* framework  Local storage mechanism  Responsive web pages  View management  Data management  UI interactions to enhance the experience
  • 12. Async Communication • Endpoints are REST based • Endpoints support JSON and Xml – JSON is preferred • jQuery $.ajax(query options) $.ajax({ type: "POST", url: "some.php", data: { name: "John", location: “Birmingham" } }).done(function( msg ) { alert( "Data Saved: " + msg ); });
  • 13. Client side Architecture  Async communication mechanism with server  MV* framework  Local storage mechanism  Responsive web pages  View management  Data management  UI interactions to enhance the experience
  • 14. MV* framework • Extensive range of JS frameworks that support MVC, MVP and MVVM • YAFS! – each week there seems to be a new one • IMHO there should be more focus on scaffolding tools • Confused! Try this out! http://todomvc.com/
  • 15. MV* framework – KO js I want something that will make it easy to build complex dynamic UIs with a clean underlying data model and declarative bindings. It should automatically update my UI on model changes using two-way bindings and support dependency tracking of model data. I should be able to use it with whatever framework I prefer, or even an existing app. It should also come with templating built-in and be easily extensible. Resource: Addy Osmani
  • 16. MV* framework – backbone js I want something flexible which offers a minimalist solution to separating concerns in my application. It should support a persistence layer and RESTful sync, models, views (with controllers), event-driven communication, templating and routing. It should be imperative, allowing one to update the View when a model changes. I’d like some decisions about the architecture left up to me. Ideally, many large companies have used the solution to build non-trivial applications Resource: Addy Osmani
  • 17. Client side Architecture  Async communication mechanism with server  MV* framework  Local storage mechanism  Responsive web pages  View management  Data management  UI interactions to enhance the experience
  • 18. Local Storage - amplify • Amplifyjs http://amplifyjs.com/ • Simple to use as everything is all done via key value pairs • Amplify works out what browser your app is running in and makes a choice which local storage option to use  Local Storage if available (latest browsers)  Cookie in older browsers
  • 19. Client side Architecture  Async communication mechanism with server  MV* framework  Local storage mechanism  Responsive web pages  View management  Data management  UI interactions to enhance the experience
  • 20. Responsive layout • As I eluded earlier supporting x-devices, x-browser means that we need to up our game • We want to be pragmatic about it and thus avoid tumbling/cascading conditional blocks of code to handle the different browser
  • 21. Responsive layout - bootstrap • Bootstrap http://twitter.github.com/bootstrap/ • Bootstrap provides everything that we need to build responsive web pages • Provides a 12-column responsive grid • Builds on CSS media queries to provide responsive functionality • Uses LESS to help with maintainability of CSS from a Developer prospective
  • 22. Client side Architecture  Async communication mechanism with server  MV* framework  Local storage mechanism  Responsive web pages  View management  Data management  UI interactions to enhance the experience
  • 23. View Layout Management • Layout Manager https://github.com/tbranyen/backbone.layoutmanager • When building a complex UI there is always the issue of how we manage our views and also our sub-views • Reusable views • To be pragmatic we want to insure that we adhere to the DRY principle • Backbone does not provide a formalised way for how we do templatingttps://github.com/tbranyen/backbone.layoutmanager
  • 24. Single Page App Design • Taking Ajax to the next level • Provide a UX which is closer to an app or desktop app UX • Our application UX all happens in a single page and is not spread across multiple pages • Don’t think about a web site think about an app a web app experience
  • 25. Ajax everything… • Dynamically loading templates • Html templates are defined on the server and loaded async when required • Html templates are associated with the backbone view • Layout manager provides a strategy for managing views
  • 26. Everything ajax… • Asynchronous Module Definitions • Use Requirejs http://requirejs.org/ • • Provides a mechanism for include/import/require • Ability to load nested dependencies • Ease of use for developer but then backed by an optimisation tool that helps with deployment
  • 27. Client side Architecture  Async communication mechanism with server  MV* framework  Local storage mechanism  Responsive web pages  View management  Data management  UI interactions to enhance the experience
  • 28. Data Management • Backbone paginator https://github.com/addyosmani/backbone.paginator • Pagination of data • Client side pagination • Server side pagination https://github.com/addyosmani/backbone.paginator
  • 29. Client side Architecture  Async communication mechanism with server  MV* framework  Local storage mechanism  Responsive web pages  View management  Data management  UI interactions to enhance the experience
  • 30. UI Interactions • jQuery does everything that you need and more • jQuery and Backbone play nice together • jQuery Mobile
  • 31. Client side Architecture Bucket list  Async communication mechanism with server  MV* framework  Local storage mechanism  Responsive web pages  View management  Data management  UI interactions to enhance the experience
  • 32. Tool up • BDD / TDD • Grunt • Sublime Text Editor • Development server
  • 33. Tool up • BDD / TDD • Grunt • Sublime Text Editor • Development server
  • 34. Jasmine • Jasmine http://pivotal.github.com/jasmine/ • Does not depend on any other JS framework Client side Architecture • Does not require a DOM • Given, When, Then syntax • Works on windows 8!
  • 35. Tool up • BDD / TDD • Grunt • Sublime Text Editor • Development server
  • 36. Grunt • grunt http://gruntjs.com/ • Requires Node – install using npm grunt • Provides the ability for developers to have a pseudo compilation mechanism • MSBuild analogy where by developers can create a script that performs a series of actions
  • 37. Grunt Build Script • Run tests • JSHint code • http://www.jshint.com/ • Uglification / Compression of code • https://github.com/mishoo/UglifyJS • Bundling of code ready for deployment
  • 38. Tool up • BDD / TDD • Grunt • Sublime Text Editor • Development server
  • 39. Sublime text editor • Nuget style package management console • Support for backbone snippets • Support for jQuery snippets • Supports grunt build files • Supports jshint configuration
  • 40. Tool up • BDD / TDD • Grunt • Sublime Text Editor • Development server
  • 41. Web Matrix • Local Server for running web apps • Awesome for deployment to Azure • Has its own editor
  • 42. Backbone view Events Models Collections router events Views Routers collection model http://backbonejs.org/ events
  • 43. Router • Provides methods for routing client-side pages, and connecting them to actions and events • Until recently, hash fragments (#page) were used to provide these permalinks, but with the arrival of the History API, it's now possible to use standard URLs (/page) • For browsers which don't yet support the History API, the Router handles graceful fallback and transparent translation to the fragment version of the URL
  • 44. Router var Workspace = Backbone.Router.extend({ routes: { "help": "help", // #help "search/:query": "search", // #search/kiwis "search/:query/p:page": "search" // #search/kiwis/p7 }, help: function() {}, search: function(query, page) {} });
  • 45. Events • Events is a module that can be mixed into any object • Provides the ability to bind and trigger custom named events • Normally used in the view so that it can update when our model changes this.model.on("destroy", this.close, this); this.model.on(“reset”, this.addAll, this); this.model.on(“add”, this.addOne, this);
  • 46. Models • Models are at the heart of any js app • Models contain interactive data as well as a large part of the logic surrounding it • Models are databound to the html • Models can also be extended to help contain common functionality • By convention the initialise function gets called with the arguments passed into the constructor
  • 47. Collections • Collections are ordered sets of models • Bind “change” events to be notified when any model in the collection has been modified • Common change events to listen for  Add  Remove
  • 48. Collections Fetch() • Call to populate collection with data
  • 49. Collections Sync(crud method, model, options callback) • CRUD – Create, Read, Update or Delete • Model – Model to be operated on • Options – callbacks success and error
  • 50. Collections CRUD to REST • Create -> POST /collection • Read -> GET /collection[id] • Update -> PUT /collection/id • Delete -> DELETE /collection/id
  • 51. Views • More convention than they are code • They don't determine anything about your HTML or CSS for you, and can be used with any JavaScript templating library • Organize your interface into logical views, backed by models, each of which can be updated independently when the model changes, without having to redraw the page • Bind your view's render function to the model's "change" event and now everywhere that model data is displayed in the UI, it is always immediately up to date
  • 52. Backbone view router events collection model events
  • 53. MVVM view View events model collection model events
  • 54. Underscore • http://underscorejs.org/ • 80 odd helper functions • Works seamlessly with jQuery and Backbone • Provides the ability to shape data similar to how we would use linq or lambda in .net • Provides the ability to add script into our html templates
  • 55. Underscore Shaping data • each • map • where • sortBy, groupBy
  • 56. Underscore Templating Works in the same way as other templating frameworks <td> <%= typeof(model.get("foo")) !== 'undefined' ? model.get("foo").toPrecision(4) : '' %> </td>
  • 57. Putting it all together
  • 58. events dom layout view manager router events web local request storage collection model pagination events
  • 60. Web Request Initialise App Router Collection Layout Fetch data Render Page View Manager Populate Notify UI that Sync On success Collection data changed Render View
  • 61. Web app • News reader – uses Guardian API • Router / Models / Views • Pagination • Local Storage • View Management
  • 62. Main layout Section List Section List Item Main.html View View section/list.html section/item.html Section Header View Story List View section/header.html story/list.html Story List Item View story/item.html
  • 63. <div class="nav-collapse sectionListView"></div> <div id="sectionHeaderView" class="hero-unit sectionHeaderView"></div> Section List View <div id="storyListView" class="storyListView"></div> Main layout section/list.html Main.html <ul class="nav"></ul> Section List Item View <a href="<%= model.get("id") %>"> section/item.html <%= typeof(model.get("webTitle")) !== 'undefined' ? model.get("webTitle") : '' %> </a> <span> <%= typeof(model.get("webTitle")) !== 'undefined' ? model.get("webTitle") : '' %> </span> Section Header View section/header.html Story List View story/list.html Story List Item View story/item.html
  • 64. <div class="nav-collapse sectionListView"></div> <div id="sectionHeaderView" class="hero-unit sectionHeaderView"></div> Section List View <div id="storyView" class="storyView"></div> Story layout section/list.html story.html Section List Item View section/item.html Section Header View Story List View section/header.html story/list.html <p><img width="20%" src="<%= model.get('fields').thumbnail %>" type="" media=""></p> <h1><%= model.get("fields").headline %></h1> <div style="columns:100px 2; -webkit-columns:100px 2; -moz-columns:100px 2;"> <p><%= model.get("fields").body %></> </div>
  • 66. Winjs • Provides access to winrt interfaces via javascript • Uses the chakra engine same engine used in IE10 • Introduces some rather desirable programming concepts such as namespaces, data binding, background tasks and more • Builds on ECMA script 5 such as promises
  • 67. Winjs and backbone • Use backbone for all our data • Use winjs as our UI Framework • Ability to integrate and weave the backbone types into winjs binding list types • Ability to abstract backbone implementation behind more complex winjs implementations
  • 68. Putting it all together
  • 69. events dom view events navigation binding list events app local load storage collection model pagination events
  • 71. App Load Initialise App Navigation Collection Render Process Fetch data View Fragment Fragment Populate Convert to Sync On success Collection Binding List Render Notify UI that Fragment data changed
  • 72. Winjs app • Reader port to windows 8 • Changes to note  Change in User Experience impacts how and what data needs to be displayed  Removal views (css, html and js) and replaced with winjs ui controls  Replacing jQuery $Ajax with winjs xhr  Replacing router with winjs navigation  Extending data list source to be used in conjunction with Backbone collection
  • 74. Looking back • Overview of some useful js frameworks that allow us to create maintainable client side apps in js/html/css • Building on our experiences with xaml and .net, databinding, composite UI and separation of view model controller designs • Ability to reuse underpinning modules in browser and win8
  • 75. Looking forwards • Improvements in the frameworks and plugins • Improvements in scaffolding for building apps • Better tools to help manage larger client side apps • Better support for winjs binding list • Better support for jQuery