SlideShare una empresa de Scribd logo
1 de 38
Descargar para leer sin conexión
LET'S DO SPA 
MAREK PIASECKI
WHAT IS SPA?
SINGLE PAGE APPLICATIONS
TAKE CARE OF YOUR BACKBONE
A COMPONENT 
Knows how to display itself. 
Knows how to behave. 
Has configurable properties.
EVERYTHING* IS A COMPONENT 
*that user sees and is interacting with
REACT VS WEB COMPONENTS
KEEP THE COMPONENT ABSTRACTION 
KEEP THINGS TOGETHER 
PROTIP #1
BASE ON STATE 
DON'T MODIFY DOM BY HAND 
PROTIP #2
MAKING COMPONENT ITERATIONS 
1. Make component mockup with hardcoded state 
2. Style component 
3. Define interface actions 
4. Provide endpoints 
- for data 
- for actions
READING AND WRITING DATA 
IS SOMETHING VERY DIFFERENT 
PROTIP #3
LAYOUT IS ALSO A COMPONENT 
PROTIP #4 
<HomeLayout> 
<TopBar /> 
<HomeStream /> 
</HomeLayout> 
children[0] 
children[1]
COMPLETE STRUCTURE FOR FRONTEND 
components/ 
pages/ 
services/ 
mixins/ 
app.coffee
GETTING DATA RAILS WAY 
router controller serializer 
DB
GETTING DATA 
serializer 
DB
GETTING DATA CONVENTIONS 
match '/*path' => 'serializations/routing#router', via: :get 
/endpoint/:id 
/endpoint/_/method _ is a special sign 
Serializer knows its scope.
USE ATTRIBUTES FROM SERIALIZER 
TO OPTIMIZE QUERY WITH SELECT 
PROTIP #5
DON'T USE PAGINATION 
USE ORDER_QUERY 
PROTIP #6
DON'T NEST OBJECTS IN JSON 
SEND RELATIONS ELEMENTS AS SEPARATE COLLECTIONS 
PROTIP #7
WRITING DATA CONVENTIONS 
match '/*path' => 'actions#router', via: :post 
/component_endpoint/action_name 
class ComponentEndpoint 
def action_name 
# do action 
end 
end
MY SERVICES
DISPATCHER 
@Dispatcher = _.extend {}, Events
USE LOOSE COUPLING 
PROTIP #8
STORE 
Store.update  
comments: { 123: { id: 123, body: 'Some comment...', author_ids: [1] }, 
author: { 1: { id: 1, name: 'Marek' } } 
comment = Store.get comments: 123 
author = Store.get(author: comment.author_ids)[0]
MAKE SURE YOU HAVE ONLY ONE 
INSTANCE OF PARTICULAR DATA IN THE APP 
PROTIP #9
ONE OBJECT 
IS A SPECIAL CASE OF COLLECTION 
PROTIP #10
IT'S BETTER TO 
HAVE DECORATORS IN THE FRONTEND 
PROTIP #11
ALIASES 
dictionary: 
author: 'users'
LCA 
One render per Store update.
Fetcher 
Collects queries for API and sends it in one.
MY MIXINS
ACTIONS HANDLER 
actions: 
local: 
change_tab: (tab) -> 
# ... 
api: 
message_readed: (id) -> 
# ... 
realtime: 
message_readed: (id) -> 
# ...
SCOPE 
Keeps information about subset of Store collection 
and listens for updates.
API STATE COMPONENT 
Pairs component with its API endpoint. It uses Scope. 
It's able to load more or newer elements of the collection.
ASC SUPLEMENT 
Asks for more data for an object. Cooperates with Fetcher.
USE LO-DASH 
INSTEAD OF UNDERSCORE 
PROTIP #12
IDENTITY FUNCTION FOR NIL 
class NilClass 
def method_missing(*) 
self 
end 
end 
BONUS PROTIP
M.PIASECKI@PILOT.CO

Más contenido relacionado

La actualidad más candente

Enemy of the state
Enemy of the stateEnemy of the state
Enemy of the state
Mike North
 

La actualidad más candente (20)

Make <input> more accessible with metadata
Make <input> more accessible with metadataMake <input> more accessible with metadata
Make <input> more accessible with metadata
 
Enemy of the state
Enemy of the stateEnemy of the state
Enemy of the state
 
Docker - Contain that Wild Application by Marvin Arcilla
Docker - Contain that Wild Application by Marvin ArcillaDocker - Contain that Wild Application by Marvin Arcilla
Docker - Contain that Wild Application by Marvin Arcilla
 
Winter '19 release development.ppt
Winter '19 release development.pptWinter '19 release development.ppt
Winter '19 release development.ppt
 
One does not simply "Upgrade to Rails 3"
One does not simply "Upgrade to Rails 3"One does not simply "Upgrade to Rails 3"
One does not simply "Upgrade to Rails 3"
 
Reducers+flux=redux
Reducers+flux=reduxReducers+flux=redux
Reducers+flux=redux
 
Dotnetques
DotnetquesDotnetques
Dotnetques
 
Ember CLI & Ember Tooling
Ember CLI & Ember ToolingEmber CLI & Ember Tooling
Ember CLI & Ember Tooling
 
Rails introduction
Rails introductionRails introduction
Rails introduction
 
Angular Classy
Angular ClassyAngular Classy
Angular Classy
 
Easy ota intro
Easy ota introEasy ota intro
Easy ota intro
 
The web is made of links. Don't break them.
The web is made of links. Don't break them.The web is made of links. Don't break them.
The web is made of links. Don't break them.
 
GSuite SSO AWS - AWS Meetup POA
GSuite SSO AWS - AWS Meetup POA GSuite SSO AWS - AWS Meetup POA
GSuite SSO AWS - AWS Meetup POA
 
ASP.NET Core 2.0 - Best Practices per le Web API
ASP.NET Core 2.0 - Best Practices per le Web APIASP.NET Core 2.0 - Best Practices per le Web API
ASP.NET Core 2.0 - Best Practices per le Web API
 
Cloud hub with mule
Cloud hub with muleCloud hub with mule
Cloud hub with mule
 
What's new in Rails 5 - API Mode & Action Cable overview
What's new in Rails 5 - API Mode & Action Cable overviewWhat's new in Rails 5 - API Mode & Action Cable overview
What's new in Rails 5 - API Mode & Action Cable overview
 
Gigigo Keynote - Geofences & iBeacons
Gigigo Keynote - Geofences & iBeaconsGigigo Keynote - Geofences & iBeacons
Gigigo Keynote - Geofences & iBeacons
 
Progressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent ConventoProgressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent Convento
 
Rails Awesome Email
Rails Awesome EmailRails Awesome Email
Rails Awesome Email
 
Ruby on rails3 - introduction to rails
Ruby on rails3 - introduction to railsRuby on rails3 - introduction to rails
Ruby on rails3 - introduction to rails
 

Destacado

Using Multilink PPP over Serial Interface Links
Using Multilink PPP over Serial Interface LinksUsing Multilink PPP over Serial Interface Links
Using Multilink PPP over Serial Interface Links
Sadegh Khademi
 
Gri reporting mining
Gri reporting miningGri reporting mining
Gri reporting mining
felixdaviault
 

Destacado (19)

Halloween garland
Halloween garlandHalloween garland
Halloween garland
 
Tdp.a029a10
Tdp.a029a10Tdp.a029a10
Tdp.a029a10
 
7 "Б" класс
7 "Б" класс7 "Б" класс
7 "Б" класс
 
Terremoto emilia 2012
Terremoto emilia 2012Terremoto emilia 2012
Terremoto emilia 2012
 
Тарҳи ададҳои натуралӣ
Тарҳи ададҳои натуралӣТарҳи ададҳои натуралӣ
Тарҳи ададҳои натуралӣ
 
Final research props
Final research propsFinal research props
Final research props
 
Global orthopedic product market (by segment) and company analysis to 2020
Global orthopedic product market (by segment) and company analysis to 2020Global orthopedic product market (by segment) and company analysis to 2020
Global orthopedic product market (by segment) and company analysis to 2020
 
Target audience
Target audience Target audience
Target audience
 
Porsche Cayenne S Hybrid SUV 2014 Photo Gallery
Porsche Cayenne S Hybrid SUV 2014 Photo GalleryPorsche Cayenne S Hybrid SUV 2014 Photo Gallery
Porsche Cayenne S Hybrid SUV 2014 Photo Gallery
 
Colonia cecilia-e-outras-utopias-rossi-giovanni
Colonia cecilia-e-outras-utopias-rossi-giovanniColonia cecilia-e-outras-utopias-rossi-giovanni
Colonia cecilia-e-outras-utopias-rossi-giovanni
 
Psy 330 week 3 dq1
Psy 330 week 3 dq1Psy 330 week 3 dq1
Psy 330 week 3 dq1
 
NSPCC analysis short film
NSPCC analysis short filmNSPCC analysis short film
NSPCC analysis short film
 
Evaluation Question
Evaluation QuestionEvaluation Question
Evaluation Question
 
Harralson slides apos 2013 _web
Harralson slides apos 2013 _webHarralson slides apos 2013 _web
Harralson slides apos 2013 _web
 
Using Multilink PPP over Serial Interface Links
Using Multilink PPP over Serial Interface LinksUsing Multilink PPP over Serial Interface Links
Using Multilink PPP over Serial Interface Links
 
Виктор Суворов "Ледокол"
Виктор Суворов "Ледокол"Виктор Суворов "Ледокол"
Виктор Суворов "Ледокол"
 
Mon quartier 5° annee
Mon quartier 5° anneeMon quartier 5° annee
Mon quartier 5° annee
 
C'è frutta e frutta!
C'è frutta e frutta!C'è frutta e frutta!
C'è frutta e frutta!
 
Gri reporting mining
Gri reporting miningGri reporting mining
Gri reporting mining
 

Similar a Let's do SPA

Baruco 2014 - Rubymotion Workshop
Baruco 2014 - Rubymotion WorkshopBaruco 2014 - Rubymotion Workshop
Baruco 2014 - Rubymotion Workshop
Brian Sam-Bodden
 
Intro to-rails-webperf
Intro to-rails-webperfIntro to-rails-webperf
Intro to-rails-webperf
New Relic
 
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan
 

Similar a Let's do SPA (20)

React Native - Getting Started
React Native - Getting StartedReact Native - Getting Started
React Native - Getting Started
 
Baruco 2014 - Rubymotion Workshop
Baruco 2014 - Rubymotion WorkshopBaruco 2014 - Rubymotion Workshop
Baruco 2014 - Rubymotion Workshop
 
Intro to-rails-webperf
Intro to-rails-webperfIntro to-rails-webperf
Intro to-rails-webperf
 
Meteor Meet-up San Diego December 2014
Meteor Meet-up San Diego December 2014Meteor Meet-up San Diego December 2014
Meteor Meet-up San Diego December 2014
 
Ruby For Startups
Ruby For StartupsRuby For Startups
Ruby For Startups
 
Backbone.js with React Views - Server Rendering, Virtual DOM, and More!
Backbone.js with React Views - Server Rendering, Virtual DOM, and More!Backbone.js with React Views - Server Rendering, Virtual DOM, and More!
Backbone.js with React Views - Server Rendering, Virtual DOM, and More!
 
React Lifecycle and Reconciliation
React Lifecycle and ReconciliationReact Lifecycle and Reconciliation
React Lifecycle and Reconciliation
 
Crossing the Bridge: Connecting Rails and your Front-end Framework
Crossing the Bridge: Connecting Rails and your Front-end FrameworkCrossing the Bridge: Connecting Rails and your Front-end Framework
Crossing the Bridge: Connecting Rails and your Front-end Framework
 
Tech Talk on ReactJS
Tech Talk on ReactJSTech Talk on ReactJS
Tech Talk on ReactJS
 
React Native +Redux + ES6 (Updated)
React Native +Redux + ES6 (Updated)React Native +Redux + ES6 (Updated)
React Native +Redux + ES6 (Updated)
 
React Native in Production
React Native in ProductionReact Native in Production
React Native in Production
 
React js programming concept
React js programming conceptReact js programming concept
React js programming concept
 
Testing Legacy Rails Apps
Testing Legacy Rails AppsTesting Legacy Rails Apps
Testing Legacy Rails Apps
 
How AngularDart & Firebase did an App together
How AngularDart & Firebase did an App togetherHow AngularDart & Firebase did an App together
How AngularDart & Firebase did an App together
 
Introduction to Redux (for Angular and React devs)
Introduction to Redux (for Angular and React devs)Introduction to Redux (for Angular and React devs)
Introduction to Redux (for Angular and React devs)
 
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2
 
Rails 5 – most effective features for apps upgradation
Rails 5 – most effective features for apps upgradationRails 5 – most effective features for apps upgradation
Rails 5 – most effective features for apps upgradation
 
Rack
RackRack
Rack
 
Delivering with ember.js
Delivering with ember.jsDelivering with ember.js
Delivering with ember.js
 
Intro react js
Intro react jsIntro react js
Intro react js
 

Último

Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Último (20)

Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft DatingDubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
Russian Call Girls in %(+971524965298  )#  Call Girls in DubaiRussian Call Girls in %(+971524965298  )#  Call Girls in Dubai
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
 
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceReal Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 

Let's do SPA