DEV: introduces prettier for es6 files

This commit is contained in:
Joffrey JAFFEUX
2018-06-15 17:03:24 +02:00
committed by GitHub
parent c7ee70941e
commit 03a7d532cf
1162 changed files with 60667 additions and 29659 deletions

View File

@ -1,38 +1,47 @@
import { popupAjaxError } from 'discourse/lib/ajax-error';
import { bufferedProperty } from 'discourse/mixins/buffered-content';
import { popupAjaxError } from "discourse/lib/ajax-error";
import { bufferedProperty } from "discourse/mixins/buffered-content";
export default Ember.Controller.extend(bufferedProperty('emailTemplate'), {
export default Ember.Controller.extend(bufferedProperty("emailTemplate"), {
saved: false,
hasMultipleSubjects: function() {
const buffered = this.get('buffered');
if (buffered.getProperties('subject')['subject']) {
const buffered = this.get("buffered");
if (buffered.getProperties("subject")["subject"]) {
return false;
} else {
return buffered.getProperties('id')['id'];
return buffered.getProperties("id")["id"];
}
}.property("buffered"),
actions: {
saveChanges() {
this.set('saved', false);
const buffered = this.get('buffered');
this.get('emailTemplate').save(buffered.getProperties('subject', 'body')).then(() => {
this.set('saved', true);
}).catch(popupAjaxError);
this.set("saved", false);
const buffered = this.get("buffered");
this.get("emailTemplate")
.save(buffered.getProperties("subject", "body"))
.then(() => {
this.set("saved", true);
})
.catch(popupAjaxError);
},
revertChanges() {
this.set('saved', false);
bootbox.confirm(I18n.t('admin.customize.email_templates.revert_confirm'), result => {
if (result) {
this.get('emailTemplate').revert().then(props => {
const buffered = this.get('buffered');
buffered.setProperties(props);
this.commitBuffer();
}).catch(popupAjaxError);
this.set("saved", false);
bootbox.confirm(
I18n.t("admin.customize.email_templates.revert_confirm"),
result => {
if (result) {
this.get("emailTemplate")
.revert()
.then(props => {
const buffered = this.get("buffered");
buffered.setProperties(props);
this.commitBuffer();
})
.catch(popupAjaxError);
}
}
});
);
}
}
});