SlideShare una empresa de Scribd logo
1 de 29
Ember.js - introduction
‘A framework for creating ambitious web applications’
Ember users in Production
For more users http://emberjs.com/ember-users/
Ember.js: What
• Frontend JavaScript web application framework
• Based on model-view-controller (MVC)
• Used to write complex front-end heavy web apps
• Designed for Single Page Applications
• Gives you an organized structure, conventions and built-in ways
• Like Angular, backbone & knockout, now ember to help developers
build great front end application
• Key Developers: Yehuda Katz, Tom Dale
Ember : why
• Logical code organization
• Convention similar to Rails background
• Easy persistence
• Saving or deleting object is easier
• Auto-updating templates(Two way binding)
• {{ myProperty }}
• Helpful Object API’s
• Build-in methods
• Ember has Array object with methods like contains, filterBy, sortBy, etc
• Debugging : The Ember inspector for Firefox and Chrome
History
MVC
Ember-cli
• Ember CLI aims to be one such Ember.js command line utility that we can use to build,
develop and ship ambitious SPA
• Includes fast asset pipeline broccoli
• Draws heavy inspiration from Rails asset pipeline
• Runs on node.js and independent of backend platform
• Figures out which files have changed and only rebuilds those that were modified
• Assets supported by Broccoli like Handlebars, Emblem, LESS, Sass, Compass, Stylus, CoffeeScript,
EmberScript, Minified JS and CSS
• Every Ember-cli project will contain a file called Brocfile.js present at the root of the
project. This is the definition file and contains build specific instructions of the project.
(In latest version of Ember-cli, file renamed to ember-cli-build.js)
• Ember CLI uses bower as the default tool to manage the dependencies of our
application and lets us to easily manage and keep frontend dependencies up-to-date
• Ember CLI uses npm(Node Package Manager) to manage its internal dependencies.
• Ember CLI comes with content security add on, this guards from XSS attacks
Pre-requisites(To set up application)
• Node(npm)
• from https://nodejs.org
• Ember-cli(ember-cli)
• via npm install –g ember-cli
• Bower(bower)
• via npm install –g bower
• PhantomJS(phantomjs)
• via npm install –g phantomjs
App Folder Structure
• Creating a new application
• Cmd: ember new my-first-ember-app
• Folder Structure
App Folder Details• app/components
• All components of our application like reusable components used for view or models
• app/controllers
• Contains the controller modules of our application
• app/helpers
• Contain all the handlebars helpers for view
• app/models
• Contain all the ember-data model modules
• app/routes
• Contains all application routes
• app/styles
• Contains stylesheets
• app/templates
• Contains all the handlebars/HTMLBars templates
• app/views
• Contains all our application views
• app/router.js
• Contains our route configuration
• Routes defined here are resolved from the modules defined in app/routes/
App Folder Details cont..
• app/app.js
• Main entry point of our application and contains configuration applies to our
Ember.js application
• Have default generated code which exports our Ember.js application inherits
from Ember.Application class
• app/index.js
• main file for the Single Page web Application.
• has the structure of our application, includes js and css files
• Includes certain hooks like {{content-for 'head'}}, {{content-for 'head-footer'}},
{{content-for 'body'}}, {{content-for 'body-footer'}}
Supporting Files and Folder
• bower_components
• Contains all dependencies which Ember CLI installs via bower
• bower components are listed in bower.json configuration file
• config/environment.js
• Placeholder of our application configuration
• Supports different configurations for different configuration for our application, by default it has created configurations for
development, test and production environments
• node_modules
• Contains the node dependencies used by Ember CLI
• public
• Contains assets that should be copied as they are to the root of the packaged application
• vendor
• This folder should contains libraries which cannot be installed using bower or npm
• The libraries in vendor should then be imported into the broccoli asset pipeline by adding in Brocfile.js/ember-cli-build.js
• test
• Contains helpers and resolver to run unit and integration tests using the Ember testing module
• Cmd: ember test or http://localhost:4200/test in browser
• Ember Cli uses Qunit as its testing library
Supporting Files and Folder cont…
• brocfile.js/ember-cli-build.js:
• Build instructions for broccoli asset pipeline
• Additional libraries included if we import the files
• Eg: app.import(‘bower_components/bootstrap/dist/css/bootstrap.css’);
• bower.json
• Configuration file for bower and contains the dependencies of our application
that need to installed via bower
• package.json
• Configuration file for npm and contains node.js dependencies required by our
application
Running the application
• Cmd : ember server
• By default runs on 4200 port
• For different port
• Cmd: ember server –port 4300
Or
Add configuration in .ember-cli by adding {“port”: 4300}
• Ember.js strongly relies on naming conventions. So, if you want the
page /foo in your app, you will have the following:
• a foo template,
• a FooRoute,
• a FooController,
• and a FooView.
Components
• Router/Route
• Controller
• Model
• View/Component
• Templates
Concepts Map
The router
• Routes are the root of all other concepts in Ember
• The router drives the rest of the gears in ember
router.js
eg:- this.route(‘users’);
Route class
• Sets up the model (data) and the controller
• Will take actions/events that bubble up it from the controller
Models
• Defines the data you need
• Uses attributes for defining the data type: number, boolean, string,
etc.
• Also uses relational mapping for defining relationship between
models: hasMany, belongsTo, etc.
Controller
• Takes the model from the route
• Model can be an object or an array/collection
• Is responsible for:
• Mutating the model
• User interaction
• Page logic
• Can define observable and computed properties
Template(Handlebars markup)
• Uses Handlebars as the rendering language
• Mostly plain old HTML
• Hooks to controller - provides the logic
• Hooks to the model - provides the data
View
• A class for when doing DOM manipulation is necessary
• If you need to do DOM manipulation, you should ask yourself what
you may be doing wrong
• Should not be used often
Components
• Reusable parts
• Your own HTML tags/elements
• Any part of your application that repeats is a candidate for a
component
• Ember comes with a bunch of these:
• Input box helpers, dropdown menu, links, etc.
Adapter
If caching happens
Architecture overview
For a new Record
Note on coupling
- In Ember.js, templates get their properties from
controllers, which decorate a model.
- templates know about controllers and controllers know
about models, but the reverse is not true. A model
knows nothing about which (if any) controllers are
decorating it, and a controller does not know which
templates are presenting its properties.
- For example, if the user navigates
from /posts/1 to /posts/2, the PostController's model
will change from store.findRecord('post',
1) to store.findRecord('post', 2). The template will
update its representations of any properties on the
model, as well as any computed properties on the
controller that depend on the model.
Example for routes and its components
Few Codes
• To define a new Ember class, call the extend() method
on Ember.Object
• Eg:-
• Person = Ember.Object.extend({ say(thing) { var name = this.get('name'); alert(name + "
says: " + thing); } });
• RETRIEVING A SINGLE RECORD
• var post = this.store.findRecord('post', 1); // => GET /posts/1
• var post = this.store.peekRecord('post', 1); // => no network request
• RETRIEVING MULTIPLE RECORDS
• var posts = this.store.findAll('post'); // => GET /posts
• var posts = this.store.peekAll('post'); // => no network request
• QUERYING FOR MULTIPLE RECORDS
• var peters = this.store.query('person', { name: 'Peter' }); // => GET to
/persons?name=Peter
FewNotes
• EMBER.OBJECT
• Ember implements its own object system. The base object is Ember.Object. All of the other objects in Ember
extend Ember.Object.
• user = Ember.Object.create()
• user = Ember.Object.create({ firstName: hari', lastName: c' })
• Getter
• user.firstName or user.get(‘firstName’)
• CLASSES
• var Person = Ember.Object.extend({ say: function (message) { alert(message); } });
• var bob = Person.create(); bob.say('hello world');
• // alerts "hello world"
• Ember-Data
• Ember-Data is a library that lets you retrieve records from a server, hold them in a Store, update them in the
browser and, finally, save them back to the server. The Store can be configured with various adapters
• RESTAdapter interacts with a JSON API
• LSAdapter persists your data in the browser’s local storage
Resources
• http://guides.emberjs.com/
• http://emberwatch.com/tutorials.html
• https://en.wikipedia.org/wiki/Ember.js
• Ebook: Ember.js Web development with Ember CLI – Suchit Puri
• Ebook: Ember-cli-101: An Ember.js book with ember-cli
• Lynda.com, codeschool
• Youtube tutorials
• Dockyard.com ember tutorial

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

Git & GitHub for Beginners
Git & GitHub for BeginnersGit & GitHub for Beginners
Git & GitHub for Beginners
 
Reactjs
ReactjsReactjs
Reactjs
 
Introduction to github slideshare
Introduction to github slideshareIntroduction to github slideshare
Introduction to github slideshare
 
Reactjs
Reactjs Reactjs
Reactjs
 
Maven Introduction
Maven IntroductionMaven Introduction
Maven Introduction
 
Introduction to APIs (Application Programming Interface)
Introduction to APIs (Application Programming Interface) Introduction to APIs (Application Programming Interface)
Introduction to APIs (Application Programming Interface)
 
Git and github
Git and githubGit and github
Git and github
 
Intro to React
Intro to ReactIntro to React
Intro to React
 
Understanding react hooks
Understanding react hooksUnderstanding react hooks
Understanding react hooks
 
Geb with spock
Geb with spockGeb with spock
Geb with spock
 
Introducing GitLab (September 2018)
Introducing GitLab (September 2018)Introducing GitLab (September 2018)
Introducing GitLab (September 2018)
 
Why Vue.js?
Why Vue.js?Why Vue.js?
Why Vue.js?
 
github-actions.pdf
github-actions.pdfgithub-actions.pdf
github-actions.pdf
 
React workshop presentation
React workshop presentationReact workshop presentation
React workshop presentation
 
Difference between Github vs Gitlab vs Bitbucket
Difference between Github vs Gitlab vs BitbucketDifference between Github vs Gitlab vs Bitbucket
Difference between Github vs Gitlab vs Bitbucket
 
React JS - A quick introduction tutorial
React JS - A quick introduction tutorialReact JS - A quick introduction tutorial
React JS - A quick introduction tutorial
 
Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
 
Introduction to Git and Github
Introduction to Git and GithubIntroduction to Git and Github
Introduction to Git and Github
 
Getting started with Docker
Getting started with DockerGetting started with Docker
Getting started with Docker
 

Destacado

Destacado (11)

Intro to Ember.js
Intro to Ember.jsIntro to Ember.js
Intro to Ember.js
 
Intro to Ember.JS 2016
Intro to Ember.JS 2016Intro to Ember.JS 2016
Intro to Ember.JS 2016
 
An introduction to Ember.js
An introduction to Ember.jsAn introduction to Ember.js
An introduction to Ember.js
 
Ember Reusable Components and Widgets
Ember Reusable Components and WidgetsEmber Reusable Components and Widgets
Ember Reusable Components and Widgets
 
Agile Point
Agile PointAgile Point
Agile Point
 
Brief Introduction to Ember
Brief Introduction to EmberBrief Introduction to Ember
Brief Introduction to Ember
 
The road to Ember.js 2.0
The road to Ember.js 2.0The road to Ember.js 2.0
The road to Ember.js 2.0
 
Ember Data Introduction and Basic Concepts
Ember Data Introduction and Basic ConceptsEmber Data Introduction and Basic Concepts
Ember Data Introduction and Basic Concepts
 
Ember Data
Ember DataEmber Data
Ember Data
 
AfriGadget @ Webmontag Frankfurt, June 6, 2011
AfriGadget @ Webmontag Frankfurt, June 6, 2011AfriGadget @ Webmontag Frankfurt, June 6, 2011
AfriGadget @ Webmontag Frankfurt, June 6, 2011
 
The Tale of 2 CLIs - Ember-cli and Angular-cli
The Tale of 2 CLIs - Ember-cli and Angular-cliThe Tale of 2 CLIs - Ember-cli and Angular-cli
The Tale of 2 CLIs - Ember-cli and Angular-cli
 

Similar a Ember - introduction

MEAN Stack WeNode Barcelona Workshop
MEAN Stack WeNode Barcelona WorkshopMEAN Stack WeNode Barcelona Workshop
MEAN Stack WeNode Barcelona Workshop
Valeri Karpov
 
Kubernetes @ meetic
Kubernetes @ meeticKubernetes @ meetic
Kubernetes @ meetic
Sébastien Le Gall
 
Apache Cayenne for WO Devs
Apache Cayenne for WO DevsApache Cayenne for WO Devs
Apache Cayenne for WO Devs
WO Community
 

Similar a Ember - introduction (20)

A Beginner's Guide to Ember
A Beginner's Guide to EmberA Beginner's Guide to Ember
A Beginner's Guide to Ember
 
Ember.js: Jump Start
Ember.js: Jump Start Ember.js: Jump Start
Ember.js: Jump Start
 
Introduction to Monsoon PHP framework
Introduction to Monsoon PHP frameworkIntroduction to Monsoon PHP framework
Introduction to Monsoon PHP framework
 
Custom Tile Generation in PCF
Custom Tile Generation in PCFCustom Tile Generation in PCF
Custom Tile Generation in PCF
 
Custom Tile Generation in PCF
Custom Tile Generation in PCFCustom Tile Generation in PCF
Custom Tile Generation in PCF
 
12 Introduction to Rails
12 Introduction to Rails12 Introduction to Rails
12 Introduction to Rails
 
Power of Azure Devops
Power of Azure DevopsPower of Azure Devops
Power of Azure Devops
 
MEAN Stack WeNode Barcelona Workshop
MEAN Stack WeNode Barcelona WorkshopMEAN Stack WeNode Barcelona Workshop
MEAN Stack WeNode Barcelona Workshop
 
Introduction to cypress in Angular (Chinese)
Introduction to cypress in Angular (Chinese)Introduction to cypress in Angular (Chinese)
Introduction to cypress in Angular (Chinese)
 
Kubernetes @ meetic
Kubernetes @ meeticKubernetes @ meetic
Kubernetes @ meetic
 
Introduction to Laravel Framework (5.2)
Introduction to Laravel Framework (5.2)Introduction to Laravel Framework (5.2)
Introduction to Laravel Framework (5.2)
 
Codeigniter
CodeigniterCodeigniter
Codeigniter
 
Ei cakephp
Ei cakephpEi cakephp
Ei cakephp
 
Cakeph pppt
Cakeph ppptCakeph pppt
Cakeph pppt
 
Software design with Domain-driven design
Software design with Domain-driven design Software design with Domain-driven design
Software design with Domain-driven design
 
Apache Cayenne for WO Devs
Apache Cayenne for WO DevsApache Cayenne for WO Devs
Apache Cayenne for WO Devs
 
Tear It Down, Build It Back Up: Empowering Developers with Amazon CloudFormation
Tear It Down, Build It Back Up: Empowering Developers with Amazon CloudFormationTear It Down, Build It Back Up: Empowering Developers with Amazon CloudFormation
Tear It Down, Build It Back Up: Empowering Developers with Amazon CloudFormation
 
Beyond Domino Designer
Beyond Domino DesignerBeyond Domino Designer
Beyond Domino Designer
 
Web component driven development
Web component driven developmentWeb component driven development
Web component driven development
 
Azure Templates for Consistent Deployment
Azure Templates for Consistent DeploymentAzure Templates for Consistent Deployment
Azure Templates for Consistent Deployment
 

Último

%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 

Último (20)

VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 

Ember - introduction

  • 1. Ember.js - introduction ‘A framework for creating ambitious web applications’
  • 2. Ember users in Production For more users http://emberjs.com/ember-users/
  • 3. Ember.js: What • Frontend JavaScript web application framework • Based on model-view-controller (MVC) • Used to write complex front-end heavy web apps • Designed for Single Page Applications • Gives you an organized structure, conventions and built-in ways • Like Angular, backbone & knockout, now ember to help developers build great front end application • Key Developers: Yehuda Katz, Tom Dale
  • 4. Ember : why • Logical code organization • Convention similar to Rails background • Easy persistence • Saving or deleting object is easier • Auto-updating templates(Two way binding) • {{ myProperty }} • Helpful Object API’s • Build-in methods • Ember has Array object with methods like contains, filterBy, sortBy, etc • Debugging : The Ember inspector for Firefox and Chrome
  • 6. MVC
  • 7. Ember-cli • Ember CLI aims to be one such Ember.js command line utility that we can use to build, develop and ship ambitious SPA • Includes fast asset pipeline broccoli • Draws heavy inspiration from Rails asset pipeline • Runs on node.js and independent of backend platform • Figures out which files have changed and only rebuilds those that were modified • Assets supported by Broccoli like Handlebars, Emblem, LESS, Sass, Compass, Stylus, CoffeeScript, EmberScript, Minified JS and CSS • Every Ember-cli project will contain a file called Brocfile.js present at the root of the project. This is the definition file and contains build specific instructions of the project. (In latest version of Ember-cli, file renamed to ember-cli-build.js) • Ember CLI uses bower as the default tool to manage the dependencies of our application and lets us to easily manage and keep frontend dependencies up-to-date • Ember CLI uses npm(Node Package Manager) to manage its internal dependencies. • Ember CLI comes with content security add on, this guards from XSS attacks
  • 8. Pre-requisites(To set up application) • Node(npm) • from https://nodejs.org • Ember-cli(ember-cli) • via npm install –g ember-cli • Bower(bower) • via npm install –g bower • PhantomJS(phantomjs) • via npm install –g phantomjs
  • 9. App Folder Structure • Creating a new application • Cmd: ember new my-first-ember-app • Folder Structure
  • 10. App Folder Details• app/components • All components of our application like reusable components used for view or models • app/controllers • Contains the controller modules of our application • app/helpers • Contain all the handlebars helpers for view • app/models • Contain all the ember-data model modules • app/routes • Contains all application routes • app/styles • Contains stylesheets • app/templates • Contains all the handlebars/HTMLBars templates • app/views • Contains all our application views • app/router.js • Contains our route configuration • Routes defined here are resolved from the modules defined in app/routes/
  • 11. App Folder Details cont.. • app/app.js • Main entry point of our application and contains configuration applies to our Ember.js application • Have default generated code which exports our Ember.js application inherits from Ember.Application class • app/index.js • main file for the Single Page web Application. • has the structure of our application, includes js and css files • Includes certain hooks like {{content-for 'head'}}, {{content-for 'head-footer'}}, {{content-for 'body'}}, {{content-for 'body-footer'}}
  • 12. Supporting Files and Folder • bower_components • Contains all dependencies which Ember CLI installs via bower • bower components are listed in bower.json configuration file • config/environment.js • Placeholder of our application configuration • Supports different configurations for different configuration for our application, by default it has created configurations for development, test and production environments • node_modules • Contains the node dependencies used by Ember CLI • public • Contains assets that should be copied as they are to the root of the packaged application • vendor • This folder should contains libraries which cannot be installed using bower or npm • The libraries in vendor should then be imported into the broccoli asset pipeline by adding in Brocfile.js/ember-cli-build.js • test • Contains helpers and resolver to run unit and integration tests using the Ember testing module • Cmd: ember test or http://localhost:4200/test in browser • Ember Cli uses Qunit as its testing library
  • 13. Supporting Files and Folder cont… • brocfile.js/ember-cli-build.js: • Build instructions for broccoli asset pipeline • Additional libraries included if we import the files • Eg: app.import(‘bower_components/bootstrap/dist/css/bootstrap.css’); • bower.json • Configuration file for bower and contains the dependencies of our application that need to installed via bower • package.json • Configuration file for npm and contains node.js dependencies required by our application
  • 14. Running the application • Cmd : ember server • By default runs on 4200 port • For different port • Cmd: ember server –port 4300 Or Add configuration in .ember-cli by adding {“port”: 4300}
  • 15. • Ember.js strongly relies on naming conventions. So, if you want the page /foo in your app, you will have the following: • a foo template, • a FooRoute, • a FooController, • and a FooView.
  • 16. Components • Router/Route • Controller • Model • View/Component • Templates
  • 18. The router • Routes are the root of all other concepts in Ember • The router drives the rest of the gears in ember router.js eg:- this.route(‘users’); Route class • Sets up the model (data) and the controller • Will take actions/events that bubble up it from the controller
  • 19. Models • Defines the data you need • Uses attributes for defining the data type: number, boolean, string, etc. • Also uses relational mapping for defining relationship between models: hasMany, belongsTo, etc.
  • 20. Controller • Takes the model from the route • Model can be an object or an array/collection • Is responsible for: • Mutating the model • User interaction • Page logic • Can define observable and computed properties
  • 21. Template(Handlebars markup) • Uses Handlebars as the rendering language • Mostly plain old HTML • Hooks to controller - provides the logic • Hooks to the model - provides the data
  • 22. View • A class for when doing DOM manipulation is necessary • If you need to do DOM manipulation, you should ask yourself what you may be doing wrong • Should not be used often
  • 23. Components • Reusable parts • Your own HTML tags/elements • Any part of your application that repeats is a candidate for a component • Ember comes with a bunch of these: • Input box helpers, dropdown menu, links, etc.
  • 24. Adapter If caching happens Architecture overview For a new Record
  • 25. Note on coupling - In Ember.js, templates get their properties from controllers, which decorate a model. - templates know about controllers and controllers know about models, but the reverse is not true. A model knows nothing about which (if any) controllers are decorating it, and a controller does not know which templates are presenting its properties. - For example, if the user navigates from /posts/1 to /posts/2, the PostController's model will change from store.findRecord('post', 1) to store.findRecord('post', 2). The template will update its representations of any properties on the model, as well as any computed properties on the controller that depend on the model.
  • 26. Example for routes and its components
  • 27. Few Codes • To define a new Ember class, call the extend() method on Ember.Object • Eg:- • Person = Ember.Object.extend({ say(thing) { var name = this.get('name'); alert(name + " says: " + thing); } }); • RETRIEVING A SINGLE RECORD • var post = this.store.findRecord('post', 1); // => GET /posts/1 • var post = this.store.peekRecord('post', 1); // => no network request • RETRIEVING MULTIPLE RECORDS • var posts = this.store.findAll('post'); // => GET /posts • var posts = this.store.peekAll('post'); // => no network request • QUERYING FOR MULTIPLE RECORDS • var peters = this.store.query('person', { name: 'Peter' }); // => GET to /persons?name=Peter
  • 28. FewNotes • EMBER.OBJECT • Ember implements its own object system. The base object is Ember.Object. All of the other objects in Ember extend Ember.Object. • user = Ember.Object.create() • user = Ember.Object.create({ firstName: hari', lastName: c' }) • Getter • user.firstName or user.get(‘firstName’) • CLASSES • var Person = Ember.Object.extend({ say: function (message) { alert(message); } }); • var bob = Person.create(); bob.say('hello world'); • // alerts "hello world" • Ember-Data • Ember-Data is a library that lets you retrieve records from a server, hold them in a Store, update them in the browser and, finally, save them back to the server. The Store can be configured with various adapters • RESTAdapter interacts with a JSON API • LSAdapter persists your data in the browser’s local storage
  • 29. Resources • http://guides.emberjs.com/ • http://emberwatch.com/tutorials.html • https://en.wikipedia.org/wiki/Ember.js • Ebook: Ember.js Web development with Ember CLI – Suchit Puri • Ebook: Ember-cli-101: An Ember.js book with ember-cli • Lynda.com, codeschool • Youtube tutorials • Dockyard.com ember tutorial

Notas del editor

  1. AJAX – Asynchronous Javascript and XML In 2007 – check from above image In 2008, Sproutcore become popular when Apple announced that MobileMe, iCloud application was using this framework. In 2011, Sproutcore 2 framework was renamed to Ember.js to distinguish from Sproutcore 1.x. Ember.js introduced the MVC design pattern to build the modern single page web application Latest version is Ember-cli (CLI – Command Line Interface) has more command line similar to Rails to generate codes… Eg., ember generate controller, … adapter, model, resources(routes and model)
  2. user = Ember.Object.create({ firstName: 'Sam', lastName: 'Smith' })
  3. Show the code from IDE Explain about
  4. Router: Entry point of the application Manages the state of the application by monitoring the URL patterns and then instantiates the Controller and Model objects Controller: Manage the transient state of the application, a state that is not persisted to the server Change or decorate the properties of the model object to present the users Model: Encapsulate the data on which controllers and views work Define properties and behavior View/Component: Encapsulate templates and enable us to make custom reusable elements Templates: Mostly handlebars templates are used Handlebar Templates are a mix of HTML markup and custom markup to bind the data present in controllers and models with the view Can also use other templates as well.. Like emblem,etc
  5. Person = Ember.Object.extend({ say(thing) { alert(thing); } }); var person = Person.create(); // create instances Person.say(‘test’); // call the specific method Eg:- To create with the initial value Person = Ember.Object.extend({ helloWorld() { alert("Hi, my name is " + this.get('name')); } }); var tom = Person.create({ name: "Tom Dale" }); tom.helloWorld(); // alerts "Hi, my name is Tom Dale"
  6. Most Ember.js applications use Ember Data,[ a data persistence library providing many of the facilities of an object-relational mapping (ORM). However it is also possible to use Ember.js without Ember Data.  However it is also easily configurable and can work with any server through the use of adapters and addons.[40]  JSON API has server library implementations for PHP, Node.js, Ruby, Python, Go, .NET and Java.[41] Connecting to a Java-Spring based server is also documented.[42] The first stable version of Ember Data (labelled 1.13 to align with Ember itself) was released on 18 June 2015.[43]