mirror of
https://github.com/discourse/discourse.git
synced 2025-05-30 07:11:34 +08:00

`discourse-common` was created in the past to share logic between the 'wizard' app and the main 'discourse' app. Since then, the wizard has been consolidated into the main app, so the separation of `discourse-common` is no longer useful. This commit moves `discourse-common/(lib|utils)/*` into `discourse/lib/*`, adds shims for the imports, and updates existing uses in core.
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
import Controller from "@ember/controller";
|
|
import { action } from "@ember/object";
|
|
import { or } from "@ember/object/computed";
|
|
import { service } from "@ember/service";
|
|
import { observes } from "@ember-decorators/object";
|
|
import discourseDebounce from "discourse/lib/debounce";
|
|
import { clipboardCopy } from "discourse/lib/utilities";
|
|
import { INPUT_DELAY } from "discourse-common/config/environment";
|
|
import { i18n } from "discourse-i18n";
|
|
import Permalink from "admin/models/permalink";
|
|
|
|
export default class AdminPermalinksIndexController extends Controller {
|
|
@service dialog;
|
|
@service toasts;
|
|
|
|
loading = false;
|
|
filter = null;
|
|
|
|
@or("model.length", "filter") showSearch;
|
|
|
|
_debouncedShow() {
|
|
Permalink.findAll(this.filter).then((result) => {
|
|
this.set("model", result);
|
|
this.set("loading", false);
|
|
});
|
|
}
|
|
|
|
@observes("filter")
|
|
show() {
|
|
discourseDebounce(this, this._debouncedShow, INPUT_DELAY);
|
|
}
|
|
|
|
@action
|
|
copyUrl(pl) {
|
|
let linkElement = document.querySelector(`#admin-permalink-${pl.id}`);
|
|
clipboardCopy(linkElement.textContent);
|
|
this.toasts.success({
|
|
duration: 3000,
|
|
data: {
|
|
message: i18n("admin.permalink.copy_success"),
|
|
},
|
|
});
|
|
}
|
|
|
|
@action
|
|
destroyRecord(permalink) {
|
|
this.dialog.yesNoConfirm({
|
|
message: i18n("admin.permalink.delete_confirm"),
|
|
didConfirm: async () => {
|
|
try {
|
|
await this.store.destroyRecord("permalink", permalink);
|
|
this.model.allLinks.removeObject(permalink);
|
|
} catch {
|
|
this.dialog.alert(i18n("generic_error"));
|
|
}
|
|
},
|
|
});
|
|
}
|
|
}
|