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
Ember and Rails
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Steve Kinney
December 17, 2014
0
88
Ember and Rails
Steve Kinney
December 17, 2014
Tweet
Share
More Decks by Steve Kinney
See All by Steve Kinney
React_Performance__2022.pdf
stevekinney
0
8
React Performance v2
stevekinney
0
8
Introduction to Testing
stevekinney
0
130
Web Security, Frontend Masters
stevekinney
0
3.4k
Making Music with the Web Audio API, JSConf Colombia 2023
stevekinney
0
110
React and TypeScript, Turing School
stevekinney
0
360
Redux Workshop, 2021-05-05
stevekinney
2
2.2k
TypeScript and React Utility Types
stevekinney
1
210
A Gentle Introduction to GraphQL Resolvers
stevekinney
1
170
Featured
See All Featured
A Tale of Four Properties
chriscoyier
162
24k
Bootstrapping a Software Product
garrettdimon
PRO
307
120k
Public Speaking Without Barfing On Your Shoes - THAT 2023
reverentgeek
1
310
Java REST API Framework Comparison - PWX 2021
mraible
34
9.1k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
Stop Working from a Prison Cell
hatefulcrawdad
273
21k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.7k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
1.8k
Effective software design: The role of men in debugging patriarchy in IT @ Voxxed Days AMS
baasie
0
220
Game over? The fight for quality and originality in the time of robots
wayneb77
1
120
Practical Orchestrator
shlominoach
191
11k
Bash Introduction
62gerente
615
210k
Transcript
Ember ♥ Rails DeRailed, December 2014
Hi. I'm Steve. @stevekinney
None
Hire our students, please: http://people.turing.io/
Ember Basics
Ember draws influence from Cocoa and Rails. It began it's
life as SproutCore 2.0.
Notable Features Two-way data binding Computed properties An emphasis on
URLs Convention over configuration
None
Let's look at some code.
Public Service Announcement: TurboLinks Considered Harmful
A Tale of Two MVCs
Ember and Rails both take MVC pretty seriously. (That said,
they both have a very different take on it.)
None
None
The route fetches the model and sets up the controller.
Controllers decorate the model and handle actions.
Controllers are singletons.
Let's say you visit /notes/1 and then you visit /notes/2.
It's the same controller, but the route has switched out the model.
Controllers maintain state.
Controllers can talk to each other.
What is Ember Data?
It's kind of like ActiveRecord, but for Ember—and different.
None
// models/post.js export default DS.Model.extend({ title: DS.attr('string'), body: DS.attr('text'), comments:
DS.hasMany('comments') }); // models/comment.js export default DS.Model.extend({ comment: DS.attr('string'), post: DS.belongsTo('post') });
And Now: An Example of the AJAX Requests Generated By
Ember Data
post.find('12').get('comments');
post.get('comments'); GET /posts { "posts": [ { "id": "12", "content":
"Super!", "comments": ["56", "58"] } ] }
GET /comments?ids[]=56&ids[]=58 { "comments": [ { "id": "56", "message": "Whatever",
"post": "12" }, { "id": "58", "message": "Something", "post": "12" } ] }
What just happened? Ember Data sent off two AJAX requests
to Rails in order to build the relation in the browser.
And then it cached the result in the Store.
Let's look at some code together.
Ember Tooling
The Ember Inspector
None
None
It's like the Rails command line tools, but for Ember—
and not that different.
None
Ember CLI allows you to proxy to a Rails server.
Request If Ember can't respond to a URL, it proxies
it on to Rails.
Thank you. Questions?