discourse/app/assets/javascripts/admin/controllers/admin-permalinks.js.es6

37 lines
973 B
Plaintext
Raw Normal View History

2015-08-10 17:11:27 -04:00
import debounce from 'discourse/lib/debounce';
import Permalink from 'admin/models/permalink';
2015-08-10 17:11:27 -04:00
export default Ember.Controller.extend({
2015-07-15 08:54:28 -04:00
loading: false,
filter: null,
2015-08-10 17:11:27 -04:00
show: debounce(function() {
Permalink.findAll(this.get("filter")).then(result => {
this.set('model', result);
this.set('loading', false);
2015-07-15 08:54:28 -04:00
});
}, 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 => {
2015-07-15 08:54:28 -04:00
if (result) {
record.destroy().then(deleted => {
2015-07-15 08:54:28 -04:00
if (deleted) {
this.get('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"));
});
}
});
}
}
});