FIX: Should be possible to save an empty theme_field in the editor

Removing the theme_field JS object when the value was empty caused the server to maintain the previous value, making it impossible to delete the content of a field.
This commit is contained in:
David Taylor 2019-02-19 21:49:31 +00:00
parent 5d75bd4831
commit d08939ab05

View File

@ -60,7 +60,7 @@ const Theme = RestModel.extend({
};
},
@computed("fieldNames", "theme_fields.@each.error")
@computed("fieldNames", "theme_fields.[]", "theme_fields.@each.error")
fields(fieldNames) {
const hash = {};
Object.keys(fieldNames).forEach(target => {
@ -208,11 +208,15 @@ const Theme = RestModel.extend({
this.theme_fields.pushObject(field);
themeFields[key] = field;
} else {
if (Ember.isEmpty(value)) {
this.theme_fields.removeObject(themeFields[key]);
themeFields[key] = null;
} else {
existingField.value = value;
const changed =
(Ember.isEmpty(existingField.value) && !Ember.isEmpty(value)) ||
(Ember.isEmpty(value) && !Ember.isEmpty(existingField.value));
existingField.value = value;
if (changed) {
// Observing theme_fields.@each.value is too slow, so manually notify
// if the value goes to/from blank
this.notifyPropertyChange("theme_fields.[]");
}
}
},