mirror of
https://github.com/discourse/discourse.git
synced 2024-12-12 11:33:44 +08:00
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
|
import computed from "ember-addons/ember-computed-decorators";
|
||
|
|
||
|
export default Ember.Component.extend({
|
||
|
editorId: Ember.computed.reads("fieldName"),
|
||
|
|
||
|
@computed("fieldName", "styles.html", "styles.css")
|
||
|
resetDisabled(fieldName) {
|
||
|
return (
|
||
|
this.get(`styles.${fieldName}`) ===
|
||
|
this.get(`styles.default_${fieldName}`)
|
||
|
);
|
||
|
},
|
||
|
|
||
|
@computed("styles", "fieldName")
|
||
|
editorContents: {
|
||
|
get(styles, fieldName) {
|
||
|
return styles[fieldName];
|
||
|
},
|
||
|
set(value, styles, fieldName) {
|
||
|
styles.setField(fieldName, value);
|
||
|
return value;
|
||
|
}
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
reset() {
|
||
|
bootbox.confirm(
|
||
|
I18n.t("admin.customize.email_style.reset_confirm", {
|
||
|
fieldName: I18n.t(`admin.customize.email_style.${this.fieldName}`)
|
||
|
}),
|
||
|
I18n.t("no_value"),
|
||
|
I18n.t("yes_value"),
|
||
|
result => {
|
||
|
if (result) {
|
||
|
this.styles.setField(
|
||
|
this.fieldName,
|
||
|
this.styles.get(`default_${this.fieldName}`)
|
||
|
);
|
||
|
this.notifyPropertyChange("editorContents");
|
||
|
}
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
});
|