DEV: apply new coding standards (#10592)

This commit is contained in:
Joffrey JAFFEUX
2020-09-04 13:42:47 +02:00
committed by GitHub
parent 80dfaeb0d2
commit 52672b9eab
1473 changed files with 9386 additions and 9958 deletions

View File

@ -43,14 +43,14 @@ export default Controller.extend(CanCheckEmails, {
if (buffer === null) return false;
return buffer.length === original.length
? buffer.any(id => !original.includes(id))
? buffer.any((id) => !original.includes(id))
: true;
},
@discourseComputed("model.automaticGroups")
automaticGroups(automaticGroups) {
return automaticGroups
.map(group => {
.map((group) => {
const name = htmlSafe(group.name);
return `<a href="/g/${name}">${name}</a>`;
})
@ -65,7 +65,7 @@ export default Controller.extend(CanCheckEmails, {
@discourseComputed("model.associated_accounts")
associatedAccounts(associatedAccounts) {
return associatedAccounts
.map(provider => `${provider.name} (${provider.description})`)
.map((provider) => `${provider.name} (${provider.description})`)
.join(", ");
},
@ -91,11 +91,11 @@ export default Controller.extend(CanCheckEmails, {
}
if (postCount > this.siteSettings.delete_all_posts_max) {
return I18n.t("admin.user.cant_delete_all_too_many_posts", {
count: this.siteSettings.delete_all_posts_max
count: this.siteSettings.delete_all_posts_max,
});
} else {
return I18n.t("admin.user.cant_delete_all_posts", {
count: this.siteSettings.delete_user_max_post_age
count: this.siteSettings.delete_user_max_post_age,
});
}
},
@ -110,7 +110,7 @@ export default Controller.extend(CanCheckEmails, {
return I18n.t("admin.user.delete_forbidden_because_staff");
} else {
return I18n.t("admin.user.delete_forbidden", {
count: this.siteSettings.delete_user_max_post_age
count: this.siteSettings.delete_user_max_post_age,
});
}
},
@ -213,7 +213,7 @@ export default Controller.extend(CanCheckEmails, {
promptTargetUser() {
showModal("admin-merge-users-prompt", {
admin: true,
model: this.model
model: this.model,
});
},
@ -222,8 +222,8 @@ export default Controller.extend(CanCheckEmails, {
admin: true,
model: {
username: this.model.username,
targetUsername
}
targetUsername,
},
});
},
@ -233,7 +233,7 @@ export default Controller.extend(CanCheckEmails, {
viewActionLogs() {
this.adminTools.showActionLogs(this, {
target_user: this.get("model.username")
target_user: this.get("model.username"),
});
},
showSuspendModal() {
@ -253,7 +253,7 @@ export default Controller.extend(CanCheckEmails, {
const path = `/users/${oldUsername.toLowerCase()}/preferences/username`;
return ajax(path, { data: { new_username: newUsername }, type: "PUT" })
.catch(e => {
.catch((e) => {
this.set("model.username", oldUsername);
popupAjaxError(e);
})
@ -267,7 +267,7 @@ export default Controller.extend(CanCheckEmails, {
const path = userPath(`${this.get("model.username").toLowerCase()}.json`);
return ajax(path, { data: { name: newName }, type: "PUT" })
.catch(e => {
.catch((e) => {
this.set("model.name", oldName);
popupAjaxError(e);
})
@ -281,7 +281,7 @@ export default Controller.extend(CanCheckEmails, {
const path = userPath(`${this.get("model.username").toLowerCase()}.json`);
return ajax(path, { data: { title: newTitle }, type: "PUT" })
.catch(e => {
.catch((e) => {
this.set("model.title", oldTitle);
popupAjaxError(e);
})
@ -294,12 +294,12 @@ export default Controller.extend(CanCheckEmails, {
const availableGroups = this.availableGroups;
bufferedIds
.filter(id => !currentIds.includes(id))
.forEach(id => this.groupAdded(availableGroups.findBy("id", id)));
.filter((id) => !currentIds.includes(id))
.forEach((id) => this.groupAdded(availableGroups.findBy("id", id)));
currentIds
.filter(id => !bufferedIds.includes(id))
.forEach(id => this.groupRemoved(id));
.filter((id) => !bufferedIds.includes(id))
.forEach((id) => this.groupRemoved(id));
},
resetCustomGroups() {
@ -312,7 +312,7 @@ export default Controller.extend(CanCheckEmails, {
return ajax(path, {
type: "PUT",
data: { primary_group_id: primaryGroupId }
data: { primary_group_id: primaryGroupId },
})
.then(() => this.set("originalPrimaryGroupId", primaryGroupId))
.catch(() => bootbox.alert(I18n.t("generic_error")));
@ -320,6 +320,6 @@ export default Controller.extend(CanCheckEmails, {
resetPrimaryGroup() {
this.set("model.primary_group_id", this.originalPrimaryGroupId);
}
}
},
},
});