1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/mixins/undo-changes.js.es6

127 Zeilen
3,5 KiB
Text

2020-04-20 11:41:13 +02:00
import { listProperties } from '../lib/wizard';
import { default as wizardSchema } from '../lib/wizard-schema';
import { set, get } from "@ember/object";
import Mixin from "@ember/object/mixin";
import { observes } from 'discourse-common/utils/decorators';
import { deepEqual } from 'discourse-common/lib/object';
2020-04-20 11:41:13 +02:00
export default Mixin.create({
didInsertElement() {
this._super(...arguments);
this.setupObservers();
2020-04-20 11:41:13 +02:00
const obj = this.get(this.componentType);
2020-04-20 11:41:13 +02:00
this.setProperties({
originalObject: JSON.parse(JSON.stringify(obj)),
undoIcon: obj.isNew ? 'times' : 'undo',
undoKey: `admin.wizard.${obj.isNew ? 'clear' : 'undo'}`
})
},
willDestroyElement() {
this._super(...arguments);
this.removeObservers();
},
2020-04-20 11:41:13 +02:00
removeObservers(objType=null) {
const componentType = this.componentType;
const obj = this.get(componentType);
2020-04-20 11:41:13 +02:00
let opts = {
objectType: objType || obj.type
}
listProperties(componentType, opts).forEach(property => {
obj.removeObserver(property, this, this.toggleUndo);
});
},
2020-04-20 11:41:13 +02:00
setupObservers(objType=null) {
const componentType = this.componentType;
const obj = this.get(componentType);
2020-04-20 11:41:13 +02:00
let opts = {
objectType: objType || obj.type
}
2020-04-20 11:41:13 +02:00
listProperties(componentType, opts).forEach(property => {
obj.addObserver(property, this, this.toggleUndo);
});
},
2020-04-20 11:41:13 +02:00
revertToOriginal(revertBasic=false) {
const original = JSON.parse(JSON.stringify(this.originalObject));
const componentType = this.componentType;
const obj = this.get(componentType);
const objSchema = wizardSchema[componentType];
const basicDefaults = objSchema.basic;
2020-04-20 11:41:13 +02:00
if (revertBasic) {
Object.keys(basicDefaults).forEach(property => {
let value;
2020-04-20 11:41:13 +02:00
if (original.hasOwnProperty(property)) {
value = get(original, property);
} else if (basicDefaults.hasOwnProperty(property)) {
value = get(basicDefaults, property);
}
2020-04-20 11:41:13 +02:00
set(obj, property, value);
});
}
2020-04-20 11:41:13 +02:00
if (objSchema.types && obj.type) {
let typeDefaults = objSchema.types[obj.type];
2020-04-20 11:41:13 +02:00
Object.keys(typeDefaults).forEach(property => {
let value;
if (original.type === obj.type && original.hasOwnProperty(property)) {
value = get(original, property);
} else if (typeDefaults.hasOwnProperty(property)) {
value = get(typeDefaults, property);
}
2020-04-20 11:41:13 +02:00
set(obj, property, value);
});
}
},
2020-04-20 11:41:13 +02:00
toggleUndo() {
const current = this.get(this.componentType);
const original = this.originalObject;
this.set('showUndo', !deepEqual(current, original));
2020-04-20 11:41:13 +02:00
},
2020-04-20 11:41:13 +02:00
actions: {
undoChanges() {
const componentType = this.componentType;
const original = this.get('originalObject');
const obj = this.get(componentType);
2020-04-20 11:41:13 +02:00
this.removeObservers(obj.type);
this.revertToOriginal(true);
this.set('showUndo', false);
this.setupObservers(this.get(componentType).type);
},
2020-04-20 11:41:13 +02:00
changeType(type) {
const componentType = this.componentType;
const original = this.get('originalObject');
const obj = this.get(componentType);
2020-04-20 11:41:13 +02:00
this.removeObservers(obj.type);
obj.set('type', type);
this.revertToOriginal();
this.set('showUndo', type !== original.type);
this.setupObservers(type);
},
mappedFieldUpdated(property, mappedComponent, type) {
const obj = this.get(this.componentType);
obj.notifyPropertyChange(property);
2020-04-20 11:41:13 +02:00
}
}
})