Skip to content

Instantly share code, notes, and snippets.

@htatche
Last active May 10, 2016 22:04
Show Gist options
  • Save htatche/dc0b2ce744e50487a2002a096cf49576 to your computer and use it in GitHub Desktop.
Save htatche/dc0b2ce744e50487a2002a096cf49576 to your computer and use it in GitHub Desktop.
Todo simple app
// app/components/add-todo.js
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
submit() {
const text = this.get('text');
this.get('onAdd')(text);
}
}
});
// app/components/todo-widget.js
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
addTodo(text) {
this.get('todos').pushObject({ text: text });
}
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: 'none'
});
Router.map(function() {
this.route('todos');
});
export default Router;
import Ember from 'ember';
export default Ember.Route.extend({
model() {
return [
{ text: "Erase AngularJS" },
{ text: "Install Ember.JS" },
{ text: "Enjoy a new life" }
]
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
<form {{action "submit" on="submit"}}>
{{input value=text}} <button type="submit">OK</button>
</form>
{{! app/templates/components/todo-widget.hbs }}
{{add-todo onAdd=(action 'addTodo')}}
<ul>
{{#each todos as |todo|}}
<li>{{ todo.text }}</li>
{{/each}}
</ul>
{{todo-widget todos=model}}
{
"version": "0.8.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.5.1",
"ember-data": "2.5.2",
"ember-template-compiler": "2.5.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment