Last active
October 23, 2017 07:01
-
-
Save machty/9b614a00efd1d5ec7738f35c98f7ae0e to your computer and use it in GitHub Desktop.
New Twiddle
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 Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
firstName: 'Alex', | |
lastName: 'Matchneer', | |
fullName: auto(get => | |
`${get('firstName')} ${get('lastName')}` | |
), | |
fullNameCaps: auto(get => get('fullName').toUpperCase()), | |
// shorthand | |
fullNameLowercase: auto(g => g('fullName').toLowerCase()), | |
dynamicAlias: auto(g => g(g('aliasedProperty'))), | |
aliasedProperty: 'fullNameCaps', | |
// other possible use cases: | |
// shorthand for initializing arrays/objects | |
// that shouldn't be shared between instances | |
// (note: JS class syntax has an initializer | |
// syntax that would obselete this): | |
maybeUnsafeProtoArray: [], | |
instanceArray: auto(() => []), | |
aliasedPropertyList: [ | |
'firstName', 'lastName', 'fullName', | |
'fullNameCaps', 'fullNameLowercase', | |
], | |
actions: { | |
setAliasedProperty(prop) { | |
this.set('aliasedProperty', prop); | |
} | |
} | |
}); | |
function auto(fn) { | |
let dependentKeys = []; | |
let getAndTrack; | |
let cp = new Ember.ComputedProperty(function(property) { | |
dependentKeys.length = 0; | |
if (!getAndTrack) { | |
getAndTrack = (key, track = true) => { | |
if (track && dependentKeys.indexOf(key) === -1) { | |
dependentKeys.push(key); | |
} | |
return Ember.get(this, key); | |
}; | |
} | |
return fn.call(this, getAndTrack, property); | |
}, { dependentKeys }); | |
return cp; | |
} |
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