Skip to content

Instantly share code, notes, and snippets.

@Serabe
Created July 21, 2016 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Serabe/b7b4066121d5c55e1be3a5cc427c1144 to your computer and use it in GitHub Desktop.
Save Serabe/b7b4066121d5c55e1be3a5cc427c1144 to your computer and use it in GitHub Desktop.
Limit with init
import Ember from 'ember';
export default Ember.Component.extend({
init() {
this._super(...arguments);
const showOnly = this.get('showOnly');
if (showOnly && Number.isInteger( parseInt(showOnly))) {
this.set('people', this.get('people').slice(0, parseInt(showOnly)));
}
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
model: [
{ body: 'A' },
{ body: 'B' },
{ body: 'C' },
{ body: 'D' },
{ body: 'E' },
{ body: 'F' },
],
limit: 2,
actions: {
incLimit() {
this.incrementProperty('limit');
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
{{limit-each showOnly=limit people=model}}
<br>
<br>
<button {{action "incLimit"}}>
Increment limit (currently {{limit}})
</button>
{{yield}}
<ul>
{{#each people as |person|}}
<li>{{person.body}}</li>
{{/each}}
</ul>
{
"version": "0.10.1",
"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.6.0",
"ember-data": "2.6.1",
"ember-template-compiler": "2.6.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment