Skip to content

Instantly share code, notes, and snippets.

@optikalefx
Last active July 19, 2017 03:56
Show Gist options
  • Save optikalefx/9d711f4d520eafa901fb16284916428c to your computer and use it in GitHub Desktop.
Save optikalefx/9d711f4d520eafa901fb16284916428c to your computer and use it in GitHub Desktop.
dumb table
import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'table',
sort: false,
headers: Ember.computed('passedRows', function() {
return Object.keys(this.get('passedRows')[0]);
}),
filter: Ember.observer('filterValue', function() {
console.log('filter', this.get('filterValue'));
}),
actions: {
sort(header) {
if (!this.get('sort')) return;
let sorted = this.get('passedRows').sortBy(header);
this.set('passedRows', sorted);
}
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
rows: [
{ name: 'sean', age: 29 },
{ name: 'tony', age: 26 }
],
actions: {
print(row) {
console.log(row.name);
}
}
});
{{! an external piece of UI that the component will use the value of to do things, like filter }}
<input type="text" oninput={{action (mut filterValue) value="target.value"}}>
{{#my-component sort=true passedRows=rows filterValue=filterValue}}
{{#each rows as |row|}}
<tr>
<td><button onclick={{action 'print' row}}>{{row.name}}</button></td>
<td>{{row.age}}</td>
</tr>
{{/each}}
{{/my-component}}
{{! the table tag IS the component itself }}
<thead>
<tr>
{{#each headers as |header|}}
<th onclick={{action 'sort' header}}>{{header}}</th>
{{/each}}
</tr>
</thead>
<tbody>
{{yield}}
</tbody>
{
"version": "0.12.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.12.0",
"ember-template-compiler": "2.12.0",
"ember-testing": "2.12.0"
},
"addons": {
"ember-data": "2.12.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment