Skip to content

Instantly share code, notes, and snippets.

@amk221
Last active July 10, 2020 13:48
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 amk221/e73d9229d22fafae86dcae058e6b6737 to your computer and use it in GitHub Desktop.
Save amk221/e73d9229d22fafae86dcae058e6b6737 to your computer and use it in GitHub Desktop.
ED Tracked
import Controller from '@ember/controller';
import { action } from '@ember/object';
export default class ApplicationController extends Controller {
@action
save() {
this.model.setProperties(this.changeset);
console.log(this.changeset.name)
console.log(this.model.name)
}
}
import Model from 'ember-data/model';
/*
import attr from 'ember-data/attr';
import { belongsTo, hasMany } from 'ember-data/relationships';
*/
export default class extends Model {
}
import Route from '@ember/routing/route';
import { tracked } from '@glimmer/tracking';
import { inject } from '@ember/service';
export default class ApplicationRoute extends Route {
@inject store;
model() {
return this.store.createRecord('foo', {
name: 'foo 1'
});
}
setupController(controller, model) {
super.setupController(...arguments);
controller.changeset = new class Changeset {
@tracked name = model.name;
}
}
}
Change the input in the text field, then press save, then check the console...
<br><br>
<Input @value={{this.changeset.name}} />
<br><br>
Name: {{this.changeset.name}}
<br><br>
<button {{on "click" this.save}}>Save</button>
{
"version": "0.17.1",
"EmberENV": {
"FEATURES": {},
"_TEMPLATE_ONLY_GLIMMER_COMPONENTS": false,
"_APPLICATION_TEMPLATE_WRAPPER": true,
"_JQUERY_INTEGRATION": true
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js",
"ember": "3.18.1",
"ember-template-compiler": "3.18.1",
"ember-testing": "3.18.1"
},
"addons": {
"@glimmer/component": "1.0.0",
"ember-data": "3.18.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment