Skip to content

Instantly share code, notes, and snippets.

@Corbzilla
Forked from robbiespeed/controllers.application.js
Last active January 7, 2022 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save Corbzilla/f167aeead21a132f2183cc081dd35223 to your computer and use it in GitHub Desktop.
Save Corbzilla/f167aeead21a132f2183cc081dd35223 to your computer and use it in GitHub Desktop.
Ember Test
import Ember from 'ember';
import { computed, get } from '@ember/object';
export default Ember.Controller.extend({
isButtonOn: false,
// This toggle will run when the button is pressed, it should toggle the isButtonOn property
// which should trigger the value of text to recompute
// -- begin edit area
toggle () {
},
text: computed(function () {
// -- end edit area
return get(this, 'isButtonOn') ?
'Congrats you\'ve fixed it and turned on the button' :
'You must fix controllers/application.js and press the button';
}),
});
<h1>Test</h1>
<button {{action toggle}}>
Button ({{if isButtonOn "On" "Off"}})
</button>
<br>
<br>
The text below should change when the button has been toggled
<br>
<br>
{{text}}
<br>
<br>
{
"version": "0.15.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.2.2",
"ember-template-compiler": "3.2.2",
"ember-testing": "3.2.2"
},
"addons": {
"ember-data": "3.2.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment