2015-11-24 05:45:05 +08:00
|
|
|
import { popupAjaxError } from 'discourse/lib/ajax-error';
|
|
|
|
import { bufferedProperty } from 'discourse/mixins/buffered-content';
|
2013-04-05 00:59:44 +08:00
|
|
|
|
2015-11-24 05:45:05 +08:00
|
|
|
export default Ember.Controller.extend(bufferedProperty('siteText'), {
|
|
|
|
saved: false,
|
2013-04-05 00:59:44 +08:00
|
|
|
|
2013-09-17 02:08:55 +08:00
|
|
|
actions: {
|
2015-08-08 02:05:08 +08:00
|
|
|
saveChanges() {
|
2015-11-24 05:45:05 +08:00
|
|
|
const buffered = this.get('buffered');
|
|
|
|
this.get('siteText').save(buffered.getProperties('value')).then(() => {
|
|
|
|
this.commitBuffer();
|
|
|
|
this.set('saved', true);
|
|
|
|
}).catch(popupAjaxError);
|
|
|
|
},
|
|
|
|
|
|
|
|
revertChanges() {
|
|
|
|
this.set('saved', false);
|
|
|
|
bootbox.confirm(I18n.t('admin.site_text.revert_confirm'), result => {
|
|
|
|
if (result) {
|
|
|
|
this.get('siteText').revert().then(props => {
|
|
|
|
const buffered = this.get('buffered');
|
|
|
|
buffered.setProperties(props);
|
|
|
|
this.commitBuffer();
|
|
|
|
}).catch(popupAjaxError);
|
|
|
|
}
|
|
|
|
});
|
2013-09-17 02:08:55 +08:00
|
|
|
}
|
2013-04-05 00:59:44 +08:00
|
|
|
}
|
2013-09-17 02:08:55 +08:00
|
|
|
});
|