Skip to content

Instantly share code, notes, and snippets.

@chriskrycho
Last active January 26, 2017 15:48
Show Gist options
  • Save chriskrycho/570f8184875e82dd4c1c3862220b2766 to your computer and use it in GitHub Desktop.
Save chriskrycho/570f8184875e82dd4c1c3862220b2766 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
const { computed, Controller, get, isNone, set } = Ember;
const describe = (value) =>
isNone(value)
? '`undefined` or `null`'
: value === ''
? '<empty string>'
: value;
export default Controller.extend({
appName: 'Ember Twiddle',
theSubmittedValue: undefined,
theValue: undefined,
descriptiveValue: computed('theValue', function() {
const theValue = get(this, 'theValue');
return describe(theValue);
}),
descriptiveSubmitted: computed('theSubmittedValue', function() {
return describe(get(this, 'theSubmittedValue'));
}),
actions: {
setValue(value = '') {
return set(this, 'theSubmittedValue', value);
},
}
});
<h1>Welcome to {{appName}}</h1>
<form {{action 'setValue' theValue on='submit'}}>
<input value={{theValue}} onchange={{action (mut theValue) value='target.value'}}>
<button type='submit' onclick={{action 'setValue' theValue}}>submit!</button>
</form>
<p><code>theValue</code> is {{descriptiveValue}}</p>
<p><code>theSubmittedValue</code> is {{descriptiveSubmitted}}</p>
{
"version": "0.11.0",
"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.10.2",
"ember-data": "2.11.0",
"ember-template-compiler": "2.10.2",
"ember-testing": "2.10.2"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment