mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
c0b277d273
This change is discussed here: https://meta.discourse.org/t/deprecating-es6-compatibility-layer/35821 Prior to this change we were not booting correctly with DISCOURSE_NO_CONSTANTS
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
import debounce from 'discourse/lib/debounce';
|
|
import Permalink from 'admin/models/permalink';
|
|
|
|
export default Ember.ArrayController.extend({
|
|
loading: false,
|
|
filter: null,
|
|
|
|
show: debounce(function() {
|
|
var self = this;
|
|
self.set('loading', true);
|
|
Permalink.findAll(self.get("filter")).then(function(result) {
|
|
self.set('model', result);
|
|
self.set('loading', false);
|
|
});
|
|
}, 250).observes("filter"),
|
|
|
|
actions: {
|
|
recordAdded(arg) {
|
|
this.get("model").unshiftObject(arg);
|
|
},
|
|
|
|
destroy: function(record) {
|
|
const self = this;
|
|
return bootbox.confirm(I18n.t("admin.permalink.delete_confirm"), I18n.t("no_value"), I18n.t("yes_value"), function(result) {
|
|
if (result) {
|
|
record.destroy().then(function(deleted) {
|
|
if (deleted) {
|
|
self.removeObject(record);
|
|
} else {
|
|
bootbox.alert(I18n.t("generic_error"));
|
|
}
|
|
}, function(){
|
|
bootbox.alert(I18n.t("generic_error"));
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|