mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
REFACTOR: improve the code readability. (#8211)
b2f682f35eba0cc3f09588356ecf8d1dd824542f
This commit is contained in:
parent
bd969332e0
commit
3cdcd093ee
app/assets/javascripts/admin
components
mixins
templates/modal
@ -5,14 +5,6 @@ import showModal from "discourse/lib/show-modal";
|
|||||||
import AboutRoute from "discourse/routes/about";
|
import AboutRoute from "discourse/routes/about";
|
||||||
|
|
||||||
export default Ember.Component.extend(BufferedContent, SettingComponent, {
|
export default Ember.Component.extend(BufferedContent, SettingComponent, {
|
||||||
update(key, value, updateExistingUsers = false) {
|
|
||||||
if (updateExistingUsers) {
|
|
||||||
return SiteSetting.update(key, value, { updateExistingUsers: true });
|
|
||||||
} else {
|
|
||||||
return SiteSetting.update(key, value);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_save(callback) {
|
_save(callback) {
|
||||||
const defaultCategoriesSettings = [
|
const defaultCategoriesSettings = [
|
||||||
"default_categories_watching",
|
"default_categories_watching",
|
||||||
@ -36,19 +28,16 @@ export default Ember.Component.extend(BufferedContent, SettingComponent, {
|
|||||||
admin: true
|
admin: true
|
||||||
});
|
});
|
||||||
|
|
||||||
controller.setProperties({
|
controller.set("onClose", () => {
|
||||||
onClose: () => {
|
callback(
|
||||||
const updateExistingUsers = controller.get("updateExistingUsers");
|
SiteSetting.update(key, value, {
|
||||||
if (updateExistingUsers === true) {
|
updateExistingUsers: controller.updateExistingUsers
|
||||||
callback(this.update(key, value, true));
|
})
|
||||||
} else if (updateExistingUsers === false) {
|
);
|
||||||
callback(this.update(key, value));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
callback(this.update(key, value));
|
callback(SiteSetting.update(key, value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -116,7 +116,7 @@ export default Ember.Mixin.create({
|
|||||||
.then(() => {
|
.then(() => {
|
||||||
this.set("validationMessage", null);
|
this.set("validationMessage", null);
|
||||||
this.commitBuffer();
|
this.commitBuffer();
|
||||||
if (AUTO_REFRESH_ON_SAVE.includes(this.get("setting.setting"))) {
|
if (AUTO_REFRESH_ON_SAVE.includes(this.setting.setting)) {
|
||||||
this.afterSave();
|
this.afterSave();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
{{/d-modal-body}}
|
{{/d-modal-body}}
|
||||||
|
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
{{d-button action=(action "updateExistingUsers") class='btn btn-primary' label='admin.site_settings.default_categories.modal_yes'}}
|
{{d-button action=(action "updateExistingUsers") class='btn-primary' label='admin.site_settings.default_categories.modal_yes'}}
|
||||||
{{d-button action=(action "cancel") class='btn' label='admin.site_settings.default_categories.modal_no'}}
|
{{d-button action=(action "cancel") label='admin.site_settings.default_categories.modal_no'}}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user