mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
5d2e456f61
refs https://github.com/TryGhost/Team/issues/637 Updates Portal settings to use list of custom prices for default product instead of hardcoded Monthly/Yearly
85 lines
3.2 KiB
JavaScript
85 lines
3.2 KiB
JavaScript
import Service from '@ember/service';
|
|
import {ICON_MAPPING} from 'ghost-admin/components/modal-portal-settings';
|
|
import {inject as service} from '@ember/service';
|
|
export default class MembersUtilsService extends Service {
|
|
@service config;
|
|
@service settings;
|
|
|
|
get isStripeEnabled() {
|
|
const stripeDirect = this.config.get('stripeDirect');
|
|
|
|
const hasDirectKeys = !!this.settings.get('stripeSecretKey') && !!this.settings.get('stripePublishableKey');
|
|
const hasConnectKeys = !!this.settings.get('stripeConnectSecretKey') && !!this.settings.get('stripeConnectPublishableKey');
|
|
|
|
if (stripeDirect) {
|
|
return hasDirectKeys;
|
|
}
|
|
|
|
return hasConnectKeys || hasDirectKeys;
|
|
}
|
|
|
|
getPortalPreviewUrl(args) {
|
|
let {
|
|
disableBackground,
|
|
buttonIcon,
|
|
page = 'signup',
|
|
isFreeChecked = true,
|
|
isMonthlyChecked = true,
|
|
isYearlyChecked = true,
|
|
monthlyPrice,
|
|
yearlyPrice,
|
|
portalPlans,
|
|
currency
|
|
} = args;
|
|
|
|
if (!buttonIcon) {
|
|
const defaultIconKeys = ICON_MAPPING.map(icon => icon.value);
|
|
buttonIcon = this.settings.get('portalButtonIcon') || defaultIconKeys[0];
|
|
}
|
|
|
|
const baseUrl = this.config.get('blogUrl');
|
|
const portalBase = '/#/portal/preview';
|
|
const settingsParam = new URLSearchParams();
|
|
const signupButtonText = this.settings.get('portalButtonSignupText') || '';
|
|
const allowSelfSignup = this.settings.get('membersSignupAccess') === 'all' &&
|
|
(!this.isStripeEnabled || isFreeChecked);
|
|
|
|
settingsParam.append('button', this.settings.get('portalButton'));
|
|
settingsParam.append('name', this.settings.get('portalName'));
|
|
settingsParam.append('isFree', isFreeChecked);
|
|
settingsParam.append('isMonthly', isMonthlyChecked);
|
|
settingsParam.append('isYearly', isYearlyChecked);
|
|
settingsParam.append('page', page);
|
|
settingsParam.append('buttonIcon', encodeURIComponent(buttonIcon));
|
|
settingsParam.append('signupButtonText', encodeURIComponent(signupButtonText));
|
|
settingsParam.append('allowSelfSignup', allowSelfSignup);
|
|
|
|
if (portalPlans) {
|
|
settingsParam.append('portalPrices', encodeURIComponent(portalPlans));
|
|
}
|
|
|
|
if (this.settings.get('accentColor') === '' || this.settings.get('accentColor')) {
|
|
settingsParam.append('accentColor', encodeURIComponent(`${this.settings.get('accentColor')}`));
|
|
}
|
|
if (this.settings.get('portalButtonStyle')) {
|
|
settingsParam.append('buttonStyle', encodeURIComponent(this.settings.get('portalButtonStyle')));
|
|
}
|
|
|
|
if (monthlyPrice) {
|
|
settingsParam.append('monthlyPrice', monthlyPrice);
|
|
}
|
|
if (yearlyPrice) {
|
|
settingsParam.append('yearlyPrice', yearlyPrice);
|
|
}
|
|
if (currency) {
|
|
settingsParam.append('currency', currency);
|
|
}
|
|
|
|
if (disableBackground) {
|
|
settingsParam.append('disableBackground', true);
|
|
}
|
|
|
|
return `${baseUrl}${portalBase}?${settingsParam.toString()}`;
|
|
}
|
|
}
|