28 lines
783 B
JavaScript
28 lines
783 B
JavaScript
import Mixin from '@ember/object/mixin';
|
|
import removeRecord from 'vault/utils/remove-record';
|
|
|
|
// removes Ember Data records from the cache when the model
|
|
// changes or you move away from the current route
|
|
export default Mixin.create({
|
|
modelPath: 'model',
|
|
unloadModel() {
|
|
let { modelPath } = this;
|
|
/* eslint-disable-next-line ember/no-controller-access-in-routes */
|
|
let model = this.controller.get(modelPath);
|
|
if (!model || !model.unloadRecord) {
|
|
return;
|
|
}
|
|
removeRecord(this.store, model);
|
|
model.destroy();
|
|
// it's important to unset the model on the controller since controllers are singletons
|
|
this.controller.set(modelPath, null);
|
|
},
|
|
|
|
actions: {
|
|
willTransition() {
|
|
this.unloadModel();
|
|
return true;
|
|
},
|
|
},
|
|
});
|