Failed to ignore revisions in .git-blame-ignore-revs.

50 lines
1.3 KiB
JavaScript
Raw Normal View History

import I18n from "I18n";
import Controller from "@ember/controller";
import discourseDebounce from "discourse/lib/debounce";
2018-06-15 17:03:24 +02:00
import Permalink from "admin/models/permalink";
import { observes } from "discourse-common/utils/decorators";
import { INPUT_DELAY } from "discourse-common/config/environment";
2015-08-10 17:11:27 -04:00
export default Controller.extend({
2015-07-15 18:24:28 +05:30
loading: false,
filter: null,
@observes("filter")
show: discourseDebounce(function() {
Permalink.findAll(this.filter).then(result => {
2018-06-15 17:03:24 +02:00
this.set("model", result);
this.set("loading", false);
2015-07-15 18:24:28 +05:30
});
}, INPUT_DELAY),
2015-07-15 18:24:28 +05:30
actions: {
recordAdded(arg) {
this.model.unshiftObject(arg);
2015-07-15 18:24:28 +05:30
},
destroy: function(record) {
2018-06-15 17:03:24 +02:00
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);
2018-06-15 17:03:24 +02:00
} else {
bootbox.alert(I18n.t("generic_error"));
}
},
function() {
bootbox.alert(I18n.t("generic_error"));
}
);
}
2015-07-15 18:24:28 +05:30
}
2018-06-15 17:03:24 +02:00
);
2015-07-15 18:24:28 +05:30
}
}
});