jquery on rails the real ones
play

jQuery on Rails (the real ones) by Jonathan Sharp The Challenge - PowerPoint PPT Presentation

jQuery on Rails (the real ones) by Jonathan Sharp The Challenge Rapid web based application development Support multiple server side technologies Easy integration of enterprise data Additionally Provide Consistent user


  1. jQuery on Rails (the real ones) by Jonathan Sharp

  2. The Challenge • Rapid web based application development • Support multiple server side technologies • Easy integration of enterprise data • Additionally Provide • Consistent user experience across all applications • Migrate existing applications • Low cost upgrades 2 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  3. The Scope • Multiple frameworks: Wicket, Struts, JSF, ColdFusion, Servlets • Developers • 450+ developers (primarily Java) • Basic HTML, CSS & JS • Geographically dispersed • Limited Human Factors resources 3 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  4. Outline • Multiple Frameworks • Rapid Prototyping • Enterprise Data 4 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  5. Audience Survey • jQuery Experience? • Beginner • Intermediate • Advanced 5 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  6. The Approaches • Server Side • Consolidate on a single server side framework • XML post processing • Client side library 6 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  7. Existing Tools • Existing Frameworks • ExtJS • Dojo • Prototype/Scriptaculous • jQuery • Tibco GI • GWT 7 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  8. Tool Evaluation Criteria • Developer interface API / education • Legacy application migration • Performance • File size • Licensing • Browser support 8 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  9. The Developer Interface • We put a lot of emphasis on this • Developer demographics / skill sets • Application development workflow • Human Factors / Usability Studies • Implementation team 9 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  10. Jumping In • We selected jQuery • Created a developer centric interface • Just include & use - short learning curve • Component driven 10 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  11. The Component • A component encompasses: • XHTML Markup • Behavior • Enterprise data • Simple XHTML interface • Advanced developer interface 11 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  12. Semantic Markup • Developers insert the following XHTML: • <div class=”groupbox”> <h2>My Groupbox Title</h2> <!-- Groupbox contents --> </div> 12 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  13. Rendered Markup • Component renders: • <div class=”groupbox”> <div><div class=”groupboxTitle”> My Groupbox Title </div></div> <div class=”groupboxContent”> <!-- Groupbox contents --> </div> <div>...</div> </div> 13 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  14. Alternate Markup Style • Developers insert the following XHTML: • <div class=”groupbox” spk:title=”My Groupbox Title”> <!-- Groupbox contents --> </div> 14 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  15. The Architecture • Versioning • Build Process • Publishing Releases • Technical Considerations • Development Environment 15 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  16. Versioning • <Product Version>.<major>.<minor> • Example: 2.1.4, 2.2.4 • Major & Minor Releases • Major release requires an application change & may break backwards compatibility, url change • Minor releases are transparent to applications, no url change 16 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  17. URL Versioning • Minor release 2.1.5 /product/2.1/product.js 2.1.6 /product/2.1/product.js • Major release 2.2.3 /product/2.2/product.js 17 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  18. Build Process • Apache Ant build.xml • JS Lint • YUI Compressor (JS & CSS) • PNG Crush 18 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  19. Technical Considerations • File size / load impact • JS pack vs. min • Caching • XHTML Transitional doctype • Require JavaScript to be enabled • Browser support: IE6+, FF2+, Safari 19 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  20. Development Environment • Firefox / Firebug • IE & script debugging • SVN for source versioning • J2EE servlets for Ajax calls (WebLogic) 20 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  21. The Component • Identified by CSS class • <div class=”component”></div> • Component initializes on page load • Initialization may also occur by calling Project.init(‘#id’) 21 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  22. Custom Attributes & Namespace • Developed using namespaced attributes • <div spk:attr=”value”> • HTML5 provides “data” attributes • <div data-attr=”value”> 22 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  23. Developer API & Interface • Basic • XHTML Only, no need to write JavaScript • Advanced • Add additional behavior with JavaScript 23 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  24. Developer API & Interface • <div id=”gb” class=”groupbox”> • $(‘#gb’) .bind(‘groupboxExpand’, function() { alert(‘Groupbox expanded!’); }); 24 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  25. Unobtrusive JavaScript • Behavioral separation • <div onclick=”...”></div> • <div id=”component”></div> • $(‘#component’).bind(‘click’, function() { ... }); • Progressive rendering • <div class=”groupbox”> <h1>Groupbox Title</h1> ... </div> 25 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  26. The Life of a Page • HTTP Request is made for page • Page requests /spike/2.1/spike.css • Page requests /spike/2.1/spike.js 26 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  27. The Event Cycle • jQuery $(document).ready(callback) is executed • Trigger user space “before” ready event • Component initialization • Transform the DOM • Add behaviors • Trigger user space ready event 27 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  28. Components In Action • Application Template • Groupbox • Tooltip 28 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  29. Outline • Multiple Frameworks • Rapid Prototyping • Enterprise Data 29 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  30. Prototyping The UI • Increasing Productivity • Workflow • Requirements • Prototype interface • Implementation • Cost of making changes is low • Developers focus on areas of expertise 30 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  31. Prototyping The UI • Initial Human Factors prototype • Usability study / customer review • Handoff to application team for implementation • Reuse XHTML with Wicket, ColdFusion, etc. 31 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  32. Outline • Multiple Frameworks • Rapid Prototyping • Enterprise Data 32 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  33. Enterprise Data • UI team develops JSON servlets that talk to XMF/ESB web services (SOA architecture) • Application teams gain benefits without having to add JAR’s or 3rd party components • Client side becomes point of aggregation 33 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  34. Data Caching / Offline • Distribute data to the client • Take advantage of tools such as Google Gears for client side caching • Increases client side performance, distribution of load 34 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  35. Performance Tips • DOM Manipulation • Consider DOM DocumentFragment http://ejohn.org/blog/dom-documentfragments/ • Cache Node References • Take advantage of the jQuery.data() function to solve expando issues • $(‘#myID’).data(‘rows’, row1,row2,...,n]); 35 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  36. Performance Tips • Tune jQuery Selectors • Late event binding • Bind click event using mouseover event • Use event delegation 36 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  37. Dynamic Transformations • On DOM Insert / Update events • Dynamically initialize components 37 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  38. The UI With Canvas • Move towards rendering components using Canvas • MooTools - Mocha UI http://mochaui.com/demo/ 38 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  39. Audience Response • Questions ? 39 The Ajax Experience 2008 - jQuery on Rails (the real ones)

  40. Thank you! Links & Additional Resources http://outwestmedia.com/TAE/ Jonathan Sharp jdsharp@outwestmedia.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