discourse/app/assets/javascripts/admin/controllers/admin-web-hooks-show-events...

66 lines
1.7 KiB
Plaintext
Raw Normal View History

2016-06-15 13:49:57 -04:00
import { ajax } from 'discourse/lib/ajax';
import { popupAjaxError } from 'discourse/lib/ajax-error';
2016-09-13 19:54:53 -04:00
import computed from 'ember-addons/ember-computed-decorators';
2016-06-15 13:49:57 -04:00
export default Ember.Controller.extend({
2016-09-13 19:54:53 -04:00
pingDisabled: false,
incomingEventIds: [],
incomingCount: Ember.computed.alias("incomingEventIds.length"),
@computed('incomingCount')
hasIncoming(incomingCount) {
return incomingCount > 0;
},
subscribe() {
this.messageBus.subscribe(`/web_hook_events/${this.get('model.extras.web_hook_id')}`, data => {
if (data.event_type === 'ping') {
this.set('pingDisabled', false);
}
this._addIncoming(data.web_hook_event_id);
});
},
unsubscribe() {
this.messageBus.unsubscribe('/web_hook_events/*');
},
_addIncoming(eventId) {
const incomingEventIds = this.get("incomingEventIds");
if (incomingEventIds.indexOf(eventId) === -1) {
incomingEventIds.pushObject(eventId);
}
},
2016-06-15 13:49:57 -04:00
actions: {
loadMore() {
this.get('model').loadMore();
},
ping() {
2016-09-13 19:54:53 -04:00
this.set('pingDisabled', true);
ajax(`/admin/api/web_hooks/${this.get('model.extras.web_hook_id')}/ping`, {
2016-09-13 19:54:53 -04:00
type: 'POST'
}).catch(error => {
this.set('pingDisabled', false);
popupAjaxError(error);
});
},
showInserted() {
const webHookId = this.get('model.extras.web_hook_id');
ajax(`/admin/api/web_hooks/${webHookId}/events/bulk`, {
2016-09-13 19:54:53 -04:00
type: 'GET',
data: { ids: this.get('incomingEventIds') }
}).then(data => {
const objects = data.map(event => this.store.createRecord('web-hook-event', event));
this.get("model").unshiftObjects(objects);
this.set("incomingEventIds", []);
});
2016-06-15 13:49:57 -04:00
}
}
});