Last active
August 29, 2015 14:27
-
-
Save pifantastic/560e3e5ab7ed92dc7d0a to your computer and use it in GitHub Desktop.
ENUM
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'; | |
// Mock underscore. | |
let _ = { | |
includes: function(val) { | |
return this.indexOf(val) !== -1; | |
} | |
}; | |
function enumProp(def, valid) { | |
return function(key, val) { | |
if (!val) { | |
return def; | |
} else if (val) { | |
if (typeof valid === 'function') { | |
Ember.assert(`!!! Invalid value supplied for enum: ${val}.`, valid(val)); | |
} | |
else { | |
Ember.assert(`!!! Invalid value supplied for enum: ${val}. Valid values: [${valid.join(', ')}] !!!`, valid.indexOf(val) !== -1); | |
} | |
} | |
return val; | |
}.property(); | |
} | |
export default Ember.Component.extend({ | |
type: enumProp('default', ['default', 'foo', 'bar']), | |
thing: enumProp('apple', _.includes.bind(['apple', 'orange', 'pear'])), | |
}); |
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' | |
}); |
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.4.7", | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.6/ember.js", | |
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/1.13.7/ember-data.js", | |
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.6/ember-template-compiler.js" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment