mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
affe6743e5
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>
33 lines
820 B
JavaScript
33 lines
820 B
JavaScript
import Component from '@glimmer/component';
|
|
import {inject as service} from '@ember/service';
|
|
import {task} from 'ember-concurrency';
|
|
|
|
export default class ArchiveTierModal extends Component {
|
|
@service notifications;
|
|
@service router;
|
|
|
|
get isActive() {
|
|
const {tier} = this.args.data;
|
|
return !!tier.active;
|
|
}
|
|
|
|
@task({drop: true})
|
|
*archiveTierTask() {
|
|
const {tier, onArchive} = this.args.data;
|
|
tier.active = false;
|
|
tier.visibility = 'none';
|
|
|
|
try {
|
|
yield tier.save();
|
|
onArchive?.();
|
|
return tier;
|
|
} catch (error) {
|
|
if (error) {
|
|
this.notifications.showAPIError(error, {key: 'tier.archive.failed'});
|
|
}
|
|
} finally {
|
|
this.args.close();
|
|
}
|
|
}
|
|
}
|