jquery mobile deep dive

Post on 08-May-2015

1.922 Views

Category:

Technology

5 Downloads

Preview:

Click to see full reader

DESCRIPTION

jQuery Mobile Deep Dive shows you how to create single page web apps that look and behave like native ones. We use JavaScript and open source libraries like jQuery, underscore, and backbone. And explore advanced topics like unit testing and performance optimization.

TRANSCRIPT

jQuery MobileDeep Dive

7 September 2013Culver City, California USA

Saturday, September 7, 13

Google MapsFull Throttle

• Learn the tips and tricks of the world’s premier mapping app

• 21 September 2013

• Irvine, California USA

• http://bit.ly/156Mr5C

Saturday, September 7, 13

Want more? Follow me for more tutorials and source code.@therockncoder

Saturday, September 7, 13

Source code for my tutorials hosted on GitHub @

https://github.com/Rockncoder

Saturday, September 7, 13

Before We Begin

• This class will move fast

• The source code is yours to keep

• The slides are available for download

Saturday, September 7, 13

What Are We Going To Do?

We are going to learn about jQuery Mobile by examining a working application. We aren’t going to decompose each line of code, instead we will examine each major area of

functionality.

Saturday, September 7, 13

Coffee Coffee+

• jQuery Mobile

• Backbone

• Responsive Design

• Templates

Saturday, September 7, 13

jQuery &jQuery Mobile

• jQuery 1.9.x

• jQuery Mobile 1.3.2

• released on July 19th

• jQuery Mobile 1.4 which will support jQuery 2.0, coming soon

Saturday, September 7, 13

Memory Management

Saturday, September 7, 13

Memory Management Tips

• Globals are bad

• Use functions for information hiding

Saturday, September 7, 13

Globals are bad

• Try to use only one global variable

• Remember: JS objects can be modified at runtime

• Use var app = app || {};

Saturday, September 7, 13

Information Hiding

• JS lacks classes or other information

• One alternative is to wrap code in anonymous functions

Saturday, September 7, 13

Performance Optimization

Saturday, September 7, 13

The fastest code is the code which is never

run.

Saturday, September 7, 13

Performance Optimization

• JavaScript

• jQuery

• HTML

Saturday, September 7, 13

JavaScript

• Define local variables

• Be careful with closures

• Accessing object properties and array items is slower than variables

• Avoid for-in loops

Saturday, September 7, 13

jQuery

• Don’t use .live()

• Use $.mobile.activePage

• Use preventDefault()

• Cache selector

• Know when not to use jQuery

Saturday, September 7, 13

HTML

• Copy HTML collections into JS arrays

• Avoid accessing the DOM

• Use CSS classes not styles

Saturday, September 7, 13

Templates

Saturday, September 7, 13

Templates

• Think of a template like a cookie cutter

• Fill it with data, and it produces HTML

• Templates can be used on the server or on the client

• There are many templating engines

Saturday, September 7, 13

Templating Engines

• Underscore

• Handlebars

• Jade

• dust (LinkedIn)

• http://garann.github.io/template-chooser/

Saturday, September 7, 13

Handlebars

• Create a template in a script tag

• Compile template in JS

• Render template with data

Saturday, September 7, 13

Looping

• Handlebars has a built helper named, each, for looping

• else can be used with each for when no data is returned

• @index is the current loop index

• @key is the current object

Saturday, September 7, 13

Conditional

• The if helper conditionally renders a block

• else is available for falsy values

• unless inverses the logic of the if

Saturday, September 7, 13

Pre-compilation

• Precompile templates at application startup for improved performance later

• Can also ship precompiled templates using command line, node based tools

Saturday, September 7, 13

Helpers

• Handlebars allows for the creation of JS helper functions

• These handlers make it possible to extend Handlebars functionality

Saturday, September 7, 13

MV* Frameworks

Saturday, September 7, 13

MV* Frameworks

• MV* Frameworks give an application structure

• It is very easy to create spaghetti code in JS

• M = model

• V = controller

• * = something else, like routing

Saturday, September 7, 13

MV* & jQuery Mobile

• jQuery Mobile and most frameworks don’t get along well

• The main reason is routing. Both JQM and MV* want to control the routes

Saturday, September 7, 13

URL Routing

• URL are an invaluable part of the internet

• Users are use to sharing them

• They provide an easy mechanism to save state in an otherwise stateless environment

Saturday, September 7, 13

Routing

• It is better for the MV* to handle routing

• To stop JQM from handling routing

•26 <script type="text/javascript"> 27 /* Prevent jQM from handling <a> clicks and # changes */ 28 /* IMPORTANT: This must be hooked before loading jQM */ 29 $(document).on("mobileinit", function () { 30 $.mobile.linkBindingEnabled = false; 31 $.mobile.hashListeningEnabled = false; 32 }); 33 </script> 34 <script src="js/libs/jquery.mobile-1.3.2.min.js" type="text/javascript"></script>

Saturday, September 7, 13

MV* Frameworks

• Angular.js, from Google

• Ember.js, based on SproutCore

• Backbone.js,

• and many more

• http://todomvc.com/

Saturday, September 7, 13

Backbone.js

• A lightweight JS library which ads structure to your client side code

• From the creator of Underscore

• Very small - 6.3k minified and gzipped

Saturday, September 7, 13

Small and Fast

• Ember.js = 56k minified

• Angular.js = 81kb minified

• http://jsperf.com/angular-vs-knockout-vs-ember/173

Saturday, September 7, 13

The Nickel Tour

• Models

• Collections

• Views

• Routes

Saturday, September 7, 13

The Happy Path

• Use extend to create a “class”

• Use built in methods like initialize

• Once the “class” is defined, use new to instantiate an object

• “Classes” begins with upper case

• Objects begins with lower case

Saturday, September 7, 13

Models

• Backbone.Model.extend()

• defaults allows for the creation of default values

Saturday, September 7, 13

Collections

• Backbone.Collection.extend()

• Use model to define the model of the collection

• Use url to define a restful api

Saturday, September 7, 13

Views

• Backbone.View.extend()

• Use the initialize method run handler code which is executed once, like compiling templates

• Use the render method to display the view

Saturday, September 7, 13

Routes

• Backbone.Router.extend()

• Normally only one route per app

• Backbone.history.Start() tells BB to begin monitoring the URL

Saturday, September 7, 13

Unit Testing

Saturday, September 7, 13

Unit Testing

• Many unit testing frameworks are available

• QUnit, from the jQuery Team

• YUITest, from Yahoo

• Jasmine, from Pivotal Labs

• Mocha

Saturday, September 7, 13

Unit Testing Tips

• Be sure to test logic

• Write tests before fixing bugs

• Never stop running test

• Refactor the tests, when your refactor the code

Saturday, September 7, 13

QUnit

• Probably the easiest one to learn

• Used to test all of the jQuery projects

Saturday, September 7, 13

Custom Attributes

Saturday, September 7, 13

Custom Attributes

• A custom attribute is a non-standard attribute added to a tag to convey some information

• HTML has always supported custom attributes

• HTML5 makes the support explicit instead of implicit

Saturday, September 7, 13

data-*

• The official way of creating custom attributes is with data-

• Recommended is: data-<company initials>-<attribute name>

• example: data-rnc-listingId

Saturday, September 7, 13

getNamedItem()

• HTML, aka the DOM, includes the getNamedItem() method

• Returns value of the attribute node with the specified name

• /* set a click event on each row */ $(".listing").off().on("click", function () { app.CurrentListing = this.attributes.getNamedItem("data-rnc-listingid").value; });

Saturday, September 7, 13

The Viewport

Saturday, September 7, 13

Meta tags

• meta tag is an element which is used to provide structured metadata about a web page

• They can be used to specify page description, keywords, and instructions

• Always in the head section

• 5 defined attributes

Saturday, September 7, 13

Meta Tag Attributes

• name, the name of the meta tag

• content, information for the reader

• http-equiv, character encoding, auto refresh

• scheme, specifies scheme to interpret content (not support in HTML5)

• charset, added in HTML5

Saturday, September 7, 13

Examples <title>CC+</title> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no, maximum-scale=1"/> <meta name="apple-mobile-web-app-capable" content="yes"/> <meta name="robots" content="noindex, nofollow">

Saturday, September 7, 13

Viewport

• A special meta tag used to provide information about the device's display

• <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no,maximum-scale=1"/>

Saturday, September 7, 13

Viewport Parameters

• width, the width of the viewport in pixels

• initial-scale, the zoom level when the page loads

• maximum-scale, the max zoom level

• minimum-scale, the min zoom level

• user-scalable, if the user can change zoom

Saturday, September 7, 13

Tips and Tricks

• There is no standard covering the viewport

• Apple probably has the best docs

• Type carefully, no error checking on viewport

• Use the viewport standardize your app’s screen size across different devices

Saturday, September 7, 13

Responsive Design

Saturday, September 7, 13

Media Queries

• The workhorse of responsive design

• A media query is a media type and at least one expression that limits the style sheets' scope

@media screen and (min-width: 480px) and (orientation:portrait) {}

Saturday, September 7, 13

Media Query by the Piece

• The media query begins with @media

• then a media type, like screen, all, print, braille, etc

• You can add logical operators like: and, not, and only

• There is also the comma separated list which behaves like an or operator

Saturday, September 7, 13

jQuery Mobile Features

• Grids, self sizing columns which dynamically resize themselves when the size of the page changes

• Tables, added with version 1.3.0

• Panels, ala Facebook, a panel, usually options, reveals itself when an icon is clicked

Saturday, September 7, 13

Minification

Saturday, September 7, 13

Why?

Developers using other languages rarely think of the size of their code. But client side JavaScript is different. Minifying JavaScript can dramatically reduce its size and radically reduce page load time.

Saturday, September 7, 13

How to Minify

• By Hand

• Using an app

Saturday, September 7, 13

By Hand

Saturday, September 7, 13

In Practice

• Hand minification is fraught with danger - code is hard to read and grows increasingly fragile

• Using a web site is good for an example but not in practice, too much labor

• Usually done via a command line tool, during build or on page request

Saturday, September 7, 13

Icons and Splash Pages

Saturday, September 7, 13

Icons

• Classic icon (Microsoft)

• Standardized

• Mobile icon (Apple)

Saturday, September 7, 13

Splash Page

• An Apple thing

• The splash page is cached on the user’s device

• When the icon is click on the home page, splash page is shown while the app is loaded

Saturday, September 7, 13

HTML5 Offline App

Saturday, September 7, 13

How to Reach Me

• rockncoder@gmail.com

• http://therockncoder.blogspot.com/

• https://github.com/Rockncoder/ccplus

Saturday, September 7, 13

Questions

Saturday, September 7, 13

top related