Skip to content

Instantly share code, notes, and snippets.

@nucleartide
Created September 16, 2017 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nucleartide/e23e943ce5826f3aa0ae37ef3be8b611 to your computer and use it in GitHub Desktop.
Save nucleartide/e23e943ce5826f3aa0ae37ef3be8b611 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
const MyComponent = Ember.Component.extend({
});
MyComponent.reopenClass({
positionalParams: ['state', 'setState']
});
export default MyComponent;
import Ember from 'ember';
const WithState = Ember.Component.extend({
init() {
this._super(...arguments);
const {
propName,
propUpdaterName,
initialValue,
} = this
this[propName] = initialValue
this[propUpdaterName] = newValue => this.set(propName, newValue)
},
});
WithState.reopenClass({
positionalParams: ['componentName', 'propName', 'propUpdaterName', 'initialValue'],
});
export default WithState;
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
{{!-- normal --}}
{{my-component state=0 setState=(action (action (mut state)) 5)}}
{{!-- api sketch, doesn't work since we can't dynamically generate components --}}
{{!--
{{#with (state "count" "setCount" 0) as |enhance|}}
{{#enhance (component 'some-component') as |enhancedComponent|}}
{{enhancedComponent}}
{{/enhance}}
{{/with}}
--}}
{{!-- refined version that works in ember --}}
{{#with-state 'my-component' 'count' 'setCount' 0 as |my-component|}}
{{component my-component}}
{{/with-state}}
{{!--<button type="button" onclick={{action setState 5}}>{{state}}</button>--}}
{{log state}}
{{log setState}}
{{yield (component componentName
[propName]=(get this propName)
[propUpdaterName]=(get this propUpdaterName)
)}}
{
"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",
"ember-spread": "1.2.2"
},
"addons": {
"ember-data": "2.12.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment