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';
|
2017-01-19 14:40:31 +03:00
|
|
|
import {task} from 'ember-concurrency';
|
2016-08-17 18:01:46 +03:00
|
|
|
|
|
|
|
export default ModalComponent.extend({
|
2018-03-20 17:57:59 +03:00
|
|
|
// Allowed actions
|
|
|
|
confirm: () => {},
|
2016-08-17 18:01:46 +03:00
|
|
|
|
|
|
|
theme: alias('model.theme'),
|
|
|
|
download: alias('model.download'),
|
|
|
|
|
2018-01-11 20:43:23 +03:00
|
|
|
actions: {
|
|
|
|
confirm() {
|
2019-03-06 16:53:54 +03:00
|
|
|
this.deleteTheme.perform();
|
2018-01-11 20:43:23 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-01-19 14:40:31 +03:00
|
|
|
deleteTheme: task(function* () {
|
|
|
|
try {
|
2018-03-20 17:57:59 +03:00
|
|
|
yield this.confirm();
|
2017-01-19 14:40:31 +03:00
|
|
|
} finally {
|
|
|
|
this.send('closeModal');
|
|
|
|
}
|
2018-01-11 20:43:23 +03:00
|
|
|
}).drop()
|
2016-08-17 18:01:46 +03:00
|
|
|
});
|