mirror of
https://github.com/flarum/core.git
synced 2025-10-13 07:54:25 +02:00
80 lines
1.5 KiB
JavaScript
80 lines
1.5 KiB
JavaScript
import Modal from 'flarum/components/Modal';
|
|
import Button from 'flarum/components/Button';
|
|
import saveSettings from 'flarum/utils/saveSettings';
|
|
|
|
export default class SettingsModal extends Modal {
|
|
init() {
|
|
this.settings = {};
|
|
this.loading = false;
|
|
}
|
|
|
|
form() {
|
|
return '';
|
|
}
|
|
|
|
content() {
|
|
return (
|
|
<div className="Modal-body">
|
|
<div className="Form">
|
|
{this.form()}
|
|
|
|
<div className="Form-group">
|
|
{this.submitButton()}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
submitButton() {
|
|
return (
|
|
<Button
|
|
type="submit"
|
|
className="Button Button--primary"
|
|
loading={this.loading}
|
|
disabled={!this.changed()}>
|
|
{app.translator.trans('core.admin.settings.submit_button')}
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
setting(key, fallback = '') {
|
|
this.settings[key] = this.settings[key] || m.prop(app.data.settings[key] || fallback);
|
|
|
|
return this.settings[key];
|
|
}
|
|
|
|
dirty() {
|
|
const dirty = {};
|
|
|
|
Object.keys(this.settings).forEach(key => {
|
|
const value = this.settings[key]();
|
|
|
|
if (value !== app.data.settings[key]) {
|
|
dirty[key] = value;
|
|
}
|
|
});
|
|
|
|
return dirty;
|
|
}
|
|
|
|
changed() {
|
|
return Object.keys(this.dirty()).length;
|
|
}
|
|
|
|
onsubmit(e) {
|
|
e.preventDefault();
|
|
|
|
this.loading = true;
|
|
|
|
saveSettings(this.dirty()).then(
|
|
this.onsaved.bind(this),
|
|
this.loaded.bind(this)
|
|
);
|
|
}
|
|
|
|
onsaved() {
|
|
this.hide();
|
|
}
|
|
}
|