mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
142e0ae062
* Revert "Revert "DEV: Wrap `Ember.run.debounce`. (#11352)" (#11465)"
This reverts commit aa0d4ea764
.
* Correctly debounce onScroll function
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
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";
|
|
|
|
export default Controller.extend({
|
|
loading: false,
|
|
filter: null,
|
|
|
|
_debouncedShow() {
|
|
Permalink.findAll(this.filter).then((result) => {
|
|
this.set("model", result);
|
|
this.set("loading", false);
|
|
});
|
|
},
|
|
|
|
@observes("filter")
|
|
show() {
|
|
discourseDebounce(this, this._debouncedShow, INPUT_DELAY);
|
|
},
|
|
|
|
actions: {
|
|
recordAdded(arg) {
|
|
this.model.unshiftObject(arg);
|
|
},
|
|
|
|
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();
|
|
},
|
|
|
|
destroy: function (record) {
|
|
return bootbox.confirm(
|
|
I18n.t("admin.permalink.delete_confirm"),
|
|
I18n.t("no_value"),
|
|
I18n.t("yes_value"),
|
|
(result) => {
|
|
if (result) {
|
|
record.destroy().then(
|
|
(deleted) => {
|
|
if (deleted) {
|
|
this.model.removeObject(record);
|
|
} else {
|
|
bootbox.alert(I18n.t("generic_error"));
|
|
}
|
|
},
|
|
function () {
|
|
bootbox.alert(I18n.t("generic_error"));
|
|
}
|
|
);
|
|
}
|
|
}
|
|
);
|
|
},
|
|
},
|
|
});
|