Skip to content

Instantly share code, notes, and snippets.

@nickschot
Last active February 6, 2019 11:07
Show Gist options
  • Save nickschot/d3b2742a7156454f2ece80d6c26d2581 to your computer and use it in GitHub Desktop.
Save nickschot/d3b2742a7156454f2ece80d6c26d2581 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
import { isEmpty } from '@ember/utils';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
actions: {
async validate(changeset){
isEmpty(changeset);
}
}
});
import Model from 'ember-data/model';
import attr from 'ember-data/attr';
import { belongsTo, hasMany } from 'ember-data/relationships';
export default Model.extend({
size: attr('string')
});
import Ember from 'ember';
export default Ember.Route.extend({
model(){
return this.store.createRecord('box', { size: 'one' });
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
{{#with (changeset model) as |box|}}
{{input type="text" value=box.size}}
<button {{action 'validate' box}}>Validate</button>
{{/with}}
<br>
<br>
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2",
"ember-changeset": "2.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment