Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Backbone JS - Journey to the Front End [Dev Nexus Conference]

Brian Mann
February 18, 2013

Backbone JS - Journey to the Front End [Dev Nexus Conference]

I gave this talk Feb 18th, 2013 at Dev Nexus as an introduction to Backbone.js
http://www.devnexus.com/s/presentations#id-1481

Moving logic to the client unlocks unlimited potential, but is a challenging endeavor. In this talk we’ll be covering the use cases for Backbone, and show real world examples. We’ll be covering the tenets of client side MVC development, and what tools and resources you need on the server to make this possible, especially when deploying to production. We’ll also get to see how development with a framework like Backbone changes your applications’ workflow, and we’ll be diving into some of those approaches typical in day to day development.

You should walk away knowing:

Backbone’s role, when to use it, and how it works
Typical challenges you’ll need to overcome
What server side tools are a necessity
Where to go from here

Skill Level: Beginner

For videos and screencasts visit:
http://www.backbonerails.com

Brian Mann

February 18, 2013
Tweet

More Decks by Brian Mann

Other Decks in Programming

Transcript

  1. BACKBONE JS { Journey to the Front End } Brian

    Mann @backbonerails BackboneRails.com
  2. Backbone JS: Journey to the Front End BACKBONERAILS.com • Web

    Application Developer ‣ Backbone / Ruby on Rails • Scaling Our Project ‣ Totals about 600 JS files ‣ Close to 80 different JS modules ‣ 120+ server models ‣ Entirely Single Page • Published Screencasts ‣ Chronicles development patterns A Little Perspective
  3. Backbone JS: Journey to the Front End BACKBONERAILS.com • Introduces

    the building blocks of MVC frameworks • Manages the complexity of front end logic • Provides the structural components for organizing ‣ Presentation ‣ Behavior ‣ Implementation • Keeps view changes in sync • Eliminates unmanageable spaghetti code Key Points
  4. Backbone JS: Journey to the Front End BACKBONERAILS.com • Powered

    by RESTful JSON API • Low Profile ‣ Unopinionated ‣ Leaves implementation up to the developer • Small Set of Documentation • Huge Success Record ‣ Major players using it in production • Awesome Community Support Tenets of Backbone
  5. Stateless Servers before 2005 http://www.serversrule.com/ <html> <head> <title>Best Page in

    the Universe</title> </head> <body> <div id="header"> <ul> <li> <a href="link1">Link 1</a> </li> <li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main">Home Page Content</div> </body> </html>
  6. Stateless Servers http://www.serversrule.com/link1 before 2005 <html> <head> <title>Best Page in

    the Universe</title> </head> <body> <div id="header"> <ul> <li class="active"> <a href="link1">Link 1</a> </li> <li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main">Link 1 - Content</div> </body> </html>
  7. Stateless Servers http://www.serversrule.com/link1 before 2005 <html> <head> <title>Best Page in

    the Universe</title> </head> <body> <div id="header"> <ul> <li class="active"> <a href="link1">Link 1</a> </li> <li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main">Link 1 - Content</div> </body> </html>
  8. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1
  9. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1
  10. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1 <html> <head> <title>Best Page in the Universe</title> </head> <body> <div id="header"> <ul> <a href="link1">Link 1</a> </li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main"> </div> </body> </html> <li class="active"> <li> Link 1 - Content
  11. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1 <html> <head> <title>Best Page in the Universe</title> </head> <body> <div id="header"> <ul> <a href="link1">Link 1</a> </li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main"> </div> </body> </html> <li class="active"> <li> Link 1 - Content
  12. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1 <html> <head> <title>Best Page in the Universe</title> </head> <body> <div id="header"> <ul> <a href="link1">Link 1</a> </li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main"> </div> </body> </html> <li class="active"> <li>
  13. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1 <html> <head> <title>Best Page in the Universe</title> </head> <body> <div id="header"> <ul> <a href="link1">Link 1</a> </li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main"> </div> </body> </html> <li class="active"> <li> Link 2 - Content
  14. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1 <html> <head> <title>Best Page in the Universe</title> </head> <body> <div id="header"> <ul> <a href="link1">Link 1</a> </li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main"> </div> </body> </html> <li class="active"> <li> Link 2 - Content
  15. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1 <html> <head> <title>Best Page in the Universe</title> </head> <body> <div id="header"> <ul> <a href="link1">Link 1</a> </li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main"> </div> </body> </html> <li> Link 2 - Content
  16. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1 <html> <head> <title>Best Page in the Universe</title> </head> <body> <div id="header"> <ul> <a href="link1">Link 1</a> </li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main"> </div> </body> </html> <li> <li> Link 2 - Content
  17. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1 <html> <head> <title>Best Page in the Universe</title> </head> <body> <div id="header"> <ul> <a href="link1">Link 1</a> </li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main"> </div> </body> </html> <li> <li> Link 2 - Content
  18. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1 <html> <head> <title>Best Page in the Universe</title> </head> <body> <div id="header"> <ul> <a href="link1">Link 1</a> </li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main"> </div> </body> </html> <li> Link 2 - Content
  19. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1 <html> <head> <title>Best Page in the Universe</title> </head> <body> <div id="header"> <ul> <a href="link1">Link 1</a> </li> <a href="link2">Link 2</a> </li> <li> <a href="link3">Link 3</a> </li> </ul> </div> <div id="main"> </div> </body> </html> <li> <li class="active"> Link 2 - Content
  20. before 2005 Stateless Servers http://www.serversrule.com/link1 Link 1 - Content Heavy

    AJAX Use 2006 - 2009 My Awesome Site Link 3 | Link 2 | Link 1
  21. Stateless Servers before 2005 http://www.serversrule.com/link1 My Awesome Site Link 1

    Link 3 | Link 2 | Link 2 - Content Heavy AJAX Use 2006 - 2009
  22. Stateless Servers before 2005 http://www.serversrule.com/link1 My Awesome Site Link 1

    Link 3 | Link 2 | Link 2 - Content Heavy AJAX Use 2006 - 2009
  23. Stateless Servers before 2005 http://www.serversrule.com/link1 My Awesome Site Link 1

    Link 3 | Link 2 | Link 2 - Content Heavy AJAX Use 2006 - 2009 Modern MVC 2010 - now
  24. Stateless Servers before 2005 http://www.serversrule.com/link1 My Awesome Site Link 1

    Link 3 | Link 2 | Link 2 - Content Heavy AJAX Use 2006 - 2009 Modern MVC 2010 - now <Links Collection> Models: [ {name: “Link1”, active: false}, {name: “Link2”, active: true}, {name: “Link3”, active: false} ]
  25. Stateless Servers before 2005 http://www.serversrule.com/link1 My Awesome Site Link 1

    Link 3 | Link 2 | Link 2 - Content Heavy AJAX Use 2006 - 2009 Modern MVC 2010 - now Object { ... type=”click” .. } <Links Collection> Models: [ {name: “Link1”, active: false}, {name: “Link2”, active: true}, {name: “Link3”, active: false} ]
  26. Stateless Servers before 2005 http://www.serversrule.com/link1 My Awesome Site Link 1

    Link 3 | Link 2 | Link 2 - Content Heavy AJAX Use 2006 - 2009 Modern MVC 2010 - now Object { ... type=”click” .. } <Links Collection> Models: [ {name: “Link1”, active: false}, {name: “Link2”, active: true}, {name: “Link3”, active: false} ] 1. Capture event, prevent default action 2. Call method on model to set {active: true} 3. Fires event which causes previously selected <li> to deselect itself - and current <li> to select itself <li class=”active”>...</li> 4. Let our managing controller know this click event has occurred 5. Controller decides what the next action should be
  27. Backbone JS: Journey to the Front End BACKBONERAILS.com • Entities

    ‣ Models ‣ Collections Backbone Components
  28. Backbone JS: Journey to the Front End BACKBONERAILS.com • Entities

    ‣ Models ‣ Collections Backbone Components User firstName: lastName: Brian Mann fullName() save() Model
  29. Backbone JS: Journey to the Front End BACKBONERAILS.com • Entities

    ‣ Models ‣ Collections Backbone Components User firstName: lastName: Brian Mann fullName() save() Model
  30. Backbone JS: Journey to the Front End BACKBONERAILS.com • Entities

    ‣ Models ‣ Collections Backbone Components User firstName: lastName: Brian Mann fullName() save() Model
  31. Backbone JS: Journey to the Front End BACKBONERAILS.com • Entities

    ‣ Models ‣ Collections Backbone Components User firstName: lastName: Brian Mann fullName() save() Name When This Event Triggers change when any model attributes have changed change:[attribute] when a specific attribute has changed destroy when a model is destroyed sync when a model has successfully synced with the server error when a model’s save call fails on the server invalid when a models validations fails on the client Model Events
  32. Backbone JS: Journey to the Front End BACKBONERAILS.com • Entities

    ‣ Models ‣ Collections Backbone Components User User Collection User User User User
  33. Backbone JS: Journey to the Front End BACKBONERAILS.com • Entities

    ‣ Models ‣ Collections Backbone Components User User Collection Events User User User User Name When This Event Triggers add when a model is added to the collection remove when a model is removed from a collection reset when the collection’s entire contents have been replaced sort when the collection has been re-sorted request when a collection has started to request to the server sync when a collection has been successfully synced with the server
  34. Backbone JS: Journey to the Front End BACKBONERAILS.com • Views

    ‣ usually paired with a model or collection ‣ given a template (a chunk of HTML) ‣ responsible for rendering + responding to model/collection events Backbone Components • Entities ‣ Models ‣ Collections
  35. Backbone JS: Journey to the Front End BACKBONERAILS.com • Views

    ‣ usually paired with a model or collection ‣ given a template (a chunk of HTML) ‣ responsible for rendering + responding to model/collection events • Routers ‣ listen for and react to client side URLs Backbone Components • Entities ‣ Models ‣ Collections
  36. Backbone JS: Journey to the Front End BACKBONERAILS.com • Views

    ‣ usually paired with a model or collection ‣ given a template (a chunk of HTML) ‣ responsible for rendering + responding to model/collection events • Routers ‣ listen for and react to client side URLs Backbone Components • Entities ‣ Models ‣ Collections Z http://www.app.com/#users
  37. Backbone JS: Journey to the Front End BACKBONERAILS.com • Views

    ‣ usually paired with a model or collection ‣ given a template (a chunk of HTML) ‣ responsible for rendering + responding to model/collection events • Routers ‣ listen for and react to client side URLs • Events Backbone Components • Entities ‣ Models ‣ Collections
  38. http://www.app.com/#users/1/edit Edit Profile Name Age Stanley Kubrick 70 cancel Gender

    male female Save Hi, Stanley Kubrick Email [email protected] Friends 1. Malcolm McDowell 2. Arthur C. Clarke 3. Peter Sellers x x x add new friend... +
  39. http://www.app.com/#users/1/edit Edit Profile Name Age Stanley Kubrick 70 cancel Gender

    male female Save Hi, Stanley Kubrick Email [email protected] Friends 1. Malcolm McDowell 2. Arthur C. Clarke 3. Peter Sellers x x x add new friend... + View
  40. http://www.app.com/#users/1/edit Edit Profile Name Age Stanley Kubrick 70 cancel Gender

    male female Save Hi, Stanley Kubrick Email [email protected] Friends 1. Malcolm McDowell 2. Arthur C. Clarke 3. Peter Sellers x x x add new friend... + View Model Template
  41. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "Stanley Kubrick",

    "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] }
  42. <div id=”user”>Hi, Stanley Kubrick</div> { "id": 1, "picture": "images/user_1.png", "age":

    70, "name": "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] }
  43. <div id=”user”>Hi, Stanley Kubrick</div> <a href=”mailto:[email protected]”> Email Stanley </a> {

    "id": 1, "picture": "images/user_1.png", "age": 70, "name": "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] }
  44. <div id=”user”>Hi, Stanley Kubrick</div> <a href=”mailto:[email protected]”> Email Stanley </a> <div

    id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] }
  45. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "gender": "male",

    "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } "Stanley Kubrick", <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Stanley Kubrick</div>
  46. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "gender": "male",

    "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Stanley Kubrick</div>
  47. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "gender": "male",

    "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } "Paul Thomas Anderson", <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Stanley Kubrick</div>
  48. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "gender": "male",

    "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } "Paul Thomas Anderson", <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Stanley Kubrick</div>
  49. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "gender": "male",

    "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } "Paul Thomas Anderson", <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div>
  50. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "gender": "male",

    "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } "Paul Thomas Anderson", <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div>
  51. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "Stanley Kubrick",

    "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> "[email protected]",
  52. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "Stanley Kubrick",

    "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> "[email protected]",
  53. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "Stanley Kubrick",

    "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div>
  54. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "Stanley Kubrick",

    "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> "[email protected]",
  55. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "Stanley Kubrick",

    "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } <a href=”mailto:[email protected]”> Email Stanley </a> <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> "[email protected]",
  56. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "Stanley Kubrick",

    "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> "[email protected]",
  57. { "id": 1, "picture": "images/user_1.png", "age": 70, "name": "Stanley Kubrick",

    "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "address": "Hertfordshire England", "friends": [ { "id": 1, "name": "Malcolm McDowell" }, { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> "[email protected]", <a href=”mailto:[email protected]”> Email Paul </a>
  58. ] } { "id": 1, "picture": "images/user_1.png", "age": 70, "name":

    "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": , "name": } "Malcolm McDowell" , { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } 1 <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> <a href=”mailto:[email protected]”> Email Paul </a>
  59. ] } { "id": 1, "picture": "images/user_1.png", "age": 70, "name":

    "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": , "name": } "Malcolm McDowell" , { "id": 2, "name": "Arthur C. Clarke" }, { "id": 3, "name": "Peter Sellers" } ] } 1 <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> <a href=”mailto:[email protected]”> Email Paul </a>
  60. ] } { "id": 1, "picture": "images/user_1.png", "age": 70, "name":

    "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": , "name": } "Malcolm McDowell" ] } 1 <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> <a href=”mailto:[email protected]”> Email Paul </a>
  61. ] } { "id": 1, "picture": "images/user_1.png", "age": 70, "name":

    "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": , "name": } ] } <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> <a href=”mailto:[email protected]”> Email Paul </a>
  62. ] } { "id": 1, "picture": "images/user_1.png", "age": 70, "name":

    "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": , "name": } "Daniel Day Lewis" ] } 4 <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> <a href=”mailto:[email protected]”> Email Paul </a>
  63. ] } { "id": 1, "picture": "images/user_1.png", "age": 70, "name":

    "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": , "name": } "Daniel Day Lewis" ] } 4 <div id=”friends”> <span id=”count”>You have 3 friends:</span> <ul> <li>Malcolm McDowell</li> <li>Arthur C. Clarke</li> <li>Peter Sellers</li> </ul> </div> <div id=”user”>Hi, Paul Thomas Anderson</div> <a href=”mailto:[email protected]”> Email Paul </a>
  64. ] } { "id": 1, "picture": "images/user_1.png", "age": 70, "name":

    "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": , "name": } "Daniel Day Lewis" ] } 4 <div id=”user”>Hi, Paul Thomas Anderson</div> <a href=”mailto:[email protected]”> Email Paul </a>
  65. ] } { "id": 1, "picture": "images/user_1.png", "age": 70, "name":

    "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": , "name": } "Daniel Day Lewis" ] } 4 <div id=”user”>Hi, Paul Thomas Anderson</div> <a href=”mailto:[email protected]”> Email Paul </a> <div id=”friends”> <span id=”count”>You have 1 friend:</span> <ul> <li>Daniel Day Lewis</li> </ul> </div>
  66. ] } { "id": 1, "picture": "images/user_1.png", "age": 70, "name":

    "Stanley Kubrick", "gender": "male", "company": "MGM", "phone": "832-547-3983", "email": "[email protected]", "address": "Hertfordshire England", "friends": [ { "id": , "name": } "Daniel Day Lewis" ] } 4 <div id=”user”>Hi, Paul Thomas Anderson</div> <a href=”mailto:[email protected]”> Email Paul </a> <div id=”friends”> <span id=”count”>You have 1 friend:</span> <ul> <li>Daniel Day Lewis</li> </ul> </div>
  67. [{ id: 1, name: "Doctors Appt", where: "Dentist", date: "02-02-2013",

    time_start: "2:00pm", time_end: "3:00pm" },{ id: 2, name: "Ruby Meetup", where: "Centergy Bld", date: "02-13-2013", time_start: "7:00pm", time_end: "9:00pm" },{ id: 3, name: where: date: "02-14-2013", time_start: time_end: },{ id: 4, name: "Visit Vet", where: "Avian Center", date: "02-24-2013", time_start: "10:00am", time_end: "11:00am" }] "Buy Flowers!", null, null, null Event
  68. [{ id: 1, name: "Doctors Appt", where: "Dentist", date: "02-02-2013",

    time_start: "2:00pm", time_end: "3:00pm" },{ id: 2, name: "Ruby Meetup", where: "Centergy Bld", date: "02-13-2013", time_start: "7:00pm", time_end: "9:00pm" },{ id: 3, name: "Chocolate", where: "Walmart", date: "02-14-2013", time_start: "5:00pm", time_end: "6:00pm" },{ id: 4, name: "Visit Vet", where: "Avian Center", date: "02-24-2013", time_start: "10:00am", time_end: "11:00am" }] Event
  69. [{ id: 1, name: "Doctors Appt", where: "Dentist", date: "02-02-2013",

    time_start: "2:00pm", time_end: "3:00pm" },{ id: 2, name: "Ruby Meetup", where: "Centergy Bld", date: "02-13-2013", time_start: "7:00pm", time_end: "9:00pm" },{ id: 3, name: "Chocolate", where: "Walmart", date: "02-14-2013", time_start: "5:00pm", time_end: "6:00pm" },{ id: 4, name: "Visit Vet", where: "Avian Center", date: "02-24-2013", time_start: "10:00am", time_end: "11:00am" }] Event
  70. [{ id: 1, name: "Doctors Appt", where: "Dentist", date: "02-02-2013",

    time_start: "2:00pm", time_end: "3:00pm" },{ id: 2, name: "Ruby Meetup", where: "Centergy Bld", date: "02-13-2013", time_start: "7:00pm", time_end: "9:00pm" },{ id: 3, name: "Chocolate", where: "Walmart", date: "02-14-2013", time_start: "5:00pm", time_end: "6:00pm" },{ id: 4, name: "Visit Vet", where: "Avian Center", date: "02-24-2013", time_start: "10:00am", time_end: "11:00am" }] Event
  71. Server Client M V JSON JSON C M C V

    <div id="header-region"></div> <div id="main-region"></div> <div id="footer-region"></div> <%= javascript_tag do %> $(function() { App.start(); }); <% end %>
  72. Backbone JS: Journey to the Front End BACKBONERAILS.com • JSON

    Generation • Bootstrapping Data • Dependency Management ‣ Folder / File Conventions ‣ Ensuring JS files load in the correct order • Environment Optimizations ‣ Concatenation ‣ Minification / Obfuscation • Precompiled JST Strategy The Backbone of Backbone
  73. https://github.com/nesquena/rabl ## models/user.rb class User < ActiveRecord::Base has_many :posts attr_accessible

    :first_name, :last_name def full_name "#{first_name} #{last_name}" end end Rabl
  74. https://github.com/nesquena/rabl ## models/user.rb class User < ActiveRecord::Base has_many :posts attr_accessible

    :first_name, :last_name def full_name "#{first_name} #{last_name}" end end Rabl ## views/users/index.json.rabl collection @users attributes :id, :first_name, :last_name, :full_name, :date_created node do |user| { :date_created_formatted => user.date_created.to_s(:db), :date_created_ago => time_ago_in_words(user.date_created) } end child :posts do attributes :id, :title, :body end
  75. https://github.com/nesquena/rabl ## models/user.rb class User < ActiveRecord::Base has_many :posts attr_accessible

    :first_name, :last_name def full_name "#{first_name} #{last_name}" end end Rabl ## views/users/index.json.rabl collection @users attributes :id, :first_name, :last_name, :full_name, :date_created node do |user| { :date_created_formatted => user.date_created.to_s(:db), :date_created_ago => time_ago_in_words(user.date_created) } end child :posts do attributes :id, :title, :body end [{ id: 1, first_name: "Brian", last_name: "Mann", full_name: "Brian Mann", date_created: "2013-02-02T18:35:35.511", date_created_formatted: "2013-02-02 1:35:35", date_created_ago: "about 2 weeks", posts: [{ id: 100, title: "BackboneRails Released!", body: "go download them.", }] },{ id: 2, first_name: "Jennifer", last_name: "Shehane", full_name: "Jennifer Shehane", date_created: "2013-02-10T22:13:46.245", date_created_formatted: "2013-02-10 5:13:46", date_created_ago: "3 days", posts: [{ id: 101, title: "You misspelled ‘tenants’ in Ep02", body: "should be ‘tenets’", },{ id: 102, title: "Uhhh.....", body: "It is misspelled on every single slide :D", }] }]
  76. Making Data Available on Load <head> ... <script> window.gon =

    {}; gon.current_user = { "first_name":"Brian", "last_name":"Mann", "account_id":1, "user_id":1013, "is_admin":true }; </script> ... </head>
  77. 1. Dependency Management //= require jquery //= require lib/underscore //=

    require lib/backbone //= require lib/marionette //= require_tree ./backbone/config //= require backbone/app //= require_tree ./backbone/entities //= require_tree ./backbone/mixins //= require_tree ./backbone/views //= require_tree ./backbone/components //= require_tree ./backbone/apps
  78. 1. Dependency Management //= require jquery //= require lib/underscore //=

    require lib/backbone //= require lib/marionette //= require_tree ./backbone/config //= require backbone/app //= require_tree ./backbone/entities //= require_tree ./backbone/mixins //= require_tree ./backbone/views //= require_tree ./backbone/components //= require_tree ./backbone/apps
  79. 1. Dependency Management //= require jquery //= require lib/underscore //=

    require lib/backbone //= require lib/marionette //= require_tree ./backbone/config //= require backbone/app //= require_tree ./backbone/entities //= require_tree ./backbone/mixins //= require_tree ./backbone/views //= require_tree ./backbone/components //= require_tree ./backbone/apps
  80. 1. Dependency Management //= require jquery //= require lib/underscore //=

    require lib/backbone //= require lib/marionette //= require_tree ./backbone/config //= require backbone/app //= require_tree ./backbone/entities //= require_tree ./backbone/mixins //= require_tree ./backbone/views //= require_tree ./backbone/components //= require_tree ./backbone/apps
  81. 1. Dependency Management //= require jquery //= require lib/underscore //=

    require lib/backbone //= require lib/marionette //= require_tree ./backbone/config //= require backbone/app //= require_tree ./backbone/entities //= require_tree ./backbone/mixins //= require_tree ./backbone/views //= require_tree ./backbone/components //= require_tree ./backbone/apps
  82. 2. Concatenation Development <script src="/assets/jquery.js?body=1" type="text/javascript"></script> <script src="/assets/lib/underscore.js?body=1" type="text/javascript"></script> <script

    src="/assets/lib/backbone.js?body=1" type="text/javascript"></script> <script src="/assets/lib/marionette.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/config/marionette/renderer.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/app.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/entities/_base/collections.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/entities/_base/models.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/entities/header.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/apps/footer/footer_app.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/apps/footer/show/show_controller.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/apps/footer/show/show_view.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/apps/header/header_app.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/apps/header/list/list_controller.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/apps/header/list/list_view.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/apps/header/list/templates/_header.js?body=1" type="text/javascript"></script> <script src="/assets/backbone/apps/header/list/templates/headers.js?body=1" type="text/javascript"></script> <script src="/assets/application.js?body=1" type="text/javascript"></script>
  83. 3. Minification / Obfuscation (function(e,t){function P(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:e.nodeType===1&&t?!0:n==="array"||n!=="function"&&(t===0||typeof t=="number"&&t>0&&t-1 in

    e)}function B(e){var t=H[e]={};return b.each(e.match(E)||[],function(e,n){t[n]=!0}),t}function I(e,n,r,i){if(!b.acceptData(e))return;var s,o,u=b.expando,a=typeof n=="string",f=e.nodeType,c=f?b.cache:e,h=f?e[u]:e[u]&&u;if((!h||!c[h]||!i&&!c[h].data)&&a&&r===t)return;h||(f?e[u]=h=l.pop()||b.guid+ +:h=u),c[h]||(c[h]={},f||(c[h].toJSON=b.noop));if(typeof n=="object"||typeof n=="function")i?c[h]=b.extend(c[h],n):c[h].data=b.extend(c[h].data,n);return s=c[h],i|| (s.data||(s.data={}),s=s.data),r!==t&&(s[b.camelCase(n)]=r),a?(o=s[n],o==null&&(o=s[b.camelCase(n)])):o=s,o}function q(e,t,n){if(!b.acceptData(e))return;var r,i,s,o=e.nodeType,u=o?b.cache:e,a=o?e[b.expando]:b.expando;if(!u[a])return;if(t){s=n?u[a]:u[a].data;if(s){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in s?t=[t]: (t=b.camelCase(t),t in s?t=[t]:t=t.split(" "));for(r=0,i=t.length;r<i;r++)delete s[t[r]];if(!(n?U:b.isEmptyObject)(s))return}}if(!n){delete u[a].data;if(!U(u[a]))return}o? b.cleanData([e],!0):b.support.deleteExpando||u!=u.window?delete u[a]:u[a]=null}function R(e,n,r){if(r===t&&e.nodeType===1){var i="data-"+n.replace(F,"- $1").toLowerCase();r=e.getAttribute(i);if(typeof r=="string"){try{r=r==="true"?!0:r==="false"?!1:r==="null"?null:+r+""===r?+r:j.test(r)?b.parseJSON(r):r}catch(s){} b.data(e,n,r)}else r=t}return r}function U(e){var t;for(t in e){if(t==="data"&&b.isEmptyObject(e[t]))continue;if(t!=="toJSON")return!1}return!0}function it(){return!0} function st(){return!1}function ct(e,t){do e=e[t];while(e&&e.nodeType!==1);return e}function ht(e,t,n){t=t||0;if(b.isFunction(t))return b.grep(e,function(e,r){var i=!! t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if(typeof t=="string"){var r=b.grep(e,function(e){return e.nodeType===1});if(at.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function pt(e){var t=dt.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}function Mt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function _t(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified) +"/"+e.type,e}function Dt(e){var t=Ct.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Pt(e,t){var n,r=0;for(;(n=e[r])!=null;r+ +)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function Ht(e,t){if(t.nodeType!==1||!b.hasData(e))return;var n,r,i,s=b._data(e),o=b._data(t,s),u=s.events;if(u) {delete o.handle,o.events={};for(n in u)for(r=0,i=u[n].length;r<i;r++)b.event.add(t,n,u[n][r])}o.data&&(o.data=b.extend({},o.data))}function Bt(e,t){var n,r,i;if(t.nodeType!==1)return;n=t.nodeName.toLowerCase();if(!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}if(n==="script"&&t.text!==e.text)_t(t).text=e.text,Dt(t);else if(n==="object")t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML);else if(n==="input"&&xt.test(e.type))t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value);else if(n==="option")t.defaultSelected=t.selected=e.defaultSelected;else if(n==="input"||n==="textarea")t.defaultValue=e.defaultValue}function jt(e,n){var r,s,o=0,u=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!u)for(u=[],r=e.childNodes||e;(s=r[o])! =null;o++)!n||b.nodeName(s,n)?u.push(s):b.merge(u,jt(s,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],u):u}function Ft(e) {xt.test(e.type)&&(e.defaultChecked=e.checked)}function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--){t=en[i]+n;if(t in e)return t}return r}function nn(e,t){return e=t||e,b.css(e,"display")==="none"||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,s=[],o=0,u=e.length;for(;o<u;o++){r=e[o];if(!r.style)continue;s[o]=b._data(r,"olddisplay"),n=r.style.display,t?(!
  84. 4. CoffeeScript @App.module "UsersApp.List", (List, App, Backbone, Marionette, $, _)

    -> List.Controller = listUsers: -> users = App.request "user:entities" @layout = @getLayoutView() @layout.on "show", => @showPanel users @listUsers users App.mainRegion.show @layout listUsers: (users) -> usersView = @getUsersView users usersView.on "itemview:edit:user", (iv, user) -> App.vent.trigger "edit:user", user @layout.tableRegion.show usersView getUsersView: (users) -> new List.Users collection: users getLayoutView: -> new List.Layout
  85. Backbone JS: Journey to the Front End BACKBONERAILS.com Handling the

    HTML • Templates hold the actual HTML markup • Used just like server side templates ‣ Usually stored as a separate file ‣ Interpolate model/collection properties • Various template languages: ‣ ECO (Embedded Coffeescript) ‣ Handlebars / Mustache ‣ Underscore • Server is responsible for precompiling them
  86. ## users/templates/show.jst.eco <%- @linkTo Routes.user_path(@id), Class: "button button-mini", -> %>

    <i class='icons-user'></i> Show User <% end %> ## users/show.html.erb <%= link_to user_path(@user), class: "button button-mini" do %> <i class='icons-user'></i> Show User <% end %>
  87. ## users/templates/show.jst.eco <%- @linkTo Routes.user_path(@id), Class: "button button-mini", -> %>

    <i class='icons-user'></i> Show User <% end %> ## users/show.html.erb <%= link_to user_path(@user), class: "button button-mini" do %> <i class='icons-user'></i> Show User <% end %> <!-- <a href="users/1" class="button button-mini"> <i class='icons-user'></i> Show User </a> -->
  88. APPLICATION USERS LIST SHOW NEW APPOINTMENTS LIST SHOW NEW LEADS

    LIST SHOW NEW V E V E V E V E V E V E V E V E V E
  89. APPLICATION USERS LIST SHOW NEW APPOINTMENTS LIST SHOW NEW LEADS

    LIST SHOW NEW V E V E V E V E V E V E V E V E V E TEMPLATES
  90. APPLICATION USERS LIST SHOW NEW APPOINTMENTS LIST SHOW NEW LEADS

    LIST SHOW NEW V E V E V E V E V E V E V E V E V E T T T T T T T T T
  91. APPLICATION USERS LIST V E T SHOW V E T

    NEW V E T APPOINTMENTS LIST V E T SHOW V E T NEW V E T LEADS LIST V E T SHOW V E T NEW V E T