-
-
Save iirving/27a59a1286e398d7f181c5641f2950de to your computer and use it in GitHub Desktop.
Limit with init
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
init() { | |
this._super(...arguments); | |
const showOnly = this.get('showOnly'); | |
console.log('showOnly', showOnly); | |
if (showOnly && Number.isInteger( parseInt(showOnly))) { | |
this.set('people', this.get('people').slice(0, parseInt(showOnly))); | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.10.1", | |
"description": "Limiting the number of elements displayed in a Ember Component", | |
"homepage": "http://www.falsepositives.com/index.php/2016/07/20/limiting-the-number-of-elements-displayed-in-a-ember-component/", | |
"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
as explained http://www.falsepositives.com/index.php/2016/07/20/limiting-the-number-of-elements-displayed-in-a-ember-component/