mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:08:44 +08:00
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
import debounce from "discourse/lib/debounce";
|
|
import Permalink from "admin/models/permalink";
|
|
|
|
export default Ember.Controller.extend({
|
|
loading: false,
|
|
filter: null,
|
|
|
|
show: debounce(function() {
|
|
Permalink.findAll(this.get("filter")).then(result => {
|
|
this.set("model", result);
|
|
this.set("loading", false);
|
|
});
|
|
}, 250).observes("filter"),
|
|
|
|
actions: {
|
|
recordAdded(arg) {
|
|
this.get("model").unshiftObject(arg);
|
|
},
|
|
|
|
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.get("model").removeObject(record);
|
|
} else {
|
|
bootbox.alert(I18n.t("generic_error"));
|
|
}
|
|
},
|
|
function() {
|
|
bootbox.alert(I18n.t("generic_error"));
|
|
}
|
|
);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
}
|
|
});
|