26 lines
723 B
JavaScript
26 lines
723 B
JavaScript
import Controller from '@ember/controller';
|
|
import { get } from '@ember/object';
|
|
import { inject as service } from '@ember/service';
|
|
import WithEventSource, { listen } from 'consul-ui/mixins/with-event-source';
|
|
|
|
export default Controller.extend(WithEventSource, {
|
|
notify: service('flashMessages'),
|
|
item: listen('item').catch(function(e) {
|
|
if (e.target.readyState === 1) {
|
|
// OPEN
|
|
if (get(e, 'error.errors.firstObject.status') === '404') {
|
|
this.notify.add({
|
|
destroyOnClick: false,
|
|
sticky: true,
|
|
type: 'warning',
|
|
action: 'update',
|
|
});
|
|
const proxy = this.proxy;
|
|
if (proxy) {
|
|
proxy.close();
|
|
}
|
|
}
|
|
}
|
|
}),
|
|
});
|