Created
April 16, 2021 14:51
-
-
Save pgengler/247cab837813a81d3b548ba9ad0df9f9 to your computer and use it in GitHub Desktop.
Array tracking/computed
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 Controller from '@ember/controller'; | |
import { tracked as glimmerTracked } from '@glimmer/tracking'; | |
import { tracked as builtinsTracked } from 'tracked-built-ins'; | |
import { action, computed } from '@ember/object'; | |
export default class ApplicationController extends Controller { | |
appName = 'Ember Twiddle'; | |
untrackedArray = []; | |
@glimmerTracked plainTrackedArray = []; | |
@builtinsTracked builtinsTrackedArray = builtinsTracked([]); | |
count = 1; | |
@computed('untrackedArray.length') | |
get untrackedArrayLength() { | |
return this.untrackedArray.length; | |
} | |
@computed('plainTrackedArray.length') | |
get plainTrackedArrayLength() { | |
return this.plainTrackedArray.length; | |
} | |
@computed('builtinsTrackedArray.length') | |
get builtinsTrackedArrayLength() { | |
return this.builtinsTrackedArray.length; | |
} | |
@action addWithPush() { | |
let index = this.count++; | |
this.untrackedArray.push({ index }); | |
this.plainTrackedArray.push({ index }); | |
this.builtinsTrackedArray.push({ index }); | |
} | |
@action addWithPushObject() { | |
let index = this.count++; | |
this.untrackedArray.pushObject({ index }); | |
this.plainTrackedArray.pushObject({ index }); | |
this.builtinsTrackedArray.pushObject({ index }); | |
} | |
} |
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.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", | |
"tracked-built-ins": "1.0.2" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment