Skip to content

Instantly share code, notes, and snippets.

@JackieChiles
Last active June 24, 2020 21:12
Show Gist options
  • Save JackieChiles/5de091eac3b3d09c8011687b700dd8fe to your computer and use it in GitHub Desktop.
Save JackieChiles/5de091eac3b3d09c8011687b700dd8fe to your computer and use it in GitHub Desktop.
Glimmer Table Test
import Component from '@glimmer/component';
import { action, set } from '@ember/object';
import { A } from '@ember/array';
export default class extends Component {
rows = A([
{ name: 'a', age: 5 },
{ name: 'b', age: 10 },
{ name: 'c', age: 15 }
])
@action
changeValue() {
set(this.rows[0], 'age', this.rows[0].age + 1);
}
@action
pushRow() {
this.rows.pushObject({ name: 'd', age: 20 });
}
}
import Component from '@glimmer/component';
export default class extends Component {
columns = [
{ id: 'name' },
{ id: 'age' }
];
}
import Controller from '@ember/controller';
export default class ApplicationController extends Controller {
appName = 'Glimmer Table Test';
}
<TestTable @rows={{this.rows}} />
<button {{on "click" this.changeValue}}>Change Value</button>
<button {{on "click" this.pushRow}}>Push Row</button>
{{#each @rows as |row|}}
<div>
{{#each columns as |column|}}
<span>{{get row column.id}}</span>
{{/each}}
</div>
{{/each}}
{
"version": "0.17.1",
"EmberENV": {
"FEATURES": {},
"_TEMPLATE_ONLY_GLIMMER_COMPONENTS": false,
"_APPLICATION_TEMPLATE_WRAPPER": true,
"_JQUERY_INTEGRATION": true
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js",
"ember": "3.18.1",
"ember-template-compiler": "3.18.1",
"ember-testing": "3.18.1"
},
"addons": {
"@glimmer/component": "1.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment