Skip to content

Instantly share code, notes, and snippets.

@tehmaestro
Last active January 22, 2021 14:01
Show Gist options
  • Save tehmaestro/4b683682b5f533f1bec3522ae9b3d5f9 to your computer and use it in GitHub Desktop.
Save tehmaestro/4b683682b5f533f1bec3522ae9b3d5f9 to your computer and use it in GitHub Desktop.
New Twiddle
import Component from '@glimmer/component';
import { get, set, computed } from '@ember/object';
export default class extends Component {
// Why does this work? Isn't it like A.?
get firstArrayObject() {
return this.args.myArray[0];
}
// A. This does not work
// I believe this is because we need to let the getter know about the dependency. Using `set` is not enough
get firstArrayObjectCount() {
return this.args.myArray[0].count;
}
// B. This works.
//I believe it is because using `get`, we let the getter know that there is a dependency in there
/**
get firstArrayObjectCount() {
return get(this.args.myArray[0], 'count');
}
**/
}
import Component from '@glimmer/component';
import { action, set, get } from '@ember/object';
import { tracked } from '@glimmer/tracking';
export default class extends Component {
myArray = [{count: 0}, {count: 0}];
@action
doSomething() {
set(this.myArray[0], 'count', this.myArray[0].count + 1);
}
}
import Controller from '@ember/controller';
export default class ApplicationController extends Controller {
appName = 'Ember Twiddle';
}
<h1>Welcome to {{this.appName}}</h1>
<br>
<br>
<Parent />
<br>
<br>
<div>
First array object with count property: {{this.firstArrayObject.count}}
</div>
<div>
First array object count computed property: {{this.firstArrayObjectCount}}
</div>
<button {{on 'click' this.doSomething}}>Click me</button>
<br/>
<br/>
<div>
<Child @myArray={{this.myArray}} />
</div>
{
"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