discourse/app/assets/javascripts/admin/addon/controllers/admin-permalinks.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.7 KiB
JavaScript
Raw Normal View History

import Controller from "@ember/controller";
import I18n from "I18n";
import { INPUT_DELAY } from "discourse-common/config/environment";
import Permalink from "admin/models/permalink";
import bootbox from "bootbox";
import discourseDebounce from "discourse-common/lib/debounce";
import { observes } from "discourse-common/utils/decorators";
2015-08-11 05:11:27 +08:00
export default Controller.extend({
2015-07-15 20:54:28 +08:00
loading: false,
filter: null,
_debouncedShow() {
Permalink.findAll(this.filter).then((result) => {
this.set("model", result);
this.set("loading", false);
2015-07-15 20:54:28 +08:00
});
},
@observes("filter")
show() {
discourseDebounce(this, this._debouncedShow, INPUT_DELAY);
},
2015-07-15 20:54:28 +08:00
actions: {
recordAdded(arg) {
this.model.unshiftObject(arg);
2015-07-15 20:54:28 +08:00
},
copyUrl(pl) {
let linkElement = document.querySelector(`#admin-permalink-${pl.id}`);
let textArea = document.createElement("textarea");
textArea.value = linkElement.textContent;
document.body.appendChild(textArea);
textArea.select();
document.execCommand("Copy");
textArea.remove();
},
2015-07-15 20:54:28 +08:00
destroy: function (record) {
return bootbox.confirm(
I18n.t("admin.permalink.delete_confirm"),
I18n.t("no_value"),
I18n.t("yes_value"),
(result) => {
2015-07-15 20:54:28 +08:00
if (result) {
record.destroy().then(
(deleted) => {
2015-07-15 20:54:28 +08:00
if (deleted) {
this.model.removeObject(record);
2015-07-15 20:54:28 +08:00
} else {
bootbox.alert(I18n.t("generic_error"));
}
},
function () {
bootbox.alert(I18n.t("generic_error"));
}
);
2018-06-15 23:03:24 +08:00
}
2015-07-15 20:54:28 +08:00
}
);
},
},
});