mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
5fe20898d6
This reverts commit d539d4ca53
.
108 lines
3.6 KiB
JavaScript
108 lines
3.6 KiB
JavaScript
import Component from '@ember/component';
|
|
import moment from 'moment';
|
|
import {action} from '@ember/object';
|
|
import {computed} from '@ember/object';
|
|
import {gt} from '@ember/object/computed';
|
|
import {inject as service} from '@ember/service';
|
|
import {task} from 'ember-concurrency';
|
|
|
|
export default Component.extend({
|
|
membersUtils: service(),
|
|
feature: service(),
|
|
config: service(),
|
|
mediaQueries: service(),
|
|
ghostPaths: service(),
|
|
ajax: service(),
|
|
store: service(),
|
|
|
|
stripeDetailsType: 'subscription',
|
|
|
|
// Allowed actions
|
|
setProperty: () => {},
|
|
|
|
hasMultipleSubscriptions: gt('member.subscriptions', 1),
|
|
|
|
canShowStripeInfo: computed('member.isNew', 'membersUtils.isStripeEnabled', function () {
|
|
let stripeEnabled = this.membersUtils.isStripeEnabled;
|
|
|
|
if (this.member.get('isNew') || !stripeEnabled) {
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}),
|
|
|
|
subscriptions: computed('member.subscriptions', function () {
|
|
let subscriptions = this.member.get('subscriptions');
|
|
if (subscriptions && subscriptions.length > 0) {
|
|
return subscriptions.map((subscription) => {
|
|
const statusLabel = subscription.status ? subscription.status.replace('_', ' ') : '';
|
|
return {
|
|
id: subscription.id,
|
|
customer: subscription.customer,
|
|
name: subscription.name || '',
|
|
email: subscription.email || '',
|
|
status: subscription.status,
|
|
statusLabel: statusLabel,
|
|
startDate: subscription.start_date ? moment(subscription.start_date).format('D MMM YYYY') : '-',
|
|
plan: subscription.plan,
|
|
amount: parseInt(subscription.plan.amount) ? (subscription.plan.amount / 100) : 0,
|
|
cancelAtPeriodEnd: subscription.cancel_at_period_end,
|
|
cancellationReason: subscription.cancellation_reason,
|
|
validUntil: subscription.current_period_end ? moment(subscription.current_period_end).format('D MMM YYYY') : '-'
|
|
};
|
|
}).reverse();
|
|
}
|
|
return null;
|
|
}),
|
|
|
|
customer: computed('subscriptions.[]', function () {
|
|
let customer = this.subscriptions.firstObject?.customer;
|
|
if (customer) {
|
|
return Object.assign({}, this.subscriptions.firstObject?.customer, {
|
|
startDate: this.subscriptions.firstObject?.startDate
|
|
});
|
|
}
|
|
return null;
|
|
}),
|
|
|
|
actions: {
|
|
setProperty(property, value) {
|
|
this.setProperty(property, value);
|
|
},
|
|
setLabels(labels) {
|
|
this.member.set('labels', labels);
|
|
}
|
|
},
|
|
|
|
changeStripeDetailsType: action(function (type) {
|
|
this.set('stripeDetailsType', type);
|
|
}),
|
|
|
|
cancelSubscription: task(function* (subscriptionId) {
|
|
let url = this.get('ghostPaths.url').api('members', this.member.get('id'), 'subscriptions', subscriptionId);
|
|
|
|
let response = yield this.ajax.put(url, {
|
|
data: {
|
|
cancel_at_period_end: true
|
|
}
|
|
});
|
|
|
|
this.store.pushPayload('member', response);
|
|
return response;
|
|
}).drop(),
|
|
|
|
continueSubscription: task(function* (subscriptionId) {
|
|
let url = this.get('ghostPaths.url').api('members', this.member.get('id'), 'subscriptions', subscriptionId);
|
|
|
|
let response = yield this.ajax.put(url, {
|
|
data: {
|
|
cancel_at_period_end: false
|
|
}
|
|
});
|
|
|
|
this.store.pushPayload('member', response);
|
|
return response;
|
|
}).drop()
|
|
});
|