Ghost/ghost/admin/app/components/modals/tiers/unarchive.js
Hannah Wolfe affe6743e5 Renamed products to tiers (#2372)
refs: https://github.com/TryGhost/Team/issues/1145

- this should allow us to remove the /products endpoint in v5

It avoids:

- `kg-product-card`, that really is meant to say product
- `product-cadence` on offers

Co-authored-by: Rishabh <zrishabhgarg@gmail.com>
2022-05-11 22:41:54 +05:30

32 lines
791 B
JavaScript

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