Skip to content

Instantly share code, notes, and snippets.

@marcoow
Created November 3, 2016 11:56
Show Gist options
  • Save marcoow/f046c7c78910586b2ca8bd5b3778c25f to your computer and use it in GitHub Desktop.
Save marcoow/f046c7c78910586b2ca8bd5b3778c25f to your computer and use it in GitHub Desktop.
depend-on-first-element
import Ember from 'ember';
const { computed, Object: O } = Ember;
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
things: [
O.create({ value: 1 }),
O.create({ value: 2 }),
O.create({ value: 3 })
],
doubleThing: computed('things.firstObject.value', function() {
return this.get('things.firstObject.value') * 2;
}),
actions: {
incthings() {
this.get('things').forEach((thing) => thing.incrementProperty('value'));
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{#each things as |thing|}}
{{thing.value}}
{{/each}}
<br>
<br>
{{doubleThing}}
<br>
<br>
<button onclick={{action 'incthings'}}>inc</button>
import Ember from 'ember';
export default function destroyApp(application) {
Ember.run(application, 'destroy');
}
import Resolver from '../../resolver';
import config from '../../config/environment';
const resolver = Resolver.create();
resolver.namespace = {
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix
};
export default resolver;
import Ember from 'ember';
import Application from '../../app';
import config from '../../config/environment';
const { run } = Ember;
const assign = Ember.assign || Ember.merge;
export default function startApp(attrs) {
let application;
let attributes = assign({rootElement: "#test-root"}, config.APP);
attributes = assign(attributes, attrs); // use defaults, but you can override;
run(() => {
application = Application.create(attributes);
application.setupForTesting();
application.injectTestHelpers();
});
return application;
}
import resolver from './helpers/resolver';
import {
setResolver
} from 'ember-qunit';
setResolver(resolver);
{
"version": "0.10.6",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.9.0",
"ember-data": "2.9.0",
"ember-template-compiler": "2.9.0",
"ember-testing": "2.9.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment