2021-09-13 14:10:25 +03:00
|
|
|
import Component from '@glimmer/component';
|
2019-10-03 20:42:33 +03:00
|
|
|
import moment from 'moment';
|
2020-12-10 14:38:38 +03:00
|
|
|
import {action} from '@ember/object';
|
2021-09-13 14:10:25 +03:00
|
|
|
import {getNonDecimal, getSymbol} from 'ghost-admin/utils/currency';
|
2019-10-02 07:00:03 +03:00
|
|
|
import {inject as service} from '@ember/service';
|
2022-02-09 13:49:38 +03:00
|
|
|
import {task} from 'ember-concurrency';
|
2021-09-13 14:10:25 +03:00
|
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
|
|
|
|
export default class extends Component {
|
2022-02-10 13:41:36 +03:00
|
|
|
@service membersUtils;
|
|
|
|
@service ghostPaths;
|
|
|
|
@service ajax;
|
|
|
|
@service store;
|
|
|
|
@service feature;
|
|
|
|
@service settings;
|
2021-09-13 14:10:25 +03:00
|
|
|
|
|
|
|
constructor(...args) {
|
|
|
|
super(...args);
|
|
|
|
this.member = this.args.member;
|
|
|
|
this.scratchMember = this.args.scratchMember;
|
|
|
|
}
|
|
|
|
|
2022-02-03 16:42:41 +03:00
|
|
|
@tracked showMemberProductModal = false;
|
|
|
|
@tracked productsList;
|
2022-04-14 17:40:04 +03:00
|
|
|
@tracked newslettersList;
|
2021-09-13 14:10:25 +03:00
|
|
|
|
|
|
|
get canShowStripeInfo() {
|
|
|
|
return !this.member.get('isNew') && this.membersUtils.isStripeEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
get isAddComplimentaryAllowed() {
|
|
|
|
if (!this.membersUtils.isStripeEnabled) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-10-02 07:00:03 +03:00
|
|
|
|
2022-03-18 19:15:42 +03:00
|
|
|
if (this.member.get('isNew')) {
|
2021-09-13 14:10:25 +03:00
|
|
|
return false;
|
|
|
|
}
|
2020-12-10 14:38:38 +03:00
|
|
|
|
2022-03-18 19:15:42 +03:00
|
|
|
if (this.member.get('products')?.length > 0) {
|
|
|
|
return false;
|
2022-02-03 16:42:41 +03:00
|
|
|
}
|
|
|
|
|
2022-03-18 19:15:42 +03:00
|
|
|
// complimentary subscriptions are assigned to products so it only
|
|
|
|
// makes sense to show the "add complimentary" buttons when there's a
|
|
|
|
// product to assign the complimentary subscription to
|
|
|
|
const hasAnActivePaidProduct = !!this.productsList?.length;
|
|
|
|
|
|
|
|
return hasAnActivePaidProduct;
|
|
|
|
}
|
|
|
|
|
2022-04-25 15:10:29 +03:00
|
|
|
get hasSingleNewsletter() {
|
|
|
|
if (!this.feature.get('multipleNewsletters')) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return this.newslettersList?.length === 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
get hasMultipleNewsletters() {
|
|
|
|
return !!(this.feature.get('multipleNewsletters') && this.newslettersList?.length > 1);
|
|
|
|
}
|
|
|
|
|
2022-03-18 19:15:42 +03:00
|
|
|
get isCreatingComplimentary() {
|
|
|
|
return this.args.isSaveRunning;
|
2021-09-13 14:10:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
get products() {
|
|
|
|
let subscriptions = this.member.get('subscriptions') || [];
|
2022-03-18 19:15:42 +03:00
|
|
|
|
|
|
|
// Create the products from `subscriptions.price.product`
|
|
|
|
let products = subscriptions
|
|
|
|
.map(subscription => (subscription.tier || subscription.price.product))
|
|
|
|
.filter((value, index, self) => {
|
|
|
|
// Deduplicate by taking the first object by `id`
|
|
|
|
return typeof value.id !== 'undefined' && self.findIndex(element => (element.product_id || element.id) === (value.product_id || value.id)) === index;
|
|
|
|
});
|
|
|
|
|
2021-09-13 14:10:25 +03:00
|
|
|
let subscriptionData = subscriptions.filter((sub) => {
|
|
|
|
return !!sub.price;
|
|
|
|
}).map((sub) => {
|
|
|
|
return {
|
|
|
|
...sub,
|
|
|
|
startDate: sub.start_date ? moment(sub.start_date).format('D MMM YYYY') : '-',
|
|
|
|
validUntil: sub.current_period_end ? moment(sub.current_period_end).format('D MMM YYYY') : '-',
|
|
|
|
cancellationReason: sub.cancellation_reason,
|
|
|
|
price: {
|
|
|
|
...sub.price,
|
|
|
|
currencySymbol: getSymbol(sub.price.currency),
|
|
|
|
nonDecimalAmount: getNonDecimal(sub.price.amount)
|
|
|
|
},
|
|
|
|
isComplimentary: !sub.id
|
|
|
|
};
|
|
|
|
});
|
2022-03-22 19:28:21 +03:00
|
|
|
return products.map((product) => {
|
2021-09-13 14:10:25 +03:00
|
|
|
let productSubscriptions = subscriptionData.filter((subscription) => {
|
2022-03-18 19:15:42 +03:00
|
|
|
return subscription?.price?.product?.product_id === (product.product_id || product.id);
|
2021-09-13 14:10:25 +03:00
|
|
|
});
|
2022-03-22 19:28:21 +03:00
|
|
|
return {
|
|
|
|
...product,
|
|
|
|
subscriptions: productSubscriptions
|
|
|
|
};
|
|
|
|
});
|
2021-09-13 14:10:25 +03:00
|
|
|
}
|
2020-02-24 12:08:47 +03:00
|
|
|
|
2021-09-13 14:10:25 +03:00
|
|
|
get customer() {
|
|
|
|
let firstSubscription = this.member.get('subscriptions').firstObject;
|
|
|
|
let customer = firstSubscription?.customer;
|
2019-10-03 20:42:33 +03:00
|
|
|
|
2021-01-06 14:56:15 +03:00
|
|
|
if (customer) {
|
2021-09-13 14:10:25 +03:00
|
|
|
return {
|
|
|
|
...customer,
|
|
|
|
startDate: firstSubscription?.startDate
|
|
|
|
};
|
2021-01-06 14:56:15 +03:00
|
|
|
}
|
|
|
|
return null;
|
2021-09-13 14:10:25 +03:00
|
|
|
}
|
|
|
|
|
2022-03-01 17:57:57 +03:00
|
|
|
get isStripeConnected() {
|
|
|
|
return this.settings.get('stripeConnectAccountId');
|
|
|
|
}
|
|
|
|
|
2022-04-25 15:10:29 +03:00
|
|
|
@action
|
|
|
|
updateNewsletterPreference(event) {
|
|
|
|
if (!event.target.checked) {
|
|
|
|
this.member.set('newsletters', []);
|
|
|
|
} else if (this.newslettersList.firstObject) {
|
|
|
|
const newsletter = this.newslettersList.firstObject;
|
|
|
|
this.member.set('newsletters', [newsletter]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-03 16:42:41 +03:00
|
|
|
@action
|
|
|
|
setup() {
|
|
|
|
this.fetchProducts.perform();
|
2022-04-14 17:40:04 +03:00
|
|
|
if (this.feature.get('multipleNewsletters')) {
|
|
|
|
this.fetchNewsletters.perform();
|
|
|
|
}
|
2022-02-03 16:42:41 +03:00
|
|
|
}
|
|
|
|
|
2021-09-13 14:10:25 +03:00
|
|
|
@action
|
|
|
|
setProperty(property, value) {
|
|
|
|
this.args.setProperty(property, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
setLabels(labels) {
|
|
|
|
this.member.set('labels', labels);
|
|
|
|
}
|
|
|
|
|
2022-04-14 17:40:04 +03:00
|
|
|
@action
|
|
|
|
setMemberNewsletters(newsletters) {
|
|
|
|
this.member.set('newsletters', newsletters);
|
|
|
|
}
|
|
|
|
|
2021-09-13 14:10:25 +03:00
|
|
|
@action
|
|
|
|
closeMemberProductModal() {
|
|
|
|
this.showMemberProductModal = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
cancelSubscription(subscriptionId) {
|
|
|
|
this.cancelSubscriptionTask.perform(subscriptionId);
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
removeComplimentary(productId) {
|
|
|
|
this.removeComplimentaryTask.perform(productId);
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
continueSubscription(subscriptionId) {
|
|
|
|
this.continueSubscriptionTask.perform(subscriptionId);
|
|
|
|
}
|
|
|
|
|
|
|
|
@task({drop: true})
|
|
|
|
*cancelSubscriptionTask(subscriptionId) {
|
|
|
|
let url = this.ghostPaths.url.api('members', this.member.get('id'), 'subscriptions', subscriptionId);
|
2020-08-21 14:35:45 +03:00
|
|
|
|
2021-09-13 14:10:25 +03:00
|
|
|
let response = yield this.ajax.put(url, {
|
|
|
|
data: {
|
|
|
|
cancel_at_period_end: true
|
|
|
|
}
|
|
|
|
});
|
2020-12-10 14:38:38 +03:00
|
|
|
|
2021-09-13 14:10:25 +03:00
|
|
|
this.store.pushPayload('member', response);
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
@task({drop: true})
|
|
|
|
*removeComplimentaryTask(productId) {
|
|
|
|
let url = this.ghostPaths.url.api(`members/${this.member.get('id')}`);
|
|
|
|
let products = this.member.get('products') || [];
|
2022-03-18 19:15:42 +03:00
|
|
|
|
|
|
|
const updatedProducts = products
|
|
|
|
.filter(product => product.id !== productId)
|
|
|
|
.map(product => ({id: product.id}));
|
2020-08-21 14:35:45 +03:00
|
|
|
|
|
|
|
let response = yield this.ajax.put(url, {
|
|
|
|
data: {
|
2021-09-13 14:10:25 +03:00
|
|
|
members: [{
|
|
|
|
id: this.member.get('id'),
|
|
|
|
email: this.member.get('email'),
|
|
|
|
products: updatedProducts
|
|
|
|
}]
|
2020-08-21 14:35:45 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.store.pushPayload('member', response);
|
|
|
|
return response;
|
2021-09-13 14:10:25 +03:00
|
|
|
}
|
2020-08-21 14:35:45 +03:00
|
|
|
|
2021-09-13 14:10:25 +03:00
|
|
|
@task({drop: true})
|
|
|
|
*continueSubscriptionTask(subscriptionId) {
|
|
|
|
let url = this.ghostPaths.url.api('members', this.member.get('id'), 'subscriptions', subscriptionId);
|
2020-08-21 14:35:45 +03:00
|
|
|
|
|
|
|
let response = yield this.ajax.put(url, {
|
|
|
|
data: {
|
|
|
|
cancel_at_period_end: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.store.pushPayload('member', response);
|
|
|
|
return response;
|
2021-09-13 14:10:25 +03:00
|
|
|
}
|
2022-02-03 16:42:41 +03:00
|
|
|
|
|
|
|
@task({drop: true})
|
|
|
|
*fetchProducts() {
|
|
|
|
this.productsList = yield this.store.query('product', {filter: 'type:paid+active:true', include: 'monthly_price,yearly_price'});
|
|
|
|
}
|
2022-04-14 17:40:04 +03:00
|
|
|
|
|
|
|
@task({drop: true})
|
|
|
|
*fetchNewsletters() {
|
|
|
|
this.newslettersList = yield this.store.query('newsletter', {filter: 'status:active'});
|
|
|
|
if (this.member.get('isNew')) {
|
|
|
|
const defaultNewsletters = this.newslettersList.filter((newsletter) => {
|
|
|
|
return newsletter.subscribeOnSignup && newsletter.visibility === 'members';
|
|
|
|
});
|
|
|
|
this.setMemberNewsletters(defaultNewsletters);
|
|
|
|
}
|
|
|
|
}
|
2021-09-13 14:10:25 +03:00
|
|
|
}
|