Skip to content

Instantly share code, notes, and snippets.

@SkoebaSteve
Last active April 4, 2022 08:42
Show Gist options
  • Save SkoebaSteve/deb2eaad3d36f31d474a0dfbb118c322 to your computer and use it in GitHub Desktop.
Save SkoebaSteve/deb2eaad3d36f31d474a0dfbb118c322 to your computer and use it in GitHub Desktop.
New Twiddle
<div>{{this.counter}}</div>
<button local-class="run" type="button" {{on "click" this.countToTenAction}}>Run the local action</button>
import Component from '@glimmer/component';
import { action } from '@ember/object';
import { tracked } from '@glimmer/tracking';
export default class extends Component {
@tracked counter = 0;
@action async countToTenAction() {
for (let i of new Array(10)) {
console.log(this.counter);
await new Promise((resolve) =>
setTimeout(() => {
this.counter = this.counter + 1;
resolve();
}, 1000)
)
}
}
}
import Controller from '@ember/controller';
import { action } from '@ember/object';
import { tracked } from '@glimmer/tracking';
export default class ApplicationController extends Controller {
appName = 'Ember Twiddle';
@tracked showComponent = true;
@action toggleButtons() {
this.showComponent = !this.showComponent;
}
}
{{#if this.showComponent}}
<div>
<MyComponent />
</div>
{{/if}}
<button {{on "click" this.toggleButtons}}>I don't need this component anymore</button>
{
"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