discourse/app/assets/javascripts/admin/models/theme.js.es6

195 lines
4.7 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import RestModel from "discourse/models/rest";
import { default as computed } from "ember-addons/ember-computed-decorators";
import { popupAjaxError } from "discourse/lib/ajax-error";
const THEME_UPLOAD_VAR = 2;
2018-08-30 15:23:15 -04:00
export const THEMES = "themes";
export const COMPONENTS = "components";
const SETTINGS_TYPE_ID = 5;
2018-08-30 15:23:15 -04:00
const Theme = RestModel.extend({
2018-03-28 17:02:34 -04:00
FIELDS_IDS: [0, 1],
2019-01-11 11:54:23 -05:00
isActive: Ember.computed.or("default", "user_selectable"),
isPendingUpdates: Ember.computed.gt("remote_theme.commits_behind", 0),
hasEditedFields: Ember.computed.gt("editedFields.length", 0),
2018-03-28 17:02:34 -04:00
2018-06-15 11:03:24 -04:00
@computed("theme_fields")
themeFields(fields) {
if (!fields) {
2018-06-15 11:03:24 -04:00
this.set("theme_fields", []);
return {};
}
let hash = {};
fields.forEach(field => {
2018-06-15 11:03:24 -04:00
if (!field.type_id || this.get("FIELDS_IDS").includes(field.type_id)) {
hash[this.getKey(field)] = field;
}
});
return hash;
},
@computed("theme_fields", "theme_fields.[]")
uploads(fields) {
if (!fields) {
return [];
}
2018-06-15 11:03:24 -04:00
return fields.filter(
f => f.target === "common" && f.type_id === THEME_UPLOAD_VAR
);
},
2018-08-30 15:23:15 -04:00
@computed("theme_fields", "theme_fields.@each.error")
isBroken(fields) {
return (
fields && fields.some(field => field.error && field.error.length > 0)
);
},
@computed("theme_fields.[]")
editedFields(fields) {
return fields.filter(
2019-01-11 11:54:23 -05:00
field => !Ember.isBlank(field.value) && field.type_id !== SETTINGS_TYPE_ID
);
2018-08-30 15:23:15 -04:00
},
@computed("remote_theme.last_error_text")
remoteError(errorText) {
if (errorText && errorText.length > 0) {
return errorText;
}
},
2018-06-15 11:03:24 -04:00
getKey(field) {
return `${field.target} ${field.name}`;
},
2018-06-15 11:03:24 -04:00
hasEdited(target, name) {
if (name) {
2019-01-11 11:54:23 -05:00
return !Ember.isEmpty(this.getField(target, name));
} else {
let fields = this.get("theme_fields") || [];
2018-06-15 11:03:24 -04:00
return fields.any(
2019-01-11 11:54:23 -05:00
field => field.target === target && !Ember.isEmpty(field.value)
2018-06-15 11:03:24 -04:00
);
}
},
getError(target, name) {
let themeFields = this.get("themeFields");
2018-06-15 11:03:24 -04:00
let key = this.getKey({ target, name });
let field = themeFields[key];
return field ? field.error : "";
},
getField(target, name) {
let themeFields = this.get("themeFields");
2018-06-15 11:03:24 -04:00
let key = this.getKey({ target, name });
let field = themeFields[key];
return field ? field.value : "";
},
removeField(field) {
this.set("changed", true);
field.upload_id = null;
field.value = null;
return this.saveChanges("theme_fields");
},
setField(target, name, value, upload_id, type_id) {
this.set("changed", true);
let themeFields = this.get("themeFields");
2018-06-15 11:03:24 -04:00
let field = { name, target, value, upload_id, type_id };
// slow path for uploads and so on
if (type_id && type_id > 1) {
let fields = this.get("theme_fields");
2018-06-15 11:03:24 -04:00
let existing = fields.find(
f => f.target === target && f.name === name && f.type_id === type_id
);
if (existing) {
existing.value = value;
existing.upload_id = upload_id;
} else {
fields.push(field);
}
return;
}
// fast path
2018-06-15 11:03:24 -04:00
let key = this.getKey({ target, name });
let existingField = themeFields[key];
if (!existingField) {
this.theme_fields.push(field);
themeFields[key] = field;
} else {
existingField.value = value;
}
},
@computed("childThemes.[]")
child_theme_ids(childThemes) {
if (childThemes) {
return childThemes.map(theme => Ember.get(theme, "id"));
}
},
removeChildTheme(theme) {
const childThemes = this.get("childThemes");
childThemes.removeObject(theme);
return this.saveChanges("child_theme_ids");
},
2018-06-15 11:03:24 -04:00
addChildTheme(theme) {
let childThemes = this.get("childThemes");
if (!childThemes) {
childThemes = [];
2018-06-15 11:03:24 -04:00
this.set("childThemes", childThemes);
}
childThemes.removeObject(theme);
childThemes.pushObject(theme);
return this.saveChanges("child_theme_ids");
},
2018-06-15 11:03:24 -04:00
@computed("name", "default")
description: function(name, isDefault) {
if (isDefault) {
2018-06-15 11:03:24 -04:00
return I18n.t("admin.customize.theme.default_name", { name: name });
} else {
return name;
}
},
checkForUpdates() {
2018-06-15 11:03:24 -04:00
return this.save({ remote_check: true }).then(() =>
this.set("changed", false)
);
},
updateToLatest() {
2018-06-15 11:03:24 -04:00
return this.save({ remote_update: true }).then(() =>
this.set("changed", false)
);
},
changed: false,
saveChanges() {
const hash = this.getProperties.apply(this, arguments);
return this.save(hash)
.finally(() => this.set("changed", false))
.catch(popupAjaxError);
},
saveSettings(name, value) {
const settings = {};
settings[name] = value;
return this.save({ settings });
}
});
export default Theme;