2019-10-23 13:06:54 -04:00
|
|
|
import Controller from "@ember/controller";
|
2015-11-20 20:27:06 -05:00
|
|
|
import I18n from "I18n";
|
2020-03-11 10:28:16 -04:00
|
|
|
import { INPUT_DELAY } from "discourse-common/config/environment";
|
2015-11-20 20:27:06 -05:00
|
|
|
import Permalink from "admin/models/permalink";
|
2020-08-26 12:57:13 -04:00
|
|
|
import bootbox from "bootbox";
|
2020-12-18 08:18:52 -05:00
|
|
|
import discourseDebounce from "discourse-common/lib/debounce";
|
2020-01-16 12:56:53 -05:00
|
|
|
import { observes } from "discourse-common/utils/decorators";
|
2015-08-10 17:11:27 -04:00
|
|
|
|
2019-10-23 13:06:54 -04:00
|
|
|
export default Controller.extend({
|
2015-07-15 08:54:28 -04:00
|
|
|
loading: false,
|
|
|
|
filter: null,
|
|
|
|
|
2020-12-18 08:18:52 -05:00
|
|
|
_debouncedShow() {
|
2019-05-27 04:15:39 -04:00
|
|
|
Permalink.findAll(this.filter).then((result) => {
|
2016-10-20 13:26:41 -04:00
|
|
|
this.set("model", result);
|
|
|
|
this.set("loading", false);
|
2015-07-15 08:54:28 -04:00
|
|
|
});
|
2020-12-18 08:18:52 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
@observes("filter")
|
|
|
|
show() {
|
|
|
|
discourseDebounce(this, this._debouncedShow, INPUT_DELAY);
|
|
|
|
},
|
2015-07-15 08:54:28 -04:00
|
|
|
|
|
|
|
actions: {
|
|
|
|
recordAdded(arg) {
|
2019-05-27 04:15:39 -04:00
|
|
|
this.model.unshiftObject(arg);
|
2015-07-15 08:54:28 -04:00
|
|
|
},
|
|
|
|
|
2020-06-21 23:14:16 -04: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();
|
|
|
|
},
|
|
|
|
|
2021-11-13 08:01:55 -05:00
|
|
|
destroy(record) {
|
2016-10-20 13:26:41 -04:00
|
|
|
return bootbox.confirm(
|
|
|
|
I18n.t("admin.permalink.delete_confirm"),
|
|
|
|
I18n.t("no_value"),
|
|
|
|
I18n.t("yes_value"),
|
|
|
|
(result) => {
|
2015-07-15 08:54:28 -04:00
|
|
|
if (result) {
|
2016-10-20 13:26:41 -04:00
|
|
|
record.destroy().then(
|
|
|
|
(deleted) => {
|
2015-07-15 08:54:28 -04:00
|
|
|
if (deleted) {
|
2019-05-27 04:15:39 -04:00
|
|
|
this.model.removeObject(record);
|
2015-07-15 08:54:28 -04:00
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("generic_error"));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
function () {
|
|
|
|
bootbox.alert(I18n.t("generic_error"));
|
|
|
|
}
|
|
|
|
);
|
2018-06-15 11:03:24 -04:00
|
|
|
}
|
2015-07-15 08:54:28 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|