mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
bf91532260
- Remove ArrayController - Remove {{view}} from templates - Replace many cases of needs: [‘controller’] with inject - Enable Ember Legacy Views
37 lines
973 B
JavaScript
37 lines
973 B
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"));
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|