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>
24 lines
701 B
JavaScript
24 lines
701 B
JavaScript
import Component from '@glimmer/component';
|
|
import {get} from '@ember/object';
|
|
import {mostRecentlyUpdated} from 'ghost-admin/helpers/most-recently-updated';
|
|
|
|
export default class GhMembersListItemColumn extends Component {
|
|
constructor(...args) {
|
|
super(...args);
|
|
}
|
|
|
|
get labels() {
|
|
const labelData = get(this.args.member, 'labels') || [];
|
|
return labelData.map(label => label.name).join(', ');
|
|
}
|
|
|
|
get tiers() {
|
|
const tierData = get(this.args.member, 'tiers') || [];
|
|
return tierData.map(tier => tier.name).join(', ');
|
|
}
|
|
|
|
get mostRecentSubscription() {
|
|
return mostRecentlyUpdated(get(this.args.member, 'subscriptions'));
|
|
}
|
|
}
|