2020-05-13 16:23:41 -04:00
|
|
|
import I18n from "I18n";
|
2019-10-23 13:06:54 -04:00
|
|
|
import Controller from "@ember/controller";
|
2019-11-11 13:34:01 -05:00
|
|
|
import discourseDebounce from "discourse/lib/debounce";
|
2015-11-20 20:27:06 -05:00
|
|
|
import Permalink from "admin/models/permalink";
|
2020-01-16 12:56:53 -05:00
|
|
|
import { observes } from "discourse-common/utils/decorators";
|
2020-03-11 10:28:16 -04:00
|
|
|
import { INPUT_DELAY } from "discourse-common/config/environment";
|
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-01-16 12:56:53 -05:00
|
|
|
@observes("filter")
|
2019-11-11 13:34:01 -05:00
|
|
|
show: discourseDebounce(function() {
|
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-03-11 10:28:16 -04:00
|
|
|
}, 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
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function(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
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|