Last active
October 27, 2017 13:16
-
-
Save akatov/5e8552ffcde9a4934751a2dbe89fb784 to your computer and use it in GitHub Desktop.
@each test
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 Ember from 'ember'; | |
const elFn = el => el.a + ', ' + el.b; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
list: [{a: 1, b: 0}, {a: 2, b:6}], | |
dummyComputed: Ember.computed('list', function() { | |
return this.get('list').map(elFn); | |
}), | |
dummyComputedArr: Ember.computed('list.[]', function() { | |
return this.get('list').map(elFn); | |
}), | |
dummyComputedEach: Ember.computed('list.@each', function() { | |
return this.get('list').map(elFn); | |
}), | |
listStandard: Ember.computed.map('list', elFn), | |
listArray: Ember.computed.map('list.[]', elFn), | |
listEach: Ember.computed.map('list.@each', elFn), | |
listEachAs: Ember.computed.map('[email protected]', elFn), | |
listEachBs: Ember.computed.map('[email protected]', elFn), | |
listEachBoth: Ember.computed.map('list.@each.{a,b}', elFn), | |
theAs: Ember.computed.map('[email protected]', function(el) { | |
return el.b; | |
}), | |
actions: { | |
changeA() { | |
Ember.set(this, 'list.firstObject.a', Ember.get(this, 'list.firstObject.a') + 1); | |
}, | |
changeB() { | |
Ember.set(this, 'list.firstObject.b', Ember.get(this, 'list.firstObject.b') + 1); | |
}, | |
add() { | |
this.list.pushObject({a: 3, b: 10}); | |
} | |
} | |
}); |
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
body { | |
margin: 12px 16px; | |
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
font-size: 12pt; | |
} | |
.l { | |
float: left; | |
width: 200px; | |
height: 100px; | |
margin: 1em; | |
} | |
.after-box { | |
clear: left; | |
} |
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 Ember from 'ember'; | |
export default function destroyApp(application) { | |
Ember.run(application, 'destroy'); | |
} |
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 Resolver from '../../resolver'; | |
import config from '../../config/environment'; | |
const resolver = Resolver.create(); | |
resolver.namespace = { | |
modulePrefix: config.modulePrefix, | |
podModulePrefix: config.podModulePrefix | |
}; | |
export default resolver; |
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 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; | |
} |
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 resolver from './helpers/resolver'; | |
import { | |
setResolver | |
} from 'ember-qunit'; | |
setResolver(resolver); |
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.12.1", | |
"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.12.0", | |
"ember-template-compiler": "2.12.0", | |
"ember-testing": "2.12.0" | |
}, | |
"addons": { | |
"ember-data": "2.12.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment