Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Don't Fear The Hybrid!
Search
Patrick Seda
October 17, 2014
Technology
4
1.4k
Don't Fear The Hybrid!
Making Kickass Mobile Enterprise Apps
Patrick Seda
October 17, 2014
Tweet
Share
More Decks by Patrick Seda
See All by Patrick Seda
The API of Your Company Culture
pxtrick
3
970
Lightning Talk - Enhancing Vue and Vuex for Complex Application State
pxtrick
1
1.1k
Swift - Beyond Beginner
pxtrick
0
1.2k
Crossing the Chasm of Swift
pxtrick
0
1.3k
Architecting Your Project with a Finite-State Machine
pxtrick
1
2.1k
Your Code is Terrible (I Love It!)
pxtrick
0
1.2k
An Introduction to Location-Based Technologies (for Business & Marketing)
pxtrick
0
600
The Passion of Lazy - Enterprise Mobile App Design Patterns
pxtrick
0
2.2k
10 Tips for Kickass Enterprise Mobile Apps
pxtrick
0
1k
Other Decks in Technology
See All in Technology
AGIについてChatGPTに聞いてみた
blueb
0
130
[CV勉強会@関東 ECCV2024 読み会] オンラインマッピング x トラッキング MapTracker: Tracking with Strided Memory Fusion for Consistent Vector HD Mapping (Chen+, ECCV24)
abemii
0
220
iOS/Androidで同じUI体験をネ イティブで作成する際に気をつ けたい落とし穴
fumiyasac0921
1
110
適材適所の技術選定 〜GraphQL・REST API・tRPC〜 / Optimal Technology Selection
kakehashi
1
460
ドメインの本質を掴む / Get the essence of the domain
sinsoku
2
150
Why does continuous profiling matter to developers? #appdevelopercon
salaboy
0
190
アジャイルでの品質の進化 Agile in Motion vol.1/20241118 Hiroyuki Sato
shift_evolve
0
150
rootlessコンテナのすゝめ - 研究室サーバーでもできる安全なコンテナ管理
kitsuya0828
3
380
Exadata Database Service on Dedicated Infrastructure(ExaDB-D) UI スクリーン・キャプチャ集
oracle4engineer
PRO
2
3.2k
AWS Lambdaと歩んだ“サーバーレス”と今後 #lambda_10years
yoshidashingo
1
170
【若手エンジニア応援LT会】ソフトウェアを学んできた私がインフラエンジニアを目指した理由
kazushi_ohata
0
150
初心者向けAWS Securityの勉強会mini Security-JAWSを9ヶ月ぐらい実施してきての近況
cmusudakeisuke
0
120
Featured
See All Featured
Fireside Chat
paigeccino
34
3k
Rebuilding a faster, lazier Slack
samanthasiow
79
8.7k
StorybookのUI Testing Handbookを読んだ
zakiyama
27
5.3k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
28
2k
KATA
mclloyd
29
14k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
126
18k
Building an army of robots
kneath
302
43k
Why You Should Never Use an ORM
jnunemaker
PRO
54
9.1k
GraphQLとの向き合い方2022年版
quramy
43
13k
[RailsConf 2023] Rails as a piece of cake
palkan
52
4.9k
Building a Scalable Design System with Sketch
lauravandoore
459
33k
Transcript
ConnectJS/TiConnect – October 17, 2014 – Atlanta, GA Don’t! FEAR!
The HYBRID!
Patrick Seda @pxtrick
[email protected]
• Lead Mobile Architect @propelics •
Titanium Fanboy … Appc Titan • Creator of Mr. Edison Children’s App
What! Is! HYBRID! ?!
Hybrid Native App Wrapper + Web Application
Hybrid Combine two things BADASS!
Hybrid so BADASS NOT QUITE!
Hybrid
vs. Consumer! ENTERPRISE!
What is Enterprise? • A Business with multiple divisions •
Business strategy is based upon cohesive interaction • Divisions are financially dependent on each other • Core set of metrics and measures
What is Enterprise? • A Business with multiple divisions •
Business strategy is based upon cohesive interaction • Divisions are financially dependent on each other • Core set of metrics and measures
Enterprise vs. Consumer “Enterprise” Apps == B2E / B2B (ish)
Enterprise vs. Consumer “Consumer” Apps == B2C / B2B (ish)
in Enterprise! EXPECT! What to!
Reasonable Expectations • Heightened Security • Interact with Existing Data
Sources • Handle offline / poor connection, intermittent data sync • App architecture had BETTER support future expansion • Charts and graphs!
Reasonable Expectations
Reasonable Expectations
CHARTING! Techniques!
Charts and Graphs
Charts and Graphs
Charts and Graphs
HELP !! Charts and Graphs We need!
Charting Libraries Google Charts
Charting Libraries Google Charts Common Charts : Visual Styling :
Interactivity : Cost : NOTE : Where: Excellent Excellent Excellent FREE Must be online to use ! (developers.google.com/chart)! !
Charting Libraries D3.js
Charting Libraries D3.js Common Charts : Visual Styling : Interactivity
: Cost : Where: Excellent Excellent Excellent FREE ! (d3js.org)! !
Charting Libraries Highcharts
Charting Libraries Highcharts Common Charts : Visual Styling : Interactivity
: Cost : Where: Excellent Excellent Excellent Freemium … $390 - $4500 ! (highcharts.com)! !
Charting Libraries gRaphael
Charting Libraries gRaphael Common Charts : Visual Styling : Interactivity
: Cost : Where: Good Limited Limited FREE ! (g.raphael.com)! !
ANATOMY! Of the Hybrid!
Application WebView HTML / CSS / JS JS Chart Library
Composition
HTML Composition JS Window WebView Creation Sequence: <Window>! <WebView />!
</Window>!
Interaction HTML JS App-to-Chart Communication: App Ti.App.fireEvent(…);! WebView with Events
Interaction HTML App WebView Chart-to-App Communication: Ti.App.fireEvent(…);! JS with Events
Interaction HTML JS WebView App-to-Chart Communication: App webView.evalJS(…);! without Events
Interaction HTML App WebView Chart-to-App Communication: // NOPE! JS without
Events
Interaction // Event handler in HTML/JS.! function render(e) {…};! Ti.App.addEventListener(‘renderChart’,
render);! (In HTML/JS) // Send data to the chart.! Ti.App.fireEvent(‘renderChart’, {…});! (In App) App-to-Chart Communication: with Events
Interaction // Event handler in app.! function chartCB(e) {…};! Ti.App.addEventListener(‘chartTapped’,
chartCB);! (In App) // Send data to the app.! Ti.App.fireEvent(‘chartTapped’, {…});! (In HTML/JS) with Events Chart-to-App Communication:
Interaction // No event handler, just the method to render
data.! function render(chartInfo) {…};! (In HTML/JS) // Send data to the chart.! var data = JSON.stringify(chartInfo);! webView.evalJS(‘render(‘ + data + ‘)’);! (In App) App-to-Chart Communication: without Events
WELCOME! To the Real World!
The Real World
The Real World WTF! WTF!
The Real World
The Real World “The WebView is one of the most
EXPENSIVE components to create in terms of resources” - Titanium docs
The Real World
The Real World Labels! & Views! WebView!
The Real World “Including WebViews in your TableViewRows is a
RECIPE FOR SLUGGISH performance.” - Titanium docs
The Real World
The Real World Section! Headers!
The Real World
WebView Event Quiz When is the “load” event fired? A.
After the WebView contents have loaded B. After the WebView contents have rendered C. Never
WebView Event Quiz When is the “load” event fired? A.
After the WebView contents have loaded B. After the WebView contents have rendered C. Never
WebView Event Quiz When do the contents start loading? A.
After the Window has been laid out B. After the WebView has been laid out C. Before the WebView has been laid out
WebView Event Quiz When do the contents start loading? A.
After the Window has been laid out B. After the WebView has been laid out C. Before the WebView has been laid out * “postlayout” event
WebView Event Quiz When is the WebView laid out? A.
Before the Window “postlayout” event B. After the WebView “focus” event C. Whenever the OS feels like it
WebView Event Quiz When is the WebView laid out? A.
Before the Window “postlayout” event B. After the WebView “focus” event C. Whenever the OS feels like it
WebView Event Quiz Order of events: 1. “postlayout” 2. “beforeload”
3. “load” (App lays out Views As-Needed)
Performance Views are being laid out …
Performance “postlayout” and “load” “postlayout” and “load”
Performance “postlayout” and “load”
Performance “postlayout” and “load” “postlayout” and “load” “postlayout” and “load”
Performance WebView loads are throttled … NO big spikes! NO
crashes!
Reasonable Expectations • Kickass Charts • Performance • Don’t Be
So Lazy Enterprise Charting! ✔ ✔ ✔
SUMMARY! Amazing charts!! Happy clients!! Don’t FEAR the HYBRID! Great
performance!!