This reverts commit ba27ee1637
.
We found some issues with handling of cmd/ctrl/shift + click on `<a` elements
This commit is contained in:
parent
ba27ee1637
commit
585c584fdb
|
@ -3,7 +3,6 @@ module.exports = {
|
|||
extends: "discourse:recommended",
|
||||
|
||||
rules: {
|
||||
"no-action-modifiers": true,
|
||||
"no-capital-arguments": false, // TODO: we extensively use `args` argument name
|
||||
"no-curly-component-invocation": {
|
||||
allow: [
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
import Component from "@ember/component";
|
||||
import { action } from "@ember/object";
|
||||
|
||||
export default Component.extend({
|
||||
tagName: "",
|
||||
|
||||
|
@ -12,14 +10,12 @@ export default Component.extend({
|
|||
this.set("editing", false);
|
||||
},
|
||||
|
||||
@action
|
||||
edit(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
edit() {
|
||||
this.set("buffer", this.value);
|
||||
this.toggleProperty("editing");
|
||||
},
|
||||
|
||||
actions: {
|
||||
save() {
|
||||
// Action has to toggle 'editing' property.
|
||||
this.action(this.buffer);
|
||||
|
|
|
@ -3,7 +3,6 @@ import I18n from "I18n";
|
|||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
import { fmt } from "discourse/lib/computed";
|
||||
import { isDocumentRTL } from "discourse/lib/text-direction";
|
||||
import { action } from "@ember/object";
|
||||
import { next } from "@ember/runloop";
|
||||
|
||||
export default Component.extend({
|
||||
|
@ -92,26 +91,15 @@ export default Component.extend({
|
|||
return this.theme.getError(target, fieldName);
|
||||
},
|
||||
|
||||
@action
|
||||
toggleShowAdvanced(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
toggleShowAdvanced() {
|
||||
this.toggleProperty("showAdvanced");
|
||||
},
|
||||
|
||||
@action
|
||||
toggleAddField(event) {
|
||||
event?.preventDefault();
|
||||
toggleAddField() {
|
||||
this.toggleProperty("addingField");
|
||||
},
|
||||
|
||||
@action
|
||||
toggleMaximize(event) {
|
||||
event?.preventDefault();
|
||||
this.toggleProperty("maximized");
|
||||
next(() => this.appEvents.trigger("ace:resize"));
|
||||
},
|
||||
|
||||
actions: {
|
||||
cancelAddField() {
|
||||
this.set("addingField", false);
|
||||
},
|
||||
|
@ -126,6 +114,11 @@ export default Component.extend({
|
|||
this.fieldAdded(this.currentTargetName, name);
|
||||
},
|
||||
|
||||
toggleMaximize() {
|
||||
this.toggleProperty("maximized");
|
||||
next(() => this.appEvents.trigger("ace:resize"));
|
||||
},
|
||||
|
||||
onlyOverriddenChanged(value) {
|
||||
this.onlyOverriddenChanged(value);
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import AdminUser from "admin/models/admin-user";
|
||||
import Component from "@ember/component";
|
||||
import EmberObject, { action } from "@ember/object";
|
||||
import EmberObject from "@ember/object";
|
||||
import I18n from "I18n";
|
||||
import { ajax } from "discourse/lib/ajax";
|
||||
import copyText from "discourse/lib/copy-text";
|
||||
|
@ -21,12 +21,6 @@ export default Component.extend({
|
|||
return Math.max(visible, total);
|
||||
},
|
||||
|
||||
@action
|
||||
hide(event) {
|
||||
event?.preventDefault();
|
||||
this.set("show", false);
|
||||
},
|
||||
|
||||
actions: {
|
||||
lookup() {
|
||||
this.set("show", true);
|
||||
|
@ -61,6 +55,10 @@ export default Component.extend({
|
|||
}
|
||||
},
|
||||
|
||||
hide() {
|
||||
this.set("show", false);
|
||||
},
|
||||
|
||||
copy() {
|
||||
let text = `IP: ${this.ip}\n`;
|
||||
const location = this.location;
|
||||
|
|
|
@ -3,7 +3,6 @@ import discourseComputed from "discourse-common/utils/decorators";
|
|||
import Component from "@ember/component";
|
||||
import { escape } from "pretty-text/sanitizer";
|
||||
import { iconHTML } from "discourse-common/lib/icon-library";
|
||||
import { action } from "@ember/object";
|
||||
|
||||
const MAX_COMPONENTS = 4;
|
||||
|
||||
|
@ -60,9 +59,9 @@ export default Component.extend({
|
|||
return childrenCount - MAX_COMPONENTS;
|
||||
},
|
||||
|
||||
@action
|
||||
toggleChildrenExpanded(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
toggleChildrenExpanded() {
|
||||
this.toggleProperty("childrenExpanded");
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -133,12 +133,6 @@ export default class AdminBadgesShowController extends Controller.extend(
|
|||
this.buffered.set("image_url", null);
|
||||
}
|
||||
|
||||
@action
|
||||
showPreview(badge, explain, event) {
|
||||
event?.preventDefault();
|
||||
this.send("preview", badge, explain);
|
||||
}
|
||||
|
||||
@action
|
||||
save() {
|
||||
if (!this.saving) {
|
||||
|
|
|
@ -2,15 +2,8 @@ import AdminEmailLogsController from "admin/controllers/admin-email-logs";
|
|||
import { INPUT_DELAY } from "discourse-common/config/environment";
|
||||
import discourseDebounce from "discourse-common/lib/debounce";
|
||||
import { observes } from "discourse-common/utils/decorators";
|
||||
import { action } from "@ember/object";
|
||||
|
||||
export default AdminEmailLogsController.extend({
|
||||
@action
|
||||
handleShowIncomingEmail(id, event) {
|
||||
event?.preventDefault();
|
||||
this.send("showIncomingEmail", id);
|
||||
},
|
||||
|
||||
@observes("filter.{status,user,address,type}")
|
||||
filterEmailLogs() {
|
||||
discourseDebounce(this, this.loadLogs, INPUT_DELAY);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { empty, notEmpty, or } from "@ember/object/computed";
|
||||
import Controller from "@ember/controller";
|
||||
import EmailPreview from "admin/models/email-preview";
|
||||
import { action, get } from "@ember/object";
|
||||
import { get } from "@ember/object";
|
||||
import { popupAjaxError } from "discourse/lib/ajax-error";
|
||||
import { inject as service } from "@ember/service";
|
||||
|
||||
|
@ -14,12 +14,6 @@ export default Controller.extend({
|
|||
showSendEmailForm: notEmpty("model.html_content"),
|
||||
htmlEmpty: empty("model.html_content"),
|
||||
|
||||
@action
|
||||
toggleShowHtml(event) {
|
||||
event?.preventDefault();
|
||||
this.toggleProperty("showHtml");
|
||||
},
|
||||
|
||||
actions: {
|
||||
updateUsername(selected) {
|
||||
this.set("username", get(selected, "firstObject"));
|
||||
|
@ -45,6 +39,10 @@ export default Controller.extend({
|
|||
});
|
||||
},
|
||||
|
||||
toggleShowHtml() {
|
||||
this.toggleProperty("showHtml");
|
||||
},
|
||||
|
||||
sendEmail() {
|
||||
this.set("sendingEmail", true);
|
||||
this.set("sentEmail", false);
|
||||
|
|
|
@ -3,7 +3,6 @@ import { INPUT_DELAY } from "discourse-common/config/environment";
|
|||
import IncomingEmail from "admin/models/incoming-email";
|
||||
import discourseDebounce from "discourse-common/lib/debounce";
|
||||
import { observes } from "discourse-common/utils/decorators";
|
||||
import { action } from "@ember/object";
|
||||
|
||||
export default AdminEmailLogsController.extend({
|
||||
@observes("filter.{status,from,to,subject,error}")
|
||||
|
@ -11,12 +10,6 @@ export default AdminEmailLogsController.extend({
|
|||
discourseDebounce(this, this.loadLogs, IncomingEmail, INPUT_DELAY);
|
||||
},
|
||||
|
||||
@action
|
||||
handleShowIncomingEmail(id, event) {
|
||||
event?.preventDefault();
|
||||
this.send("showIncomingEmail", id);
|
||||
},
|
||||
|
||||
actions: {
|
||||
loadMore() {
|
||||
this.loadLogs(IncomingEmail, true);
|
||||
|
|
|
@ -6,7 +6,6 @@ import discourseDebounce from "discourse-common/lib/debounce";
|
|||
import { exportEntity } from "discourse/lib/export-csv";
|
||||
import { observes } from "discourse-common/utils/decorators";
|
||||
import { outputExportResult } from "discourse/lib/export-result";
|
||||
import { action } from "@ember/object";
|
||||
import { inject as service } from "@ember/service";
|
||||
|
||||
export default Controller.extend({
|
||||
|
@ -27,15 +26,6 @@ export default Controller.extend({
|
|||
discourseDebounce(this, this._debouncedShow, INPUT_DELAY);
|
||||
},
|
||||
|
||||
@action
|
||||
edit(record, event) {
|
||||
event?.preventDefault();
|
||||
if (!record.get("editing")) {
|
||||
this.set("savedIpAddress", record.get("ip_address"));
|
||||
}
|
||||
record.set("editing", true);
|
||||
},
|
||||
|
||||
actions: {
|
||||
allow(record) {
|
||||
record.set("action_name", "do_nothing");
|
||||
|
@ -47,6 +37,13 @@ export default Controller.extend({
|
|||
record.save();
|
||||
},
|
||||
|
||||
edit(record) {
|
||||
if (!record.get("editing")) {
|
||||
this.set("savedIpAddress", record.get("ip_address"));
|
||||
}
|
||||
record.set("editing", true);
|
||||
},
|
||||
|
||||
cancel(record) {
|
||||
const savedIpAddress = this.savedIpAddress;
|
||||
if (savedIpAddress && record.get("editing")) {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import Controller from "@ember/controller";
|
||||
import EmberObject, { action } from "@ember/object";
|
||||
import EmberObject from "@ember/object";
|
||||
import I18n from "I18n";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
import { exportEntity } from "discourse/lib/export-csv";
|
||||
|
@ -31,13 +31,11 @@ export default Controller.extend({
|
|||
this.set(
|
||||
"userHistoryActions",
|
||||
result.extras.user_history_actions
|
||||
.map((historyAction) => ({
|
||||
id: historyAction.id,
|
||||
action_id: historyAction.action_id,
|
||||
name: I18n.t(
|
||||
"admin.logs.staff_actions.actions." + historyAction.id
|
||||
),
|
||||
name_raw: historyAction.id,
|
||||
.map((action) => ({
|
||||
id: action.id,
|
||||
action_id: action.action_id,
|
||||
name: I18n.t("admin.logs.staff_actions.actions." + action.id),
|
||||
name_raw: action.id,
|
||||
}))
|
||||
.sort((a, b) => a.name.localeCompare(b.name))
|
||||
);
|
||||
|
@ -77,7 +75,7 @@ export default Controller.extend({
|
|||
this.scheduleRefresh();
|
||||
},
|
||||
|
||||
@action
|
||||
actions: {
|
||||
filterActionIdChanged(filterActionId) {
|
||||
if (filterActionId) {
|
||||
this.changeFilters({
|
||||
|
@ -88,9 +86,7 @@ export default Controller.extend({
|
|||
}
|
||||
},
|
||||
|
||||
@action
|
||||
clearFilter(key, event) {
|
||||
event?.preventDefault();
|
||||
clearFilter(key) {
|
||||
if (key === "actionFilter") {
|
||||
this.set("filterActionId", null);
|
||||
this.changeFilters({
|
||||
|
@ -103,16 +99,12 @@ export default Controller.extend({
|
|||
}
|
||||
},
|
||||
|
||||
@action
|
||||
clearAllFilters(event) {
|
||||
event?.preventDefault();
|
||||
clearAllFilters() {
|
||||
this.set("filterActionId", null);
|
||||
this.resetFilters();
|
||||
},
|
||||
|
||||
@action
|
||||
filterByAction(logItem, event) {
|
||||
event?.preventDefault();
|
||||
filterByAction(logItem) {
|
||||
this.changeFilters({
|
||||
action_name: logItem.get("action_name"),
|
||||
action_id: logItem.get("action"),
|
||||
|
@ -120,31 +112,24 @@ export default Controller.extend({
|
|||
});
|
||||
},
|
||||
|
||||
@action
|
||||
filterByStaffUser(acting_user, event) {
|
||||
event?.preventDefault();
|
||||
filterByStaffUser(acting_user) {
|
||||
this.changeFilters({ acting_user: acting_user.username });
|
||||
},
|
||||
|
||||
@action
|
||||
filterByTargetUser(target_user, event) {
|
||||
event?.preventDefault();
|
||||
filterByTargetUser(target_user) {
|
||||
this.changeFilters({ target_user: target_user.username });
|
||||
},
|
||||
|
||||
@action
|
||||
filterBySubject(subject, event) {
|
||||
event?.preventDefault();
|
||||
filterBySubject(subject) {
|
||||
this.changeFilters({ subject });
|
||||
},
|
||||
|
||||
@action
|
||||
exportStaffActionLogs() {
|
||||
exportEntity("staff_action").then(outputExportResult);
|
||||
},
|
||||
|
||||
@action
|
||||
loadMore() {
|
||||
this.model.loadMore();
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import Controller from "@ember/controller";
|
||||
import { ajax } from "discourse/lib/ajax";
|
||||
import { action } from "@ember/object";
|
||||
import { alias } from "@ember/object/computed";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
import { popupAjaxError } from "discourse/lib/ajax-error";
|
||||
|
@ -44,23 +43,6 @@ export default Controller.extend({
|
|||
}
|
||||
},
|
||||
|
||||
@action
|
||||
showInserted(event) {
|
||||
event?.preventDefault();
|
||||
const webHookId = this.get("model.extras.web_hook_id");
|
||||
|
||||
ajax(`/admin/api/web_hooks/${webHookId}/events/bulk`, {
|
||||
type: "GET",
|
||||
data: { ids: this.incomingEventIds },
|
||||
}).then((data) => {
|
||||
const objects = data.map((webHookEvent) =>
|
||||
this.store.createRecord("web-hook-event", webHookEvent)
|
||||
);
|
||||
this.model.unshiftObjects(objects);
|
||||
this.set("incomingEventIds", []);
|
||||
});
|
||||
},
|
||||
|
||||
actions: {
|
||||
loadMore() {
|
||||
this.model.loadMore();
|
||||
|
@ -79,5 +61,20 @@ export default Controller.extend({
|
|||
popupAjaxError(error);
|
||||
});
|
||||
},
|
||||
|
||||
showInserted() {
|
||||
const webHookId = this.get("model.extras.web_hook_id");
|
||||
|
||||
ajax(`/admin/api/web_hooks/${webHookId}/events/bulk`, {
|
||||
type: "GET",
|
||||
data: { ids: this.incomingEventIds },
|
||||
}).then((data) => {
|
||||
const objects = data.map((event) =>
|
||||
this.store.createRecord("web-hook-event", event)
|
||||
);
|
||||
this.model.unshiftObjects(objects);
|
||||
this.set("incomingEventIds", []);
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import { observes, on } from "discourse-common/utils/decorators";
|
||||
import Controller from "@ember/controller";
|
||||
import { action } from "@ember/object";
|
||||
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
||||
|
||||
export default Controller.extend(ModalFunctionality, {
|
||||
|
@ -11,17 +10,15 @@ export default Controller.extend(ModalFunctionality, {
|
|||
this.set("images", value && value.length ? value.split("|") : []);
|
||||
},
|
||||
|
||||
@action
|
||||
remove(url, event) {
|
||||
event?.preventDefault();
|
||||
this.images.removeObject(url);
|
||||
},
|
||||
|
||||
actions: {
|
||||
uploadDone({ url }) {
|
||||
this.images.addObject(url);
|
||||
},
|
||||
|
||||
remove(url) {
|
||||
this.images.removeObject(url);
|
||||
},
|
||||
|
||||
close() {
|
||||
this.save(this.images.join("|"));
|
||||
this.send("closeModal");
|
||||
|
|
|
@ -88,9 +88,9 @@
|
|||
</div>
|
||||
|
||||
{{#if this.hasQuery}}
|
||||
<a href {{on "click" (fn this.showPreview this.buffered "false")}}>{{i18n "admin.badges.preview.link_text"}}</a>
|
||||
<a href {{action "preview" this.buffered "false"}}>{{i18n "admin.badges.preview.link_text"}}</a>
|
||||
|
|
||||
<a href {{on "click" (fn this.showPreview this.buffered "true")}}>{{i18n "admin.badges.preview.plan_text"}}</a>
|
||||
<a href {{action "preview" this.buffered "true"}}>{{i18n "admin.badges.preview.plan_text"}}</a>
|
||||
{{#if this.preview_loading}}
|
||||
{{i18n "loading"}}
|
||||
{{/if}}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{{#if this.editing}}
|
||||
<TextField @value={{this.buffer}} @autofocus="autofocus" @autocomplete="off" />
|
||||
{{else}}
|
||||
<a href {{on "click" this.edit}} class="inline-editable-field">
|
||||
<a href {{action "edit"}} class="inline-editable-field">
|
||||
<span>{{this.value}}</span>
|
||||
</a>
|
||||
{{/if}}
|
||||
|
@ -11,7 +11,7 @@
|
|||
<div class="controls">
|
||||
{{#if this.editing}}
|
||||
<DButton @class="btn-default" @action={{action "save"}} @label="admin.user_fields.save" />
|
||||
<a href {{on "click" this.edit}}>{{i18n "cancel"}}</a>
|
||||
<a href {{action "edit"}}>{{i18n "cancel"}}</a>
|
||||
{{else}}
|
||||
<DButton @class="btn-default" @action={{action "edit"}} @icon="pencil-alt" />
|
||||
{{/if}}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{{#if this.allowAdvanced}}
|
||||
<li>
|
||||
<a {{on "click" this.toggleShowAdvanced}}
|
||||
<a {{action "toggleShowAdvanced"}}
|
||||
href
|
||||
title={{i18n (concat "admin.customize.theme." (if this.showAdvanced "hide_advanced" "show_advanced"))}}
|
||||
class="no-text">
|
||||
|
@ -52,7 +52,7 @@
|
|||
<DButton @class="ok" @action={{action "addField" this.newFieldName}} @icon="check" />
|
||||
<DButton @class="cancel" @action={{action "cancelAddField"}} @icon="times" />
|
||||
{{else}}
|
||||
<a href {{on "click" this.toggleAddField}} class="no-text">
|
||||
<a href {{action "toggleAddField" this.currentTargetName}} class="no-text">
|
||||
{{d-icon "plus"}}
|
||||
</a>
|
||||
{{/if}}
|
||||
|
@ -61,7 +61,7 @@
|
|||
|
||||
<li class="spacer"></li>
|
||||
<li>
|
||||
<a href {{on "click" this.toggleMaximize}} class="no-text">
|
||||
<a href {{action "toggleMaximize"}} class="no-text">
|
||||
{{d-icon this.maximizeIcon}}
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{{/if}}
|
||||
{{#if this.show}}
|
||||
<div class="location-box">
|
||||
<a href class="close pull-right" {{on "click" this.hide}}>{{d-icon "times"}}</a>
|
||||
<a href class="close pull-right" {{action "hide"}}>{{d-icon "times"}}</a>
|
||||
{{#if this.copied}}
|
||||
<DButton @class="btn-hover pull-right" @icon="copy" @label="ip_lookup.copied" />
|
||||
{{else}}
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<span class="components">{{html-safe this.childrenString}}</span>
|
||||
|
||||
{{#if this.displayHasMore}}
|
||||
<a href {{on "click" this.toggleChildrenExpanded}} class="others-count">
|
||||
<a href {{action "toggleChildrenExpanded"}} class="others-count">
|
||||
{{#if this.childrenExpanded}}
|
||||
{{i18n "admin.customize.theme.collapse"}}
|
||||
{{else}}
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<td class="email-address"><a href="mailto:{{l.to_address}}">{{l.to_address}}</a></td>
|
||||
<td>
|
||||
{{#if l.has_bounce_key}}
|
||||
<a href {{on "click" (fn this.handleShowIncomingEmail l.id)}}>
|
||||
<a href {{action "showIncomingEmail" l.id}}>
|
||||
{{l.email_type}}
|
||||
</a>
|
||||
{{else}}
|
||||
|
@ -39,7 +39,7 @@
|
|||
</td>
|
||||
<td class="email-details">
|
||||
{{#if l.has_bounce_key}}
|
||||
<a href {{on "click" (fn this.handleShowIncomingEmail l.id)}} title={{i18n "admin.email.details_title"}}>
|
||||
<a href {{action "showIncomingEmail" l.id}} title={{i18n "admin.email.details_title"}}>
|
||||
{{d-icon "info-circle"}}
|
||||
</a>
|
||||
{{/if}}
|
||||
|
|
|
@ -15,11 +15,11 @@
|
|||
{{#if this.showHtml}}
|
||||
<span>{{i18n "admin.email.html"}}</span>
|
||||
|
|
||||
<a href {{on "click" this.toggleShowHtml}}>
|
||||
<a href {{action "toggleShowHtml"}}>
|
||||
{{i18n "admin.email.text"}}
|
||||
</a>
|
||||
{{else}}
|
||||
<a href {{on "click" this.toggleShowHtml}}>{{i18n "admin.email.html"}}</a> |
|
||||
<a href {{action "toggleShowHtml"}}>{{i18n "admin.email.html"}}</a> |
|
||||
<span>{{i18n "admin.email.text"}}</span>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
|
|
@ -48,10 +48,10 @@
|
|||
</td>
|
||||
<td>{{email.subject}}</td>
|
||||
<td class="error">
|
||||
<a href {{on "click" (fn this.handleShowIncomingEmail email.id)}}>{{email.error}}</a>
|
||||
<a href {{action "showIncomingEmail" email.id}}>{{email.error}}</a>
|
||||
</td>
|
||||
<td class="email-details">
|
||||
<a href {{on "click" (fn this.handleShowIncomingEmail email.id)}} title={{i18n "admin.email.details_title"}}>
|
||||
<a href {{action "showIncomingEmail" email.id}} title={{i18n "admin.email.details_title"}}>
|
||||
{{d-icon "info-circle"}}
|
||||
</a>
|
||||
</td>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
{{#if item.editing}}
|
||||
<TextField @value={{item.ip_address}} @autofocus="autofocus" />
|
||||
{{else}}
|
||||
<a href {{on "click" (fn this.edit item)}} class="inline-editable-field">
|
||||
<a href {{action "edit" item}} class="inline-editable-field">
|
||||
{{#if item.isRange}}
|
||||
<strong>{{item.ip_address}}</strong>
|
||||
{{else}}
|
||||
|
|
|
@ -1,29 +1,29 @@
|
|||
<div class="staff-action-logs-controls">
|
||||
{{#if this.filtersExists}}
|
||||
<div class="staff-action-logs-filters">
|
||||
<a href {{on "click" this.clearAllFilters}} class="clear-filters filter btn">
|
||||
<a href {{action "clearAllFilters"}} class="clear-filters filter btn">
|
||||
<span class="label">{{i18n "admin.logs.staff_actions.clear_filters"}}</span>
|
||||
</a>
|
||||
{{#if this.actionFilter}}
|
||||
<a href {{on "click" (fn this.clearFilter "actionFilter")}} class="filter btn">
|
||||
<a href {{action "clearFilter" "actionFilter"}} class="filter btn">
|
||||
<span class="label">{{i18n "admin.logs.action"}}</span>: {{this.actionFilter}}
|
||||
{{d-icon "times-circle"}}
|
||||
</a>
|
||||
{{/if}}
|
||||
{{#if this.filters.acting_user}}
|
||||
<a href {{on "click" (fn this.clearFilter "acting_user")}} class="filter btn">
|
||||
<a href {{action "clearFilter" "acting_user"}} class="filter btn">
|
||||
<span class="label">{{i18n "admin.logs.staff_actions.staff_user"}}</span>: {{this.filters.acting_user}}
|
||||
{{d-icon "times-circle"}}
|
||||
</a>
|
||||
{{/if}}
|
||||
{{#if this.filters.target_user}}
|
||||
<a href {{on "click" (fn this.clearFilter "target_user")}} class="filter btn">
|
||||
<a href {{action "clearFilter" "target_user"}} class="filter btn">
|
||||
<span class="label">{{i18n "admin.logs.staff_actions.target_user"}}</span>: {{this.filters.target_user}}
|
||||
{{d-icon "times-circle"}}
|
||||
</a>
|
||||
{{/if}}
|
||||
{{#if this.filters.subject}}
|
||||
<a href {{on "click" (fn this.clearFilter "subject")}} class="filter btn">
|
||||
<a href {{action "clearFilter" "subject"}} class="filter btn">
|
||||
<span class="label">{{i18n "admin.logs.staff_actions.subject"}}</span>: {{this.filters.subject}}
|
||||
{{d-icon "times-circle"}}
|
||||
</a>
|
||||
|
@ -71,16 +71,16 @@
|
|||
</div>
|
||||
</td>
|
||||
<td class="col value action">
|
||||
<a href {{on "click" (fn this.filterByAction item)}}>{{item.actionName}}</a>
|
||||
<a href {{action "filterByAction" item}}>{{item.actionName}}</a>
|
||||
</td>
|
||||
<td class="col value subject">
|
||||
<div class="subject">
|
||||
{{#if item.target_user}}
|
||||
<LinkTo @route="adminUser" @model={{item.target_user}}>{{avatar item.target_user imageSize="tiny"}}</LinkTo>
|
||||
<a href {{on "click" (fn this.filterByTargetUser item.target_user)}}>{{item.target_user.username}}</a>
|
||||
<a href {{action "filterByTargetUser" item.target_user}}>{{item.target_user.username}}</a>
|
||||
{{/if}}
|
||||
{{#if item.subject}}
|
||||
<a href {{on "click" (fn this.filterBySubject item.subject)}} title={{item.subject}}>{{item.subject}}</a>
|
||||
<a href {{action "filterBySubject" item.subject}} title={{item.subject}}>{{item.subject}}</a>
|
||||
{{/if}}
|
||||
</div>
|
||||
</td>
|
||||
|
@ -89,10 +89,10 @@
|
|||
<div>
|
||||
{{html-safe item.formattedDetails}}
|
||||
{{#if item.useCustomModalForDetails}}
|
||||
<a href {{on "click" (fn this.showCustomDetailsModal item)}}>{{d-icon "info-circle"}} {{i18n "admin.logs.staff_actions.show"}}</a>
|
||||
<a href {{action "showCustomDetailsModal" item}}>{{d-icon "info-circle"}} {{i18n "admin.logs.staff_actions.show"}}</a>
|
||||
{{/if}}
|
||||
{{#if item.useModalForDetails}}
|
||||
<a href {{on "click" (fn this.showDetailsModal item)}}>{{d-icon "info-circle"}} {{i18n "admin.logs.staff_actions.show"}}</a>
|
||||
<a href {{action "showDetailsModal" item}}>{{d-icon "info-circle"}} {{i18n "admin.logs.staff_actions.show"}}</a>
|
||||
{{/if}}
|
||||
</div>
|
||||
</td>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<DModalBody @class="uploaded-image-list">
|
||||
<div class="selectable-avatars">
|
||||
{{#each this.images as |image|}}
|
||||
<a href class="selectable-avatar" {{on "click" (fn this.remove image)}}>
|
||||
<a href class="selectable-avatar" {{action "remove" image}}>
|
||||
{{bound-avatar-template image "huge"}}
|
||||
</a>
|
||||
{{else}}
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<div class="clearfix"></div>
|
||||
</div>
|
||||
{{#if this.hasIncoming}}
|
||||
<a href tabindex="0" {{on "click" this.showInserted}} class="alert alert-info clickable">
|
||||
<a href tabindex="0" {{action "showInserted"}} class="alert alert-info clickable">
|
||||
<CountI18n @key="admin.web_hooks.events.incoming" @count={{this.incomingCount}} />
|
||||
</a>
|
||||
{{/if}}
|
||||
|
|
|
@ -50,8 +50,7 @@ export default Component.extend({
|
|||
},
|
||||
|
||||
@action
|
||||
toggleShowMuted(event) {
|
||||
event?.preventDefault();
|
||||
toggleShowMuted() {
|
||||
this.toggleProperty("showMuted");
|
||||
},
|
||||
});
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import { action } from "@ember/object";
|
||||
import { alias, equal } from "@ember/object/computed";
|
||||
import discourseComputed, { observes } from "discourse-common/utils/decorators";
|
||||
import Component from "@ember/component";
|
||||
|
@ -93,13 +92,11 @@ export default Component.extend({
|
|||
this.category.updatePermission(this.group_name, type);
|
||||
},
|
||||
|
||||
@action
|
||||
removeRow(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
removeRow() {
|
||||
this.category.removePermission(this.group_name);
|
||||
},
|
||||
|
||||
actions: {
|
||||
setPermissionReply() {
|
||||
if (this.type <= PermissionType.CREATE_POST) {
|
||||
this.updatePermission(PermissionType.READONLY);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import Component from "@ember/component";
|
||||
import discourseDebounce from "discourse-common/lib/debounce";
|
||||
import { action, get } from "@ember/object";
|
||||
import { get } from "@ember/object";
|
||||
import { isEmpty } from "@ember/utils";
|
||||
import { next } from "@ember/runloop";
|
||||
import { observes } from "discourse-common/utils/decorators";
|
||||
|
@ -63,11 +63,12 @@ export default Component.extend({
|
|||
);
|
||||
},
|
||||
|
||||
@action
|
||||
chooseMessage(message, event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
chooseMessage(message) {
|
||||
const messageId = get(message, "id");
|
||||
this.set("selectedTopicId", messageId);
|
||||
next(() => $(`#choose-message-${messageId}`).prop("checked", "true"));
|
||||
return false;
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import Component from "@ember/component";
|
||||
import EmberObject, { action } from "@ember/object";
|
||||
import EmberObject from "@ember/object";
|
||||
import I18n from "I18n";
|
||||
import LinkLookup from "discourse/lib/link-lookup";
|
||||
import { not } from "@ember/object/computed";
|
||||
|
@ -54,13 +54,11 @@ export default Component.extend({
|
|||
this.set("messageCount", messages.get("length"));
|
||||
},
|
||||
|
||||
@action
|
||||
closeMessage(message, event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
closeMessage(message) {
|
||||
this._removeMessage(message);
|
||||
},
|
||||
|
||||
actions: {
|
||||
hideMessage(message) {
|
||||
this._removeMessage(message);
|
||||
// kind of hacky but the visibility depends on this
|
||||
|
|
|
@ -2,7 +2,6 @@ import Component from "@ember/component";
|
|||
import DiscourseURL from "discourse/lib/url";
|
||||
import I18n from "I18n";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
import { action } from "@ember/object";
|
||||
import { empty } from "@ember/object/computed";
|
||||
import getURL from "discourse-common/lib/get-url";
|
||||
import { propertyEqual } from "discourse/lib/computed";
|
||||
|
@ -50,12 +49,13 @@ export default Component.extend({
|
|||
return getURL(`/c/${slugPart}/edit/${this.tab}`);
|
||||
},
|
||||
|
||||
@action
|
||||
select(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
select() {
|
||||
this.set("selectedTab", this.tab);
|
||||
|
||||
if (!this.newCategory) {
|
||||
DiscourseURL.routeTo(this.fullSlug);
|
||||
}
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -240,8 +240,7 @@ export default Component.extend({
|
|||
},
|
||||
|
||||
@action
|
||||
onCategorySelection(sectionName, event) {
|
||||
event?.preventDefault();
|
||||
onCategorySelection(sectionName) {
|
||||
const section = document.querySelector(
|
||||
`.emoji-picker-emoji-area .section[data-section="${sectionName}"]`
|
||||
);
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import { action } from "@ember/object";
|
||||
import { alias, gt } from "@ember/object/computed";
|
||||
import CardContentsBase from "discourse/mixins/card-contents-base";
|
||||
import CleansUp from "discourse/mixins/cleans-up";
|
||||
|
@ -71,22 +70,11 @@ export default Component.extend(CardContentsBase, CleansUp, {
|
|||
this._close();
|
||||
},
|
||||
|
||||
@action
|
||||
close(event) {
|
||||
event?.preventDefault();
|
||||
this._close();
|
||||
},
|
||||
|
||||
@action
|
||||
handleShowGroup(group, event) {
|
||||
event?.preventDefault();
|
||||
// Invokes `showGroup` argument. Convert to `this.args.showGroup` when
|
||||
// refactoring this to a glimmer component.
|
||||
this.showGroup(group);
|
||||
this._close();
|
||||
},
|
||||
|
||||
actions: {
|
||||
close() {
|
||||
this._close();
|
||||
},
|
||||
|
||||
cancelFilter() {
|
||||
const postStream = this.postStream;
|
||||
postStream.cancelFilter();
|
||||
|
@ -102,7 +90,8 @@ export default Component.extend(CardContentsBase, CleansUp, {
|
|||
},
|
||||
|
||||
showGroup(group) {
|
||||
this.handleShowGroup(group);
|
||||
this.showGroup(group);
|
||||
this._close();
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -53,8 +53,7 @@ export default Component.extend({
|
|||
},
|
||||
|
||||
@action
|
||||
prefillSettings(provider, event) {
|
||||
event?.preventDefault();
|
||||
prefillSettings(provider) {
|
||||
this.form.setProperties(emailProviderDefaultSettings(provider, "imap"));
|
||||
},
|
||||
|
||||
|
|
|
@ -1,12 +1,10 @@
|
|||
import Component from "@ember/component";
|
||||
import { action } from "@ember/object";
|
||||
|
||||
export default Component.extend({
|
||||
classNames: ["item"],
|
||||
|
||||
@action
|
||||
remove(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
remove() {
|
||||
this.removeAction(this.member);
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -43,8 +43,7 @@ export default Component.extend({
|
|||
},
|
||||
|
||||
@action
|
||||
prefillSettings(provider, event) {
|
||||
event?.preventDefault();
|
||||
prefillSettings(provider) {
|
||||
this.form.setProperties(emailProviderDefaultSettings(provider, "smtp"));
|
||||
},
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import { on } from "discourse-common/utils/decorators";
|
||||
import Component from "@ember/component";
|
||||
import { action } from "@ember/object";
|
||||
import { next } from "@ember/runloop";
|
||||
import { inject as service } from "@ember/service";
|
||||
import deprecated from "discourse-common/lib/deprecated";
|
||||
|
@ -57,9 +56,8 @@ export default Component.extend({
|
|||
this.router.off("routeDidChange", this, this.currentRouteChanged);
|
||||
},
|
||||
|
||||
@action
|
||||
toggleExpanded(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
toggleExpanded() {
|
||||
this.toggleProperty("expanded");
|
||||
|
||||
next(() => {
|
||||
|
@ -80,4 +78,5 @@ export default Component.extend({
|
|||
}
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import discourseComputed, { observes } from "discourse-common/utils/decorators";
|
||||
import Component from "@ember/component";
|
||||
import { action } from "@ember/object";
|
||||
import DiscourseURL from "discourse/lib/url";
|
||||
import FilterModeMixin from "discourse/mixins/filter-mode";
|
||||
import { next } from "@ember/runloop";
|
||||
|
@ -62,9 +61,8 @@ export default Component.extend(FilterModeMixin, {
|
|||
DiscourseURL.appEvents.off("dom:clean", this, this.ensureDropClosed);
|
||||
},
|
||||
|
||||
@action
|
||||
toggleDrop(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
toggleDrop() {
|
||||
this.set("expanded", !this.expanded);
|
||||
|
||||
if (this.expanded) {
|
||||
|
@ -91,4 +89,5 @@ export default Component.extend(FilterModeMixin, {
|
|||
});
|
||||
}
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -7,7 +7,7 @@ import { classify, dasherize } from "@ember/string";
|
|||
import discourseComputed, { bind } from "discourse-common/utils/decorators";
|
||||
import optionalService from "discourse/lib/optional-service";
|
||||
import { popupAjaxError } from "discourse/lib/ajax-error";
|
||||
import { action, set } from "@ember/object";
|
||||
import { set } from "@ember/object";
|
||||
import showModal from "discourse/lib/show-modal";
|
||||
|
||||
let _components = {};
|
||||
|
@ -121,7 +121,7 @@ export default Component.extend({
|
|||
},
|
||||
|
||||
@bind
|
||||
_performConfirmed(performableAction) {
|
||||
_performConfirmed(action) {
|
||||
let reviewable = this.reviewable;
|
||||
|
||||
let performAction = () => {
|
||||
|
@ -140,7 +140,7 @@ export default Component.extend({
|
|||
});
|
||||
|
||||
return ajax(
|
||||
`/review/${reviewable.id}/perform/${performableAction.id}?version=${version}`,
|
||||
`/review/${reviewable.id}/perform/${action.id}?version=${version}`,
|
||||
{
|
||||
type: "PUT",
|
||||
data,
|
||||
|
@ -173,16 +173,13 @@ export default Component.extend({
|
|||
.finally(() => this.set("updating", false));
|
||||
};
|
||||
|
||||
if (performableAction.client_action) {
|
||||
let actionMethod =
|
||||
this[`client${classify(performableAction.client_action)}`];
|
||||
if (action.client_action) {
|
||||
let actionMethod = this[`client${classify(action.client_action)}`];
|
||||
if (actionMethod) {
|
||||
return actionMethod.call(this, reviewable, performAction);
|
||||
} else {
|
||||
// eslint-disable-next-line no-console
|
||||
console.error(
|
||||
`No handler for ${performableAction.client_action} found`
|
||||
);
|
||||
console.error(`No handler for ${action.client_action} found`);
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
|
@ -212,16 +209,14 @@ export default Component.extend({
|
|||
}
|
||||
},
|
||||
|
||||
@action
|
||||
explainReviewable(reviewable, event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
explainReviewable(reviewable) {
|
||||
showModal("explain-reviewable", {
|
||||
title: "review.explain.title",
|
||||
model: reviewable,
|
||||
});
|
||||
},
|
||||
|
||||
actions: {
|
||||
edit() {
|
||||
this.set("editing", true);
|
||||
this.set("_updates", { payload: {} });
|
||||
|
@ -264,18 +259,18 @@ export default Component.extend({
|
|||
set(this._updates, fieldId, event.target.value);
|
||||
},
|
||||
|
||||
perform(performableAction) {
|
||||
perform(action) {
|
||||
if (this.updating) {
|
||||
return;
|
||||
}
|
||||
|
||||
let msg = performableAction.get("confirm_message");
|
||||
let requireRejectReason = performableAction.get("require_reject_reason");
|
||||
let customModal = performableAction.get("custom_modal");
|
||||
let msg = action.get("confirm_message");
|
||||
let requireRejectReason = action.get("require_reject_reason");
|
||||
let customModal = action.get("custom_modal");
|
||||
if (msg) {
|
||||
bootbox.confirm(msg, (answer) => {
|
||||
if (answer) {
|
||||
return this._performConfirmed(performableAction);
|
||||
return this._performConfirmed(action);
|
||||
}
|
||||
});
|
||||
} else if (requireRejectReason) {
|
||||
|
@ -284,7 +279,7 @@ export default Component.extend({
|
|||
model: this.reviewable,
|
||||
}).setProperties({
|
||||
performConfirmed: this._performConfirmed,
|
||||
action: performableAction,
|
||||
action,
|
||||
});
|
||||
} else if (customModal) {
|
||||
showModal(customModal, {
|
||||
|
@ -292,10 +287,10 @@ export default Component.extend({
|
|||
model: this.reviewable,
|
||||
}).setProperties({
|
||||
performConfirmed: this._performConfirmed,
|
||||
action: performableAction,
|
||||
action,
|
||||
});
|
||||
} else {
|
||||
return this._performConfirmed(performableAction);
|
||||
return this._performConfirmed(action);
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import Component from "@ember/component";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
import { action } from "@ember/object";
|
||||
import { gt } from "@ember/object/computed";
|
||||
import { historyHeat } from "discourse/widgets/post-edits-indicator";
|
||||
import { longDate } from "discourse/lib/formatter";
|
||||
|
@ -19,9 +18,8 @@ export default Component.extend({
|
|||
return longDate(updatedAt);
|
||||
},
|
||||
|
||||
@action
|
||||
showEditHistory(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
showEditHistory() {
|
||||
let postId = this.get("reviewable.post_id");
|
||||
this.store.find("post", postId).then((post) => {
|
||||
let historyController = showModal("history", {
|
||||
|
@ -33,4 +31,5 @@ export default Component.extend({
|
|||
historyController.set("topicController", null);
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
import Component from "@ember/component";
|
||||
import { action } from "@ember/object";
|
||||
import showModal from "discourse/lib/show-modal";
|
||||
|
||||
export default Component.extend({
|
||||
@action
|
||||
showRawEmail(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
showRawEmail() {
|
||||
showModal("raw-email").set("rawEmail", this.reviewable.payload.raw_email);
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -11,7 +11,6 @@ export default Component.extend({
|
|||
|
||||
@action
|
||||
logClick(topicId) {
|
||||
// Important: Don't prevent default handling of clicks
|
||||
if (this.searchLogId && topicId) {
|
||||
logSearchLinkClick({
|
||||
searchLogId: this.searchLogId,
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import Component from "@ember/component";
|
||||
import { action } from "@ember/object";
|
||||
import I18n from "I18n";
|
||||
import { SECOND_FACTOR_METHODS } from "discourse/models/user";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
|
@ -49,9 +48,8 @@ export default Component.extend({
|
|||
);
|
||||
},
|
||||
|
||||
@action
|
||||
toggleSecondFactorMethod(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
toggleSecondFactorMethod() {
|
||||
const secondFactorMethod = this.secondFactorMethod;
|
||||
this.set("secondFactorToken", "");
|
||||
if (secondFactorMethod === SECOND_FACTOR_METHODS.TOTP) {
|
||||
|
@ -60,4 +58,5 @@ export default Component.extend({
|
|||
this.set("secondFactorMethod", SECOND_FACTOR_METHODS.TOTP);
|
||||
}
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
import Component from "@ember/component";
|
||||
import { action } from "@ember/object";
|
||||
import { SECOND_FACTOR_METHODS } from "discourse/models/user";
|
||||
|
||||
export default Component.extend({
|
||||
@action
|
||||
useAnotherMethod(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
useAnotherMethod() {
|
||||
this.set("showSecurityKey", false);
|
||||
this.set("showSecondFactor", true);
|
||||
this.set("secondFactorMethod", SECOND_FACTOR_METHODS.TOTP);
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -1,19 +1,15 @@
|
|||
import Component from "@ember/component";
|
||||
import discourseLater from "discourse-common/lib/later";
|
||||
import { action } from "@ember/object";
|
||||
import { on } from "@ember/object/evented";
|
||||
|
||||
export default Component.extend({
|
||||
action: "showCreateAccount",
|
||||
|
||||
@action
|
||||
neverShow(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
neverShow() {
|
||||
this.keyValueStore.setItem("anon-cta-never", "t");
|
||||
this.session.set("showSignupCta", false);
|
||||
},
|
||||
|
||||
actions: {
|
||||
hideForSession() {
|
||||
this.session.set("hideSignupCta", true);
|
||||
this.keyValueStore.setItem("anon-cta-hidden", Date.now());
|
||||
|
|
|
@ -7,7 +7,6 @@ import discourseComputed from "discourse-common/utils/decorators";
|
|||
import { isEmpty } from "@ember/utils";
|
||||
import { popupAjaxError } from "discourse/lib/ajax-error";
|
||||
import { inject as service } from "@ember/service";
|
||||
import { action } from "@ember/object";
|
||||
|
||||
export default Component.extend({
|
||||
dialog: service(),
|
||||
|
@ -77,9 +76,12 @@ export default Component.extend({
|
|||
.catch(popupAjaxError);
|
||||
},
|
||||
|
||||
@action
|
||||
edit(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
toggleEditControls() {
|
||||
this.toggleProperty("showEditControls");
|
||||
},
|
||||
|
||||
edit() {
|
||||
this.setProperties({
|
||||
editing: true,
|
||||
newTagName: this.tag.id,
|
||||
|
@ -87,39 +89,6 @@ export default Component.extend({
|
|||
});
|
||||
},
|
||||
|
||||
@action
|
||||
unlinkSynonym(tag, event) {
|
||||
event?.preventDefault();
|
||||
ajax(`/tag/${this.tagInfo.name}/synonyms/${tag.id}`, {
|
||||
type: "DELETE",
|
||||
})
|
||||
.then(() => this.tagInfo.synonyms.removeObject(tag))
|
||||
.catch(popupAjaxError);
|
||||
},
|
||||
|
||||
@action
|
||||
deleteSynonym(tag, event) {
|
||||
event?.preventDefault();
|
||||
bootbox.confirm(
|
||||
I18n.t("tagging.delete_synonym_confirm", { tag_name: tag.text }),
|
||||
(result) => {
|
||||
if (!result) {
|
||||
return;
|
||||
}
|
||||
|
||||
tag
|
||||
.destroyRecord()
|
||||
.then(() => this.tagInfo.synonyms.removeObject(tag))
|
||||
.catch(popupAjaxError);
|
||||
}
|
||||
);
|
||||
},
|
||||
|
||||
actions: {
|
||||
toggleEditControls() {
|
||||
this.toggleProperty("showEditControls");
|
||||
},
|
||||
|
||||
cancelEditing() {
|
||||
this.set("editing", false);
|
||||
},
|
||||
|
@ -145,6 +114,30 @@ export default Component.extend({
|
|||
this.deleteAction(this.tagInfo);
|
||||
},
|
||||
|
||||
unlinkSynonym(tag) {
|
||||
ajax(`/tag/${this.tagInfo.name}/synonyms/${tag.id}`, {
|
||||
type: "DELETE",
|
||||
})
|
||||
.then(() => this.tagInfo.synonyms.removeObject(tag))
|
||||
.catch(popupAjaxError);
|
||||
},
|
||||
|
||||
deleteSynonym(tag) {
|
||||
bootbox.confirm(
|
||||
I18n.t("tagging.delete_synonym_confirm", { tag_name: tag.text }),
|
||||
(result) => {
|
||||
if (!result) {
|
||||
return;
|
||||
}
|
||||
|
||||
tag
|
||||
.destroyRecord()
|
||||
.then(() => this.tagInfo.synonyms.removeObject(tag))
|
||||
.catch(popupAjaxError);
|
||||
}
|
||||
);
|
||||
},
|
||||
|
||||
addSynonyms() {
|
||||
bootbox.confirm(
|
||||
I18n.t("tagging.add_synonyms_explanation", {
|
||||
|
|
|
@ -251,7 +251,6 @@ export default Component.extend({
|
|||
if (wantsNewWindow(e)) {
|
||||
return true;
|
||||
}
|
||||
e.preventDefault();
|
||||
return this.navigateToTopic(topic, e.target.getAttribute("href"));
|
||||
}
|
||||
|
||||
|
@ -265,7 +264,6 @@ export default Component.extend({
|
|||
if (wantsNewWindow(e)) {
|
||||
return true;
|
||||
}
|
||||
e.preventDefault();
|
||||
return this.navigateToTopic(topic, topic.lastUnreadUrl);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import EmberObject, { action, set } from "@ember/object";
|
||||
import EmberObject, { set } from "@ember/object";
|
||||
import { alias, and, gt, gte, not, or } from "@ember/object/computed";
|
||||
import discourseComputed, { observes } from "discourse-common/utils/decorators";
|
||||
import { propertyNotEqual, setting } from "discourse/lib/computed";
|
||||
|
@ -220,15 +220,6 @@ export default Component.extend(CardContentsBase, CanCheckEmails, CleansUp, {
|
|||
this._close();
|
||||
},
|
||||
|
||||
@action
|
||||
handleShowUser(user, event) {
|
||||
event?.preventDefault();
|
||||
// Invokes `showUser` argument. Convert to `this.args.showUser` when
|
||||
// refactoring this to a glimmer component.
|
||||
this.showUser(user);
|
||||
this._close();
|
||||
},
|
||||
|
||||
actions: {
|
||||
close() {
|
||||
this._close();
|
||||
|
@ -256,8 +247,9 @@ export default Component.extend(CardContentsBase, CanCheckEmails, CleansUp, {
|
|||
this._close();
|
||||
},
|
||||
|
||||
showUser(user) {
|
||||
this.handleShowUser(user);
|
||||
showUser(username) {
|
||||
this.showUser(username);
|
||||
this._close();
|
||||
},
|
||||
|
||||
checkEmail(user) {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import Controller from "@ember/controller";
|
||||
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
||||
import { ajax } from "discourse/lib/ajax";
|
||||
import { action } from "@ember/object";
|
||||
import { next } from "@ember/runloop";
|
||||
import { userPath } from "discourse/lib/url";
|
||||
|
||||
|
@ -18,13 +17,11 @@ export default Controller.extend(ModalFunctionality, {
|
|||
});
|
||||
},
|
||||
|
||||
@action
|
||||
toggleExpanded(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
toggleExpanded() {
|
||||
this.set("expanded", !this.expanded);
|
||||
},
|
||||
|
||||
actions: {
|
||||
highlightSecure() {
|
||||
this.send("closeModal");
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import Controller from "@ember/controller";
|
||||
import { action } from "@ember/object";
|
||||
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
||||
import { ajax } from "discourse/lib/ajax";
|
||||
import { allowsImages } from "discourse/lib/uploads";
|
||||
|
@ -133,15 +132,6 @@ export default Controller.extend(ModalFunctionality, {
|
|||
);
|
||||
},
|
||||
|
||||
@action
|
||||
selectAvatar(url, event) {
|
||||
event?.preventDefault();
|
||||
this.user
|
||||
.selectAvatar(url)
|
||||
.then(() => window.location.reload())
|
||||
.catch(popupAjaxError);
|
||||
},
|
||||
|
||||
actions: {
|
||||
uploadComplete() {
|
||||
this.set("selected", "custom");
|
||||
|
@ -169,6 +159,13 @@ export default Controller.extend(ModalFunctionality, {
|
|||
.finally(() => this.set("gravatarRefreshDisabled", false));
|
||||
},
|
||||
|
||||
selectAvatar(url) {
|
||||
this.user
|
||||
.selectAvatar(url)
|
||||
.then(() => window.location.reload())
|
||||
.catch(popupAjaxError);
|
||||
},
|
||||
|
||||
saveAvatarSelection() {
|
||||
const selectedUploadId = this.selectedUploadId;
|
||||
const type = this.selected;
|
||||
|
|
|
@ -508,32 +508,11 @@ export default Controller.extend({
|
|||
this.set("model.showFullScreenExitPrompt", false);
|
||||
},
|
||||
|
||||
@action
|
||||
async cancel(event) {
|
||||
event?.preventDefault();
|
||||
await this.cancelComposer();
|
||||
},
|
||||
|
||||
@action
|
||||
cancelUpload(event) {
|
||||
event?.preventDefault();
|
||||
this.set("model.uploadCancelled", true);
|
||||
},
|
||||
|
||||
@action
|
||||
togglePreview(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
togglePreview() {
|
||||
this.toggleProperty("showPreview");
|
||||
},
|
||||
|
||||
@action
|
||||
viewNewReply(event) {
|
||||
event?.preventDefault();
|
||||
DiscourseURL.routeTo(this.get("model.createdPost.url"));
|
||||
this.close();
|
||||
},
|
||||
|
||||
actions: {
|
||||
closeComposer() {
|
||||
this.close();
|
||||
},
|
||||
|
@ -564,6 +543,10 @@ export default Controller.extend({
|
|||
});
|
||||
},
|
||||
|
||||
cancelUpload() {
|
||||
this.set("model.uploadCancelled", true);
|
||||
},
|
||||
|
||||
onPopupMenuAction(menuAction) {
|
||||
this.send(menuAction);
|
||||
},
|
||||
|
@ -724,6 +707,10 @@ export default Controller.extend({
|
|||
this.set("model.loading", false);
|
||||
},
|
||||
|
||||
async cancel() {
|
||||
await this.cancelComposer();
|
||||
},
|
||||
|
||||
save(ignore, event) {
|
||||
this.save(false, {
|
||||
jump:
|
||||
|
@ -1288,6 +1275,12 @@ export default Controller.extend({
|
|||
}
|
||||
},
|
||||
|
||||
viewNewReply() {
|
||||
DiscourseURL.routeTo(this.get("model.createdPost.url"));
|
||||
this.close();
|
||||
return false;
|
||||
},
|
||||
|
||||
async destroyDraft(draftSequence = null) {
|
||||
const key = this.get("model.draftKey");
|
||||
if (!key) {
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import DiscoveryController from "discourse/controllers/discovery";
|
||||
import { inject as controller } from "@ember/controller";
|
||||
import { action } from "@ember/object";
|
||||
import { dasherize } from "@ember/string";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
import { reads } from "@ember/object/computed";
|
||||
|
@ -51,19 +50,17 @@ export default DiscoveryController.extend({
|
|||
: style;
|
||||
return dasherize(componentName);
|
||||
},
|
||||
|
||||
@action
|
||||
showInserted(event) {
|
||||
event?.preventDefault();
|
||||
const tracker = this.topicTrackingState;
|
||||
// Move inserted into topics
|
||||
this.model.loadBefore(tracker.get("newIncoming"), true);
|
||||
tracker.resetTracking();
|
||||
},
|
||||
|
||||
actions: {
|
||||
refresh() {
|
||||
this.send("triggerRefresh");
|
||||
},
|
||||
showInserted() {
|
||||
const tracker = this.topicTrackingState;
|
||||
|
||||
// Move inserted into topics
|
||||
this.model.loadBefore(tracker.get("newIncoming"), true);
|
||||
tracker.resetTracking();
|
||||
return false;
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -63,17 +63,6 @@ const controllerOpts = {
|
|||
return this._isFilterPage(filter, "new") && topicsLength > 0;
|
||||
},
|
||||
|
||||
// Show newly inserted topics
|
||||
@action
|
||||
showInserted(event) {
|
||||
event?.preventDefault();
|
||||
const tracker = this.topicTrackingState;
|
||||
|
||||
// Move inserted into topics
|
||||
this.model.loadBefore(tracker.get("newIncoming"), true);
|
||||
tracker.resetTracking();
|
||||
},
|
||||
|
||||
actions: {
|
||||
changeSort() {
|
||||
deprecated(
|
||||
|
@ -83,6 +72,16 @@ const controllerOpts = {
|
|||
return routeAction("changeSort", this.router._router, ...arguments)();
|
||||
},
|
||||
|
||||
// Show newly inserted topics
|
||||
showInserted() {
|
||||
const tracker = this.topicTrackingState;
|
||||
|
||||
// Move inserted into topics
|
||||
this.model.loadBefore(tracker.get("newIncoming"), true);
|
||||
tracker.resetTracking();
|
||||
return false;
|
||||
},
|
||||
|
||||
refresh(options = { skipResettingParams: [] }) {
|
||||
const filter = this.get("model.filter");
|
||||
this.send("resetParams", options.skipResettingParams);
|
||||
|
|
|
@ -14,7 +14,6 @@ import I18n from "I18n";
|
|||
import { ajax } from "discourse/lib/ajax";
|
||||
import { escapeExpression } from "discourse/lib/utilities";
|
||||
import { isEmpty } from "@ember/utils";
|
||||
import { action } from "@ember/object";
|
||||
import { gt, or } from "@ember/object/computed";
|
||||
import { scrollTop } from "discourse/mixins/scroll-top";
|
||||
import { setTransient } from "discourse/lib/page-tracker";
|
||||
|
@ -392,9 +391,8 @@ export default Controller.extend({
|
|||
}
|
||||
},
|
||||
|
||||
@action
|
||||
createTopic(searchTerm, event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
createTopic(searchTerm) {
|
||||
let topicCategory;
|
||||
if (searchTerm.includes("category:")) {
|
||||
const match = searchTerm.match(/category:(\S*)/);
|
||||
|
@ -409,7 +407,6 @@ export default Controller.extend({
|
|||
});
|
||||
},
|
||||
|
||||
actions: {
|
||||
selectAll() {
|
||||
this.selected.addObjects(this.get("model.posts").mapBy("topic"));
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import { action } from "@ember/object";
|
||||
import { alias, equal, gt, not, or } from "@ember/object/computed";
|
||||
import discourseComputed, {
|
||||
observes,
|
||||
|
@ -314,24 +313,6 @@ export default Controller.extend(ModalFunctionality, {
|
|||
}
|
||||
},
|
||||
|
||||
@action
|
||||
displayInline(event) {
|
||||
event?.preventDefault();
|
||||
this.set("viewMode", "inline");
|
||||
},
|
||||
|
||||
@action
|
||||
displaySideBySide(event) {
|
||||
event?.preventDefault();
|
||||
this.set("viewMode", "side_by_side");
|
||||
},
|
||||
|
||||
@action
|
||||
displaySideBySideMarkdown(event) {
|
||||
event?.preventDefault();
|
||||
this.set("viewMode", "side_by_side_markdown");
|
||||
},
|
||||
|
||||
actions: {
|
||||
loadFirstVersion() {
|
||||
this.refresh(this.get("model.post_id"), this.get("model.first_revision"));
|
||||
|
@ -364,5 +345,15 @@ export default Controller.extend(ModalFunctionality, {
|
|||
revertToVersion() {
|
||||
this.revert(this.post, this.get("model.current_revision"));
|
||||
},
|
||||
|
||||
displayInline() {
|
||||
this.set("viewMode", "inline");
|
||||
},
|
||||
displaySideBySide() {
|
||||
this.set("viewMode", "side_by_side");
|
||||
},
|
||||
displaySideBySideMarkdown() {
|
||||
this.set("viewMode", "side_by_side_markdown");
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -3,7 +3,7 @@ import { alias, not, or, readOnly } from "@ember/object/computed";
|
|||
import { areCookiesEnabled, escapeExpression } from "discourse/lib/utilities";
|
||||
import cookie, { removeCookie } from "discourse/lib/cookie";
|
||||
import { next, schedule } from "@ember/runloop";
|
||||
import EmberObject, { action } from "@ember/object";
|
||||
import EmberObject from "@ember/object";
|
||||
import I18n from "I18n";
|
||||
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
||||
import { SECOND_FACTOR_METHODS } from "discourse/models/user";
|
||||
|
@ -133,66 +133,7 @@ export default Controller.extend(ModalFunctionality, {
|
|||
return canLoginLocalWithEmail;
|
||||
},
|
||||
|
||||
@action
|
||||
emailLogin(event) {
|
||||
event?.preventDefault();
|
||||
|
||||
if (this.processingEmailLink) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (isEmpty(this.loginName)) {
|
||||
this.flash(I18n.t("login.blank_username"), "info");
|
||||
return;
|
||||
}
|
||||
|
||||
this.set("processingEmailLink", true);
|
||||
|
||||
ajax("/u/email-login", {
|
||||
data: { login: this.loginName.trim() },
|
||||
type: "POST",
|
||||
})
|
||||
.then((data) => {
|
||||
const loginName = escapeExpression(this.loginName);
|
||||
const isEmail = loginName.match(/@/);
|
||||
let key = `email_login.complete_${isEmail ? "email" : "username"}`;
|
||||
if (data.user_found === false) {
|
||||
this.flash(
|
||||
I18n.t(`${key}_not_found`, {
|
||||
email: loginName,
|
||||
username: loginName,
|
||||
}),
|
||||
"error"
|
||||
);
|
||||
} else {
|
||||
let postfix = data.hide_taken ? "" : "_found";
|
||||
this.flash(
|
||||
I18n.t(`${key}${postfix}`, {
|
||||
email: loginName,
|
||||
username: loginName,
|
||||
})
|
||||
);
|
||||
}
|
||||
})
|
||||
.catch((e) => this.flash(extractError(e), "error"))
|
||||
.finally(() => this.set("processingEmailLink", false));
|
||||
},
|
||||
|
||||
@action
|
||||
handleForgotPassword(event) {
|
||||
event?.preventDefault();
|
||||
const forgotPasswordController = this.forgotPassword;
|
||||
if (forgotPasswordController) {
|
||||
forgotPasswordController.set("accountEmailOrUsername", this.loginName);
|
||||
}
|
||||
this.send("showForgotPassword");
|
||||
},
|
||||
|
||||
actions: {
|
||||
forgotPassword() {
|
||||
this.handleForgotPassword();
|
||||
},
|
||||
|
||||
login() {
|
||||
if (this.loginDisabled) {
|
||||
return;
|
||||
|
@ -356,6 +297,56 @@ export default Controller.extend(ModalFunctionality, {
|
|||
this.send("showCreateAccount");
|
||||
},
|
||||
|
||||
forgotPassword() {
|
||||
const forgotPasswordController = this.forgotPassword;
|
||||
if (forgotPasswordController) {
|
||||
forgotPasswordController.set("accountEmailOrUsername", this.loginName);
|
||||
}
|
||||
this.send("showForgotPassword");
|
||||
},
|
||||
|
||||
emailLogin() {
|
||||
if (this.processingEmailLink) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (isEmpty(this.loginName)) {
|
||||
this.flash(I18n.t("login.blank_username"), "info");
|
||||
return;
|
||||
}
|
||||
|
||||
this.set("processingEmailLink", true);
|
||||
|
||||
ajax("/u/email-login", {
|
||||
data: { login: this.loginName.trim() },
|
||||
type: "POST",
|
||||
})
|
||||
.then((data) => {
|
||||
const loginName = escapeExpression(this.loginName);
|
||||
const isEmail = loginName.match(/@/);
|
||||
let key = `email_login.complete_${isEmail ? "email" : "username"}`;
|
||||
if (data.user_found === false) {
|
||||
this.flash(
|
||||
I18n.t(`${key}_not_found`, {
|
||||
email: loginName,
|
||||
username: loginName,
|
||||
}),
|
||||
"error"
|
||||
);
|
||||
} else {
|
||||
let postfix = data.hide_taken ? "" : "_found";
|
||||
this.flash(
|
||||
I18n.t(`${key}${postfix}`, {
|
||||
email: loginName,
|
||||
username: loginName,
|
||||
})
|
||||
);
|
||||
}
|
||||
})
|
||||
.catch((e) => this.flash(extractError(e), "error"))
|
||||
.finally(() => this.set("processingEmailLink", false));
|
||||
},
|
||||
|
||||
authenticateSecurityKey() {
|
||||
getWebauthnCredential(
|
||||
this.securityKeyChallenge,
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import DiscourseURL, { userPath } from "discourse/lib/url";
|
||||
import { action } from "@ember/object";
|
||||
import { alias, or, readOnly } from "@ember/object/computed";
|
||||
import Controller from "@ember/controller";
|
||||
import I18n from "I18n";
|
||||
|
@ -47,13 +46,6 @@ export default Controller.extend(PasswordValidation, {
|
|||
|
||||
lockImageUrl: getURL("/images/lock.svg"),
|
||||
|
||||
@action
|
||||
done(event) {
|
||||
event?.preventDefault();
|
||||
this.set("redirected", true);
|
||||
DiscourseURL.redirectTo(this.redirectTo || "/");
|
||||
},
|
||||
|
||||
actions: {
|
||||
submit() {
|
||||
ajax({
|
||||
|
@ -134,5 +126,10 @@ export default Controller.extend(PasswordValidation, {
|
|||
}
|
||||
);
|
||||
},
|
||||
|
||||
done() {
|
||||
this.set("redirected", true);
|
||||
DiscourseURL.redirectTo(this.redirectTo || "/");
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -2,7 +2,7 @@ import { gt, not, or } from "@ember/object/computed";
|
|||
import { propertyNotEqual, setting } from "discourse/lib/computed";
|
||||
import CanCheckEmails from "discourse/mixins/can-check-emails";
|
||||
import Controller from "@ember/controller";
|
||||
import EmberObject, { action } from "@ember/object";
|
||||
import EmberObject from "@ember/object";
|
||||
import I18n from "I18n";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
import { findAll } from "discourse/models/login-method";
|
||||
|
@ -132,20 +132,6 @@ export default Controller.extend(CanCheckEmails, {
|
|||
return findAll().length > 0;
|
||||
},
|
||||
|
||||
@action
|
||||
resendConfirmationEmail(email, event) {
|
||||
event?.preventDefault();
|
||||
email.set("resending", true);
|
||||
this.model
|
||||
.addEmail(email.email)
|
||||
.then(() => {
|
||||
email.set("resent", true);
|
||||
})
|
||||
.finally(() => {
|
||||
email.set("resending", false);
|
||||
});
|
||||
},
|
||||
|
||||
actions: {
|
||||
save() {
|
||||
this.set("saved", false);
|
||||
|
@ -171,6 +157,18 @@ export default Controller.extend(CanCheckEmails, {
|
|||
this.model.destroyEmail(email);
|
||||
},
|
||||
|
||||
resendConfirmationEmail(email) {
|
||||
email.set("resending", true);
|
||||
this.model
|
||||
.addEmail(email.email)
|
||||
.then(() => {
|
||||
email.set("resent", true);
|
||||
})
|
||||
.finally(() => {
|
||||
email.set("resending", false);
|
||||
});
|
||||
},
|
||||
|
||||
delete() {
|
||||
this.dialog.alert({
|
||||
message: I18n.t("user.delete_account_confirm"),
|
||||
|
|
|
@ -3,7 +3,6 @@ import CanCheckEmails from "discourse/mixins/can-check-emails";
|
|||
import Controller from "@ember/controller";
|
||||
import I18n from "I18n";
|
||||
import { SECOND_FACTOR_METHODS } from "discourse/models/user";
|
||||
import { action } from "@ember/object";
|
||||
import { alias } from "@ember/object/computed";
|
||||
import bootbox from "bootbox";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
|
@ -92,10 +91,17 @@ export default Controller.extend(CanCheckEmails, {
|
|||
this.set("dirty", true);
|
||||
},
|
||||
|
||||
@action
|
||||
resetPassword(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
confirmPassword() {
|
||||
if (!this.password) {
|
||||
return;
|
||||
}
|
||||
this.markDirty();
|
||||
this.loadSecondFactors();
|
||||
this.set("password", null);
|
||||
},
|
||||
|
||||
resetPassword() {
|
||||
this.setProperties({
|
||||
resetPasswordLoading: true,
|
||||
resetPasswordProgress: "",
|
||||
|
@ -113,16 +119,6 @@ export default Controller.extend(CanCheckEmails, {
|
|||
.finally(() => this.set("resetPasswordLoading", false));
|
||||
},
|
||||
|
||||
actions: {
|
||||
confirmPassword() {
|
||||
if (!this.password) {
|
||||
return;
|
||||
}
|
||||
this.markDirty();
|
||||
this.loadSecondFactors();
|
||||
this.set("password", null);
|
||||
},
|
||||
|
||||
disableAllSecondFactors() {
|
||||
if (this.loading) {
|
||||
return;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import Controller from "@ember/controller";
|
||||
import { action } from "@ember/object";
|
||||
import { gt } from "@ember/object/computed";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
import { ajax } from "discourse/lib/ajax";
|
||||
|
@ -52,11 +51,21 @@ export default Controller.extend(CanCheckEmails, {
|
|||
DEFAULT_AUTH_TOKENS_COUNT
|
||||
),
|
||||
|
||||
@action
|
||||
changePassword(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
save() {
|
||||
this.set("saved", false);
|
||||
|
||||
return this.model
|
||||
.then(() => this.set("saved", true))
|
||||
.catch(popupAjaxError);
|
||||
},
|
||||
|
||||
changePassword() {
|
||||
if (!this.passwordProgress) {
|
||||
this.set("passwordProgress", I18n.t("user.change_password.in_progress"));
|
||||
this.set(
|
||||
"passwordProgress",
|
||||
I18n.t("user.change_password.in_progress")
|
||||
);
|
||||
return this.model
|
||||
.changePassword()
|
||||
.then(() => {
|
||||
|
@ -76,15 +85,11 @@ export default Controller.extend(CanCheckEmails, {
|
|||
}
|
||||
},
|
||||
|
||||
@action
|
||||
toggleShowAllAuthTokens(event) {
|
||||
event?.preventDefault();
|
||||
toggleShowAllAuthTokens() {
|
||||
this.toggleProperty("showAllAuthTokens");
|
||||
},
|
||||
|
||||
@action
|
||||
revokeAuthToken(token, event) {
|
||||
event?.preventDefault();
|
||||
revokeAuthToken(token) {
|
||||
ajax(
|
||||
userPath(
|
||||
`${this.get("model.username_lower")}/preferences/revoke-auth-token`
|
||||
|
@ -102,15 +107,6 @@ export default Controller.extend(CanCheckEmails, {
|
|||
.catch(popupAjaxError);
|
||||
},
|
||||
|
||||
actions: {
|
||||
save() {
|
||||
this.set("saved", false);
|
||||
|
||||
return this.model
|
||||
.then(() => this.set("saved", true))
|
||||
.catch(popupAjaxError);
|
||||
},
|
||||
|
||||
showToken(token) {
|
||||
showModal("auth-token", { model: token });
|
||||
},
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import Controller from "@ember/controller";
|
||||
import { action } from "@ember/object";
|
||||
import I18n from "I18n";
|
||||
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
||||
|
||||
|
@ -41,15 +40,9 @@ export default Controller.extend(ModalFunctionality, {
|
|||
.finally(() => this.set("loading", false));
|
||||
},
|
||||
|
||||
@action
|
||||
enableShowSecondFactorKey(event) {
|
||||
event?.preventDefault();
|
||||
this.set("showSecondFactorKey", true);
|
||||
},
|
||||
|
||||
actions: {
|
||||
showSecondFactorKey() {
|
||||
this.enableShowSecondFactorKey();
|
||||
this.set("showSecondFactorKey", true);
|
||||
},
|
||||
|
||||
enableSecondFactor() {
|
||||
|
|
|
@ -212,8 +212,7 @@ export default Controller.extend({
|
|||
},
|
||||
|
||||
@action
|
||||
useAnotherMethod(newMethod, event) {
|
||||
event?.preventDefault();
|
||||
useAnotherMethod(newMethod) {
|
||||
this.set("userSelectedMethod", newMethod);
|
||||
},
|
||||
|
||||
|
|
|
@ -110,8 +110,7 @@ export default DiscoverySortableController.extend(
|
|||
},
|
||||
|
||||
@action
|
||||
showInserted(event) {
|
||||
event?.preventDefault();
|
||||
showInserted() {
|
||||
const tracker = this.topicTrackingState;
|
||||
this.list.loadBefore(tracker.newIncoming, true);
|
||||
tracker.resetTracking();
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import { action } from "@ember/object";
|
||||
import { alias, notEmpty } from "@ember/object/computed";
|
||||
import Controller from "@ember/controller";
|
||||
import I18n from "I18n";
|
||||
|
@ -42,9 +41,8 @@ export default Controller.extend({
|
|||
};
|
||||
},
|
||||
|
||||
@action
|
||||
sortByCount(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
sortByCount() {
|
||||
this.setProperties({
|
||||
sortProperties: ["totalCount:desc", "id"],
|
||||
sortedByCount: true,
|
||||
|
@ -52,9 +50,7 @@ export default Controller.extend({
|
|||
});
|
||||
},
|
||||
|
||||
@action
|
||||
sortById(event) {
|
||||
event?.preventDefault();
|
||||
sortById() {
|
||||
this.setProperties({
|
||||
sortProperties: ["id"],
|
||||
sortedByCount: false,
|
||||
|
@ -62,7 +58,6 @@ export default Controller.extend({
|
|||
});
|
||||
},
|
||||
|
||||
actions: {
|
||||
showUploader() {
|
||||
showModal("tag-upload");
|
||||
},
|
||||
|
|
|
@ -313,55 +313,6 @@ export default Controller.extend(bufferedProperty("model"), {
|
|||
});
|
||||
},
|
||||
|
||||
@action
|
||||
editTopic(event) {
|
||||
event?.preventDefault();
|
||||
if (this.get("model.details.can_edit")) {
|
||||
this.set("editingTopic", true);
|
||||
}
|
||||
},
|
||||
|
||||
@action
|
||||
jumpTop(event) {
|
||||
event?.preventDefault();
|
||||
DiscourseURL.routeTo(this.get("model.firstPostUrl"), {
|
||||
skipIfOnScreen: false,
|
||||
keepFilter: true,
|
||||
});
|
||||
},
|
||||
|
||||
@action
|
||||
removeFeaturedLink(event) {
|
||||
event?.preventDefault();
|
||||
this.set("buffered.featured_link", null);
|
||||
},
|
||||
|
||||
@action
|
||||
selectAll(event) {
|
||||
event?.preventDefault();
|
||||
const smallActionsPostIds = this._smallActionPostIds();
|
||||
this.set("selectedPostIds", [
|
||||
...this.get("model.postStream.stream").filter(
|
||||
(postId) => !smallActionsPostIds.has(postId)
|
||||
),
|
||||
]);
|
||||
this._forceRefreshPostStream();
|
||||
},
|
||||
|
||||
@action
|
||||
deselectAll(event) {
|
||||
event?.preventDefault();
|
||||
this.set("selectedPostIds", []);
|
||||
this._forceRefreshPostStream();
|
||||
},
|
||||
|
||||
@action
|
||||
toggleMultiSelect(event) {
|
||||
event?.preventDefault();
|
||||
this.toggleProperty("multiSelect");
|
||||
this._forceRefreshPostStream();
|
||||
},
|
||||
|
||||
actions: {
|
||||
topicCategoryChanged(categoryId) {
|
||||
this.set("buffered.category_id", categoryId);
|
||||
|
@ -871,6 +822,13 @@ export default Controller.extend(bufferedProperty("model"), {
|
|||
this._jumpToPostNumber(postNumber);
|
||||
},
|
||||
|
||||
jumpTop() {
|
||||
DiscourseURL.routeTo(this.get("model.firstPostUrl"), {
|
||||
skipIfOnScreen: false,
|
||||
keepFilter: true,
|
||||
});
|
||||
},
|
||||
|
||||
jumpBottom() {
|
||||
// When a topic only has one lengthy post
|
||||
const jumpEnd = this.model.highest_post_number === 1 ? true : false;
|
||||
|
@ -901,6 +859,26 @@ export default Controller.extend(bufferedProperty("model"), {
|
|||
this._jumpToPostId(postId);
|
||||
},
|
||||
|
||||
toggleMultiSelect() {
|
||||
this.toggleProperty("multiSelect");
|
||||
this._forceRefreshPostStream();
|
||||
},
|
||||
|
||||
selectAll() {
|
||||
const smallActionsPostIds = this._smallActionPostIds();
|
||||
this.set("selectedPostIds", [
|
||||
...this.get("model.postStream.stream").filter(
|
||||
(postId) => !smallActionsPostIds.has(postId)
|
||||
),
|
||||
]);
|
||||
this._forceRefreshPostStream();
|
||||
},
|
||||
|
||||
deselectAll() {
|
||||
this.set("selectedPostIds", []);
|
||||
this._forceRefreshPostStream();
|
||||
},
|
||||
|
||||
togglePostSelection(post) {
|
||||
const selected = this.selectedPostIds;
|
||||
selected.includes(post.id)
|
||||
|
@ -995,6 +973,13 @@ export default Controller.extend(bufferedProperty("model"), {
|
|||
.then(() => this.updateQueryParams);
|
||||
},
|
||||
|
||||
editTopic() {
|
||||
if (this.get("model.details.can_edit")) {
|
||||
this.set("editingTopic", true);
|
||||
}
|
||||
return false;
|
||||
},
|
||||
|
||||
cancelEditingTopic() {
|
||||
this.set("editingTopic", false);
|
||||
this.rollbackBuffer();
|
||||
|
@ -1174,6 +1159,10 @@ export default Controller.extend(bufferedProperty("model"), {
|
|||
.catch(popupAjaxError);
|
||||
},
|
||||
|
||||
removeFeaturedLink() {
|
||||
this.set("buffered.featured_link", null);
|
||||
},
|
||||
|
||||
resetBumpDate() {
|
||||
this.model.resetBumpDate();
|
||||
},
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
import Controller from "@ember/controller";
|
||||
import { action } from "@ember/object";
|
||||
|
||||
export default Controller.extend({
|
||||
sortProperties: ["count:desc", "id"],
|
||||
tagsForUser: null,
|
||||
sortedByCount: true,
|
||||
sortedByName: false,
|
||||
|
||||
@action
|
||||
sortByCount(event) {
|
||||
event?.preventDefault();
|
||||
actions: {
|
||||
sortByCount() {
|
||||
this.setProperties({
|
||||
sortProperties: ["count:desc", "id"],
|
||||
sortedByCount: true,
|
||||
|
@ -17,13 +14,12 @@ export default Controller.extend({
|
|||
});
|
||||
},
|
||||
|
||||
@action
|
||||
sortById(event) {
|
||||
event?.preventDefault();
|
||||
sortById() {
|
||||
this.setProperties({
|
||||
sortProperties: ["id"],
|
||||
sortedByCount: false,
|
||||
sortedByName: true,
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -81,10 +81,10 @@ export default Controller.extend(BulkTopicSelection, {
|
|||
},
|
||||
|
||||
@action
|
||||
showInserted(event) {
|
||||
event?.preventDefault();
|
||||
showInserted() {
|
||||
this.model.loadBefore(this.pmTopicTrackingState.newIncoming);
|
||||
this.pmTopicTrackingState.resetIncomingTracking();
|
||||
return false;
|
||||
},
|
||||
|
||||
@action
|
||||
|
|
|
@ -211,15 +211,6 @@ export default Controller.extend(CanCheckEmails, {
|
|||
}
|
||||
},
|
||||
|
||||
@action
|
||||
showSuspensions(event) {
|
||||
event?.preventDefault();
|
||||
this.adminTools.showActionLogs(this, {
|
||||
target_user: this.get("model.username"),
|
||||
action_name: "suspend_user",
|
||||
});
|
||||
},
|
||||
|
||||
actions: {
|
||||
collapseProfile() {
|
||||
this.set("forceExpand", false);
|
||||
|
@ -229,6 +220,13 @@ export default Controller.extend(CanCheckEmails, {
|
|||
this.set("forceExpand", true);
|
||||
},
|
||||
|
||||
showSuspensions() {
|
||||
this.adminTools.showActionLogs(this, {
|
||||
target_user: this.get("model.username"),
|
||||
action_name: "suspend_user",
|
||||
});
|
||||
},
|
||||
|
||||
adminDelete() {
|
||||
const userId = this.get("model.id");
|
||||
const location = document.location.pathname;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
{{#if this.mutedCategories}}
|
||||
<div class="muted-categories">
|
||||
<a href class="muted-categories-link" {{on "click" this.toggleShowMuted}}>
|
||||
<a href class="muted-categories-link" {{action "toggleShowMuted"}}>
|
||||
<h3 class="muted-categories-heading">{{i18n "categories.muted"}}</h3>
|
||||
{{#if this.mutedToggleIcon}}
|
||||
{{d-icon this.mutedToggleIcon}}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<span class="group-name">
|
||||
<span class="group-name-label">{{this.group_name}}</span>
|
||||
<a class="remove-permission" href {{on "click" this.removeRow}}>
|
||||
<a class="remove-permission" href {{action "removeRow"}}>
|
||||
{{d-icon "far-trash-alt"}}
|
||||
</a>
|
||||
</span>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
{{#each this.messages as |m|}}
|
||||
<div class="controls existing-message">
|
||||
<label class="radio">
|
||||
<input id="choose-message-{{m.id}}" {{on "click" (fn this.chooseMessage m)}} type="radio" name="choose_message_id">
|
||||
<input id="choose-message-{{m.id}}" {{action "chooseMessage" m}} type="radio" name="choose_message_id">
|
||||
<span class="message-title">
|
||||
{{m.title}}
|
||||
</span>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<a href {{on "click" this.select}} class={{if this.active "active"}}>{{this.title}}</a>
|
||||
<a href {{action "select"}} class={{if this.active "active"}}>{{this.title}}</a>
|
||||
|
|
|
@ -1,30 +1,30 @@
|
|||
{{!-- DO NOT EDIT THIS FILE!!! --}}
|
||||
{{!-- Update it by running `rake javascript:update_constants` --}}
|
||||
|
||||
<button type="button" data-section="smileys_&_emotion" {{on "click" (fn this.onCategorySelection "smileys_&_emotion")}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section="smileys_&_emotion" {{action this.onCategorySelection "smileys_&_emotion"}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji ":grinning:"}}
|
||||
</button>
|
||||
<button type="button" data-section="people_&_body" {{on "click" (fn this.onCategorySelection "people_&_body")}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section="people_&_body" {{action this.onCategorySelection "people_&_body"}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji ":wave:"}}
|
||||
</button>
|
||||
<button type="button" data-section="animals_&_nature" {{on "click" (fn this.onCategorySelection "animals_&_nature")}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section="animals_&_nature" {{action this.onCategorySelection "animals_&_nature"}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji ":evergreen_tree:"}}
|
||||
</button>
|
||||
<button type="button" data-section="food_&_drink" {{on "click" (fn this.onCategorySelection "food_&_drink")}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section="food_&_drink" {{action this.onCategorySelection "food_&_drink"}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji ":hamburger:"}}
|
||||
</button>
|
||||
<button type="button" data-section="travel_&_places" {{on "click" (fn this.onCategorySelection "travel_&_places")}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section="travel_&_places" {{action this.onCategorySelection "travel_&_places"}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji ":airplane:"}}
|
||||
</button>
|
||||
<button type="button" data-section="activities" {{on "click" (fn this.onCategorySelection "activities")}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section="activities" {{action this.onCategorySelection "activities"}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji ":soccer:"}}
|
||||
</button>
|
||||
<button type="button" data-section="objects" {{on "click" (fn this.onCategorySelection "objects")}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section="objects" {{action this.onCategorySelection "objects"}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji ":eyeglasses:"}}
|
||||
</button>
|
||||
<button type="button" data-section="symbols" {{on "click" (fn this.onCategorySelection "symbols")}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section="symbols" {{action this.onCategorySelection "symbols"}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji ":white_check_mark:"}}
|
||||
</button>
|
||||
<button type="button" data-section="flags" {{on "click" (fn this.onCategorySelection "flags")}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section="flags" {{action this.onCategorySelection "flags"}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji ":checkered_flag:"}}
|
||||
</button>
|
||||
|
|
|
@ -4,15 +4,15 @@
|
|||
{{!-- template-lint-enable no-invalid-interactive no-down-event-binding --}}
|
||||
<div class="emoji-picker-category-buttons">
|
||||
{{#if this.recentEmojis.length}}
|
||||
<button type="button" data-section="recent" {{on "click" (fn this.onCategorySelection "recent")}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section="recent" {{action "onCategorySelection" "recent"}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji ":star:"}}
|
||||
</button>
|
||||
{{/if}}
|
||||
|
||||
<EmojiGroupButtons @onCategorySelection={{this.onCategorySelection}} @tagName="" />
|
||||
<EmojiGroupButtons @onCategorySelection={{action "onCategorySelection"}} @tagName="" />
|
||||
|
||||
{{#each-in this.customEmojis as |group emojis|}}
|
||||
<button type="button" data-section={{concat "custom-" group}} {{on "click" (fn this.onCategorySelection (concat "custom-" group))}} class="btn btn-default category-button emoji">
|
||||
<button type="button" data-section={{concat "custom-" group}} {{action "onCategorySelection" (concat "custom-" group)}} class="btn btn-default category-button emoji">
|
||||
{{replace-emoji (concat ":" emojis.firstObject.code ":")}}
|
||||
</button>
|
||||
{{/each-in}}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<h3>{{this.formattedName}}</h3>
|
||||
<div class="controls">
|
||||
<label class="radio">
|
||||
<input id="radio_{{this.flag.name_key}}" {{on "click" (action "changePostActionType" this.flag)}} type="radio" name="post_action_type_index">
|
||||
<input id="radio_{{this.flag.name_key}}" {{action "changePostActionType" this.flag}} type="radio" name="post_action_type_index">
|
||||
|
||||
<div class="flag-action-type-details">
|
||||
<span class="description">{{html-safe this.flag.description}}</span>
|
||||
|
@ -19,7 +19,7 @@
|
|||
{{else}}
|
||||
<div class="controls {{this.flag.name_key}}">
|
||||
<label class="radio">
|
||||
<input id="radio_{{this.flag.name_key}}" {{on "click" (action "changePostActionType" this.flag)}} type="radio" name="post_action_type_index">
|
||||
<input id="radio_{{this.flag.name_key}}" {{action "changePostActionType" this.flag}} type="radio" name="post_action_type_index">
|
||||
<div class="flag-action-type-details">
|
||||
<strong>{{this.formattedName}}</strong>
|
||||
{{#if this.showDescription}}
|
||||
|
|
|
@ -13,14 +13,14 @@
|
|||
{{else}}
|
||||
<div class="card-row first-row">
|
||||
<div class="group-card-avatar">
|
||||
<a href={{this.groupPath}} {{on "click" (fn this.handleShowGroup this.group)}} class="card-huge-avatar">
|
||||
<a href={{this.groupPath}} {{action "showGroup" this.group}} class="card-huge-avatar">
|
||||
<AvatarFlair @flairName={{this.group.name}} @flairUrl={{this.group.flair_url}} @flairBgColor={{this.group.flair_bg_color}} @flairColor={{this.group.flair_color}} />
|
||||
</a>
|
||||
</div>
|
||||
<div class="names">
|
||||
<span>
|
||||
<h1 class={{this.group.name}}>
|
||||
<a href={{this.groupPath}} {{on "click" (fn this.handleShowGroup this.group)}} class="group-page-link">{{this.group.name}}</a>
|
||||
<a href={{this.groupPath}} {{action "showGroup" this.group}} class="group-page-link">{{this.group.name}}</a>
|
||||
</h1>
|
||||
{{#if this.group.full_name}}
|
||||
<h2 class="full-name">{{this.group.full_name}}</h2>
|
||||
|
@ -53,10 +53,10 @@
|
|||
<div class="card-row third-row">
|
||||
<div class="members metadata">
|
||||
{{#each this.group.members as |user|}}
|
||||
<a {{on "click" this.close}} href={{user.path}} class="card-tiny-avatar">{{bound-avatar user "tiny"}}</a>
|
||||
<a {{action "close"}} href={{user.path}} class="card-tiny-avatar">{{bound-avatar user "tiny"}}</a>
|
||||
{{/each}}
|
||||
{{#if this.showMoreMembers}}
|
||||
<a href={{this.groupPath}} {{on "click" (fn this.handleShowGroup this.group)}} class="more-members-link">
|
||||
<a href={{this.groupPath}} {{action "showGroup" this.group}} class="more-members-link">
|
||||
<span class="more-members-count">+{{this.moreMembersCount}} {{i18n "more"}}</span>
|
||||
</a>
|
||||
{{/if}}
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
<div class="control-group">
|
||||
<div class="group-imap-prefill-options">
|
||||
{{i18n "groups.manage.email.prefill.title"}} <a id="prefill_imap_gmail" href {{on "click" (fn this.prefillSettings "gmail")}}>{{i18n "groups.manage.email.prefill.gmail"}}</a>
|
||||
{{i18n "groups.manage.email.prefill.title"}} <a id="prefill_imap_gmail" href {{action "prefillSettings" "gmail"}}>{{i18n "groups.manage.email.prefill.gmail"}}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<p>{{i18n "groups.manage.email.smtp_instructions"}}</p>
|
||||
|
||||
<label for="enable_smtp">
|
||||
<Input @type="checkbox" @checked={{this.group.smtp_enabled}} id="enable_smtp" tabindex="1" {{on "change" this.smtpEnabledChange}} />
|
||||
<Input @type="checkbox" @checked={{this.group.smtp_enabled}} id="enable_smtp" tabindex="1" {{on "change" (action "smtpEnabledChange")}} />
|
||||
{{i18n "groups.manage.email.enable_smtp"}}
|
||||
</label>
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
|||
<div class="alert alert-warning">{{i18n "groups.manage.email.imap_alpha_warning"}}</div>
|
||||
|
||||
<label for="enable_imap">
|
||||
<Input @type="checkbox" disabled={{not this.enableImapSettings}} @checked={{this.group.imap_enabled}} id="enable_imap" tabindex="8" {{on "change" this.imapEnabledChange}} />
|
||||
<Input @type="checkbox" disabled={{not this.enableImapSettings}} @checked={{this.group.imap_enabled}} id="enable_imap" tabindex="8" {{on "change" (action "imapEnabledChange")}} />
|
||||
{{i18n "groups.manage.email.enable_imap"}}
|
||||
</label>
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
</a>
|
||||
<span>{{this.member.username}}</span>
|
||||
{{#unless this.automatic}}
|
||||
<a href {{on "click" this.remove}} class="remove">
|
||||
<a href {{action "remove"}} class="remove">
|
||||
{{d-icon "times"}}
|
||||
</a>
|
||||
{{/unless}}
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
|
||||
<div class="control-group">
|
||||
<div class="group-smtp-prefill-options">
|
||||
{{i18n "groups.manage.email.prefill.title"}} <a id="prefill_smtp_gmail" href {{on "click" (fn this.prefillSettings "gmail")}}>{{i18n "groups.manage.email.prefill.gmail"}}</a>
|
||||
{{i18n "groups.manage.email.prefill.title"}} <a id="prefill_smtp_gmail" href {{action "prefillSettings" "gmail"}}>{{i18n "groups.manage.email.prefill.gmail"}}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{{#each this.buttons as |b|}}
|
||||
<button type="button" class="btn btn-social {{b.name}}" {{on "click" (action this.externalLogin b)}} aria-label={{b.screenReaderTitle}} tabindex="3">
|
||||
<button type="button" class="btn btn-social {{b.name}}" {{action this.externalLogin b}} aria-label={{b.screenReaderTitle}} tabindex="3">
|
||||
{{#if b.isGoogle}}
|
||||
<svg class="fa d-icon d-icon-custom-google-oauth2 svg-icon" viewBox="0 0 48 48"><defs><path id="a" d="M44.5 20H24v8.5h11.8C34.7 33.9 30.1 37 24 37c-7.2 0-13-5.8-13-13s5.8-13 13-13c3.1 0 5.9 1.1 8.1 2.9l6.4-6.4C34.6 4.1 29.6 2 24 2 11.8 2 2 11.8 2 24s9.8 22 22 22c11 0 21-8 21-22 0-1.3-.2-2.7-.5-4z"/></defs><clipPath id="b"><use href="#a" overflow="visible"/></clipPath><path clip-path="url(#b)" fill="#FBBC05" d="M0 37V11l17 13z"/><path clip-path="url(#b)" fill="#EA4335" d="M0 11l17 13 7-6.1L48 14V0H0z"/><path clip-path="url(#b)" fill="#34A853" d="M0 37l30-23 7.9 1L48 0v48H0z"/><path clip-path="url(#b)" fill="#4285F4" d="M48 48L17 24l-4-3 35-10z"/></svg>
|
||||
{{else if b.icon}}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<span class="status">
|
||||
{{reviewable-status this.reviewable.status}}
|
||||
</span>
|
||||
<a href {{on "click" (fn this.explainReviewable this.reviewable)}} title={{i18n "review.explain.why"}} class="explain">
|
||||
<a href {{action "explainReviewable" this.reviewable}} title={{i18n "review.explain.why"}} class="explain">
|
||||
{{d-icon "question-circle"}}
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{{#if this.hasEdits}}
|
||||
<a href {{on "click" this.showEditHistory}} class="has-edits {{this.historyClass}}" title={{i18n "post.last_edited_on" dateTime=this.editedDate}}>
|
||||
<a href {{action "showEditHistory"}} class="has-edits {{this.historyClass}}" title={{i18n "post.last_edited_on" dateTime=this.editedDate}}>
|
||||
{{d-icon "pencil-alt"}}
|
||||
</a>
|
||||
{{/if}}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{{category-badge this.reviewable.category}}
|
||||
<ReviewableTags @tags={{this.reviewable.payload.tags}} @tagName="" />
|
||||
{{#if this.reviewable.payload.via_email}}
|
||||
<a href {{on "click" this.showRawEmail}} class="show-raw-email">
|
||||
<a href {{action "showRawEmail"}} class="show-raw-email">
|
||||
{{d-icon "far-envelope" title="post.via_email"}}
|
||||
</a>
|
||||
{{/if}}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<TrackSelected @selectedList={{this.selected}} @selectedId={{this.post.topic}} @class="bulk-select" />
|
||||
{{/if}}
|
||||
|
||||
<a href={{this.post.url}} {{on "click" (fn this.logClick this.post.topic_id)}} class="search-link{{if this.post.topic.visited " visited"}}" role="heading" aria-level="2">
|
||||
<a href={{this.post.url}} {{action "logClick" this.post.topic_id}} class="search-link{{if this.post.topic.visited " visited"}}" role="heading" aria-level="2">
|
||||
{{raw "topic-status" topic=this.post.topic showPrivateMessageIcon=true}}
|
||||
<span class="topic-title">
|
||||
{{#if this.post.useTopicTitleHeadline}}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{yield}}
|
||||
{{#if this.showToggleMethodLink}}
|
||||
<p>
|
||||
<a href class="toggle-second-factor-method" {{on "click" this.toggleSecondFactorMethod}}>{{ i18n this.linkText }}</a>
|
||||
<a href="" class="toggle-second-factor-method" {{action "toggleSecondFactorMethod"}}>{{ i18n this.linkText }}</a>
|
||||
</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<DButton @action={{this.action}} @icon="key" @id="security-key-authenticate-button" @label="login.security_key_authenticate" @type="button" @class="btn btn-large btn-primary" />
|
||||
<p>
|
||||
{{#if this.otherMethodAllowed}}
|
||||
<a href class="toggle-second-factor-method" {{on "click" this.useAnotherMethod}}>{{ i18n "login.security_key_alternative" }}</a>
|
||||
<a href="" class="toggle-second-factor-method" {{action "useAnotherMethod"}}>{{ i18n "login.security_key_alternative" }}</a>
|
||||
{{/if}}
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
{{#if this.canSelectAll}}
|
||||
<p>
|
||||
<a class="select-all" href {{on "click" this.selectAll}}>
|
||||
<a class="select-all" href {{action this.selectAll}}>
|
||||
{{i18n "topic.multi_select.select_all"}}
|
||||
</a>
|
||||
</p>
|
||||
|
@ -12,7 +12,7 @@
|
|||
|
||||
{{#if this.canDeselectAll}}
|
||||
<p>
|
||||
<a href {{on "click" this.deselectAll}}>
|
||||
<a href {{action this.deselectAll}}>
|
||||
{{i18n "topic.multi_select.deselect_all"}}
|
||||
</a>
|
||||
</p>
|
||||
|
@ -35,7 +35,7 @@
|
|||
{{/if}}
|
||||
|
||||
<p class="cancel">
|
||||
<a href {{on "click" this.toggleMultiSelect}}>
|
||||
<a href {{action this.toggleMultiSelect}}>
|
||||
{{i18n "topic.multi_select.cancel"}}
|
||||
</a>
|
||||
</p>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<div class="buttons">
|
||||
<DButton @action={{route-action "showCreateAccount"}} @label="signup_cta.sign_up" @icon="user" @class="btn-primary" />
|
||||
<DButton @action={{action "hideForSession"}} @label="signup_cta.hide_session" @class="no-icon" />
|
||||
<a href {{on "click" this.neverShow}}>{{i18n "signup_cta.hide_forever"}}</a>
|
||||
<a href {{action "neverShow"}}>{{i18n "signup_cta.hide_forever"}}</a>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<div class="tag-name-wrapper">
|
||||
{{discourse-tag this.tagInfo.name tagName="div"}}
|
||||
{{#if this.canAdminTag}}
|
||||
<a href {{on "click" this.edit}} class="edit-tag" title={{i18n "tagging.edit_tag"}}>{{d-icon "pencil-alt"}}</a>
|
||||
<a href {{action "edit"}} class="edit-tag" title={{i18n "tagging.edit_tag"}}>{{d-icon "pencil-alt"}}</a>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="tag-description-wrapper">
|
||||
|
@ -56,10 +56,10 @@
|
|||
<div class="tag-box">
|
||||
{{discourse-tag tag.id pmOnly=tag.pmOnly tagName="div"}}
|
||||
{{#if this.editSynonymsMode}}
|
||||
<a href {{on "click" (fn this.unlinkSynonym tag)}} class="unlink-synonym">
|
||||
<a href {{action "unlinkSynonym" tag}} class="unlink-synonym">
|
||||
{{d-icon "unlink" title="tagging.remove_synonym"}}
|
||||
</a>
|
||||
<a href {{on "click" (fn this.deleteSynonym tag)}} class="delete-synonym">
|
||||
<a href {{action "deleteSynonym" tag}} class="delete-synonym">
|
||||
{{d-icon "far-trash-alt" title="tagging.delete_tag"}}
|
||||
</a>
|
||||
{{/if}}
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
{{#if this.user.profile_hidden}}
|
||||
<span class="card-huge-avatar">{{bound-avatar this.user "huge"}}</span>
|
||||
{{else}}
|
||||
<a href={{this.user.path}} {{on "click" (fn this.handleShowUser this.user)}} class="card-huge-avatar">{{bound-avatar this.user "huge"}}</a>
|
||||
<a href={{this.user.path}} {{action "showUser" this.user}} class="card-huge-avatar">{{bound-avatar this.user "huge"}}</a>
|
||||
{{/if}}
|
||||
|
||||
<UserAvatarFlair @user={{this.user}} />
|
||||
|
@ -40,7 +40,7 @@
|
|||
{{if this.nameFirst this.user.name (format-username this.user.username)}}
|
||||
</span>
|
||||
{{else}}
|
||||
<a href={{this.user.path}} {{on "click" (fn this.handleShowUser this.user)}} class="user-profile-link">
|
||||
<a href={{this.user.path}} {{action "showUser" this.user}} class="user-profile-link">
|
||||
<span id="discourse-user-card-title" class="name-username-wrapper">
|
||||
{{if this.nameFirst this.user.name (format-username this.user.username)}}
|
||||
</span>
|
||||
|
@ -48,7 +48,7 @@
|
|||
</a>
|
||||
{{/if}}
|
||||
</h1>
|
||||
<PluginOutlet @name="user-card-after-username" @connectorTagName="div" @args={{hash user=this.user showUser=(fn this.handleShowUser this.user)}} />
|
||||
<PluginOutlet @name="user-card-after-username" @connectorTagName="div" @args={{hash user=this.user showUser=(action "showUser" this.user)}} />
|
||||
{{#if this.nameFirst}}
|
||||
<h2 class="username">{{this.user.username}}</h2>
|
||||
{{else}}
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
<ComposerSaveButton @action={{action "save"}} @icon={{this.saveIcon}} @label={{this.saveLabel}} @forwardEvent={{true}} @disableSubmit={{this.disableSubmit}} />
|
||||
|
||||
{{#if this.site.mobileView}}
|
||||
<a href {{on "click" this.cancel}} title={{i18n "cancel"}} class="cancel">
|
||||
<a href {{action "cancel"}} title={{i18n "cancel"}} class="cancel">
|
||||
{{#if this.canEdit}}
|
||||
{{d-icon "times"}}
|
||||
{{else}}
|
||||
|
@ -109,7 +109,7 @@
|
|||
{{/if}}
|
||||
</a>
|
||||
{{else}}
|
||||
<a href {{on "click" this.cancel}} class="cancel" >{{i18n "close"}}</a>
|
||||
<a href {{action "cancel"}} class="cancel" >{{i18n "close"}}</a>
|
||||
{{/if}}
|
||||
|
||||
{{#if this.site.mobileView}}
|
||||
|
@ -133,7 +133,7 @@
|
|||
{{/if}}
|
||||
|
||||
{{#if this.isCancellable}}
|
||||
<a href id="cancel-file-upload" {{on "click" this.cancelUpload}}>{{d-icon "times"}}</a>
|
||||
<a href id="cancel-file-upload" {{action "cancelUpload"}}>{{d-icon "times"}}</a>
|
||||
{{/if}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
@ -165,7 +165,7 @@
|
|||
</a>
|
||||
{{/if}}
|
||||
|
||||
<a href class="btn btn-default no-text mobile-preview" title={{i18n "composer.show_preview"}} {{on "click" this.togglePreview}} aria-label={{i18n "preview"}}>
|
||||
<a href class="btn btn-default no-text mobile-preview" title={{i18n "composer.show_preview"}} {{action "togglePreview"}} aria-label={{i18n "preview"}}>
|
||||
{{d-icon "desktop"}}
|
||||
</a>
|
||||
|
||||
|
@ -180,7 +180,7 @@
|
|||
{{else}}
|
||||
<div class="saving-text">
|
||||
{{#if this.model.createdPost}}
|
||||
{{i18n "composer.saved"}} <a href={{this.createdPost.url}} {{on "click" this.viewNewReply}} class="permalink">{{i18n "composer.view_new_post"}}</a>
|
||||
{{i18n "composer.saved"}} <a href={{this.createdPost.url}} {{action "viewNewReply"}} class="permalink">{{i18n "composer.view_new_post"}}</a>
|
||||
{{else}}
|
||||
{{i18n "composer.saving"}} {{loading-spinner size="small"}}
|
||||
{{/if}}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<a href {{on "click" (fn this.closeMessage this.message)}} class="close" aria-label={{i18n "composer.esc_label"}}>
|
||||
<a href {{action this.closeMessage this.message}} class="close" aria-label={{i18n "composer.esc_label"}}>
|
||||
{{i18n "composer.esc"}} {{d-icon "times"}}
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<a href {{on "click" (fn this.closeMessage this.message)}} class="close" aria-label={{i18n "composer.esc_label"}}>
|
||||
<a href {{action this.closeMessage this.message}} class="close" aria-label={{i18n "composer.esc_label"}}>
|
||||
{{i18n "composer.esc"}} {{d-icon "times"}}
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<a href {{on "click" (fn this.closeMessage this.message)}} class="close" aria-label={{i18n "composer.esc_label"}}>
|
||||
<a href {{action this.closeMessage this.message}} class="close" aria-label={{i18n "composer.esc_label"}}>
|
||||
{{i18n "composer.esc"}} {{d-icon "times"}}
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<a href {{on "click" (fn this.closeMessage this.message)}} class="close" aria-label={{i18n "composer.esc_label"}}>
|
||||
<a href {{action this.closeMessage this.message}} class="close" aria-label={{i18n "composer.esc_label"}}>
|
||||
{{i18n "composer.esc"}} {{d-icon "times"}}
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<a href {{on "click" (fn this.closeMessage this.message)}} class="close" aria-label={{i18n "composer.esc_label"}}>
|
||||
<a href {{action this.closeMessage this.message}} class="close" aria-label={{i18n "composer.esc_label"}}>
|
||||
{{i18n "composer.esc"}} {{d-icon "times"}}
|
||||
</a>
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<DiscoveryCategories @refresh={{action "refresh"}}>
|
||||
{{#if (and this.topicTrackingState.hasIncoming this.isCategoriesRoute)}}
|
||||
<div class="show-more {{if this.hasTopics "has-topics"}}">
|
||||
<div role="button" class="alert alert-info clickable" {{on "click" this.showInserted}}>
|
||||
<div role="button" class="alert alert-info clickable" {{action "showInserted"}}>
|
||||
<CountI18n @key="topic_count_" @suffix={{this.topicTrackingState.filter}} @count={{this.topicTrackingState.incomingCount}} />
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
{{else}}
|
||||
{{#if this.topicTrackingState.hasIncoming}}
|
||||
<div class="show-more {{if this.hasTopics "has-topics"}}">
|
||||
<a tabindex="0" href {{on "click" this.showInserted}} class="alert alert-info clickable">
|
||||
<a tabindex="0" href {{action "showInserted"}} class="alert alert-info clickable">
|
||||
<CountI18n @key="topic_count_" @suffix={{this.topicTrackingState.filter}} @count={{this.topicTrackingState.incomingCount}} />
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
<div class="no-results-suggestion">
|
||||
{{i18n "search.cant_find"}}
|
||||
{{#if this.canCreateTopic}}
|
||||
<a href {{on "click" (fn this.createTopic this.searchTerm)}}>{{i18n "search.start_new_topic"}}</a>
|
||||
<a href {{action "createTopic" this.searchTerm}}>{{i18n "search.start_new_topic"}}</a>
|
||||
{{#unless this.siteSettings.login_required}}
|
||||
{{i18n "search.or_search_google"}}
|
||||
{{/unless}}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
{{#if this.mutedCategories}}
|
||||
<div class="muted-categories">
|
||||
<a href class="muted-categories-link" {{on "click" this.toggleShowMuted}}>
|
||||
<a href class="muted-categories-link" {{action "toggleShowMuted"}}>
|
||||
<h3 class="muted-categories-heading">{{i18n "categories.muted"}}</h3>
|
||||
{{#if this.mutedToggleIcon}}
|
||||
{{d-icon this.mutedToggleIcon}}
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue