2017-09-11 10:41:17 +03:00
|
|
|
import ModalComponent from 'ghost-admin/components/modal-base';
|
2017-08-22 10:53:26 +03:00
|
|
|
import {alias} from '@ember/object/computed';
|
2016-05-08 16:15:04 +03:00
|
|
|
import {invokeAction} from 'ember-invoke-action';
|
2017-01-19 14:40:31 +03:00
|
|
|
import {task} from 'ember-concurrency';
|
2016-05-08 16:15:04 +03:00
|
|
|
|
|
|
|
export default ModalComponent.extend({
|
|
|
|
|
|
|
|
subscriber: alias('model'),
|
|
|
|
|
2017-01-19 14:40:31 +03:00
|
|
|
deleteSubscriber: task(function* () {
|
|
|
|
yield invokeAction(this, 'confirm');
|
|
|
|
}).drop(),
|
|
|
|
|
2016-05-08 16:15:04 +03:00
|
|
|
actions: {
|
|
|
|
confirm() {
|
2017-01-19 14:40:31 +03:00
|
|
|
this.get('deleteSubscriber').perform();
|
2016-05-08 16:15:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|