Web, Native iOS and Native Android with One Ember.js App

  • View
    6.132

  • Download
    2

  • Category

    Internet

Preview:

Citation preview

Hybrid Apps with Ember

@alexblom alex@isleofcode.com

Who am I

• Programmer

• Started with Java/C;

• Mostly Ruby/Rails;

• Go;

• Ember for ~2.5 years;

Isle of Code• Toronto based development;

• Focused on:

• Prototyping;

• Single sourcing mobile /w Ember.js & Cordova; and

• A lot of beacon work.

Five things audience members will learn

1. How to build a single code base working on all platforms

2. What changes (if any) are required in the code base to achieve this

3. How to avoid common draw-backs of wrapped applications, such as perceived slowness

4. How to access native phone functions without muddling up the code base

5. How such applications are packaged and deployed

Contents

• 1: What are hybrid apps?;

• 2: Our tools (Cordova, Ember & Good Programming);

• 3: Make it go zoom;

1 - What are hybrid apps

• Using one code base for multiple platforms;

• vs. building custom code bases for each platform;

Wrapped Apps are everywhere

Less cost of building

Re-use app for web

Less cost to add new features

No out of sync experiences

How important is complexity?

How easy is it for you to find engineers?

“The biggest mistake we’ve made as a company is betting on HTML5 over native”

Mark Zuckerberg, 2012

2 - Our Tools

What is Cordova?

• Apache Cordova is a platform for building native mobile applications using HTML, CSS and JavaScript

• https://cordova.apache.org/

• "Cordova" refers to the street the office was on when the PhoneGap project first began

Cordova vs Phonegap

UIWebView

(mostly) consistent API’s

The Ember way is not about Ember

ember-cli-cordova

Cordova/Ember is easier now

• Process has come a long way

Bind Cordova Service

https://github.com/isleofcode/ember-cli-cordova

Livereload

3 - Make it go Zoom

Good Code == Good Hybrid

• Much of making effective mobile is simply writing good code.

• Desktops let us be lazier;

Cordova is not native

Cordova is not native

<preference name="webviewbounce" value="false" />

Touch Events http://hammerjs.github.io

Hammer Example

Ember Gestures

https://github.com/runspired/ember-gestures

Ghost Clicks

Ember Hack

Manage Reflows

Manage Reflows• “Reflow is the process by which the geometry of the

layout engine's formatting objects are computed. The HTML formatting objects are called frames: a frame corresponds to the geometric information for (roughly) a single element in the content model; the frames are arranged into a hierarchy that parallels the containment hierarchy in the content model. A frame is rectangular, with width, height, and an offset from the parent frame that contains it.”

• http://www-archive.mozilla.org/newlayout/doc/reflow.html

What causes Reflow?• Resizing the browser window;

• using JavaScript methods involving computed styles;

• adding or removing elements from the DOM; and

• changing an element's classes.

• https://developers.google.com/speed/articles/reflow

Use CSS Transforms

visibility:hidden

Best Practices for avoiding Reflow

1. Avoid setting multiple inline styles; avoid setting styles individually.

2. Use class names of elements, and do so as low in the DOM tree as possible.

3. Batch your DOM changes and perform them offline;

4. Avoid computing styles too often. If you must then cache those values.

5. Apply animations with position: fixed or absolute so it doesn’t affect the layout of other elements.

6. Avoid table layouts, they trigger more reflows than block layouts because multiple passes must be made over the elements.

7. Reduce unnecessary DOM depth. Changes at one level in the DOM tree can cause changes at every level of the tree - all the way up to the root, and all the the way down into the children of the modified node. This leads to more time being spent performing reflow.

8. Minimize CSS rules and remove unused CSS rules.

9. If you make complex rendering changes such as animations, do so out of the flow. Use position-absolute or position-fixed to accomplish this.

10.Avoid unnecessary complex CSS selectors - descendant selectors in particular.

http://stage.docs.phonegap.com/tutorials/optimize/03-min-reflows/

-webkit-tap-highlight-color:rgba(0,0,0,0);

Understand Viewport

Android ViewportiOS 7+ Viewport

ionic Keyboard• cordova.plugins.Keyboard.isVisible

• cordova.plugins.Keyboard.hideKeyboardAccessoryBar

• cordova.plugins.Keyboard.close

• cordova.plugins.Keyboard.disableScroll

• cordova.plugins.Keyboard.show

• https://github.com/driftyco/ionic-plugin-keyboard

Infinite Scrolling

• Smoke & Mirrors: https://github.com/runspired/smoke-and-mirrors

• Ember ListView: https://github.com/emberjs/list-view

• Ember Cloaking: https://github.com/eviltrout/ember-cloaking

Occlusion

http://runspired.github.io/smoke-and-mirrors/#/examples/dbmon

Animations

Animations - Velocity

Canvas

• Choppy and deal breaking. This is common when working with DOM;

• Need to move to Canvas;

• ~16ms target for animations, DOM can’t do this;

Mirage https://github.com/samselikoff/ember-cli-mirage

Liquid Fire

http://ef4.github.io/liquid-fire/

Crosswalk https://crosswalk-project.org/

Hybrid Apps with Ember

@alexblom alex@isleofcode.com

Recommended