Ghost/ghost/admin/app/components/modals/tiers/unarchive.js

32 lines
818 B
JavaScript
Raw Normal View History

import Component from '@glimmer/component';
import {inject as service} from '@ember/service';
import {task} from 'ember-concurrency';
export default class UnarchiveTierModalComponent extends Component {
@service notifications;
@service router;
get isActive() {
const {product} = this.args.data;
return !!product.active;
}
@task({drop: true})
*unarchiveTask() {
const {product, onUnarchive} = this.args.data;
product.active = true;
try {
yield product.save();
onUnarchive?.();
return product;
} catch (error) {
if (error) {
this.notifications.showAPIError(error, {key: 'tier.unarchive.failed'});
}
} finally {
this.args.close();
}
}
}