c98130cc08
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
27 lines
727 B
JavaScript
27 lines
727 B
JavaScript
import Mixin from '@ember/object/mixin';
|
|
import { get } from '@ember/object';
|
|
|
|
/**
|
|
* Used for create-type Routes
|
|
*
|
|
* 'repo' is standardized across the app
|
|
* 'item' is standardized across the app
|
|
* they could be replaced with `getRepo` and `getItem`
|
|
*/
|
|
export default Mixin.create({
|
|
beforeModel: function() {
|
|
this._super(...arguments);
|
|
this.repo.invalidate();
|
|
},
|
|
deactivate: function() {
|
|
this._super(...arguments);
|
|
// TODO: This is dependent on ember-changeset
|
|
// Change changeset to support ember-data props
|
|
const item = get(this.controller, 'item.data');
|
|
// TODO: Look and see if rollbackAttributes is good here
|
|
if (get(item, 'isNew')) {
|
|
item.destroyRecord();
|
|
}
|
|
},
|
|
});
|