diff --git a/ghost/portal/src/components/common/ActionButton.js b/ghost/portal/src/components/common/ActionButton.js index 276bad2164..53398302d2 100644 --- a/ghost/portal/src/components/common/ActionButton.js +++ b/ghost/portal/src/components/common/ActionButton.js @@ -71,7 +71,7 @@ const Styles = ({brandColor, retry, disabled, style = {}, isPrimary}) => { }; }; -function ActionButton({label, type, onClick, disabled, retry, brandColor, isRunning, isPrimary = true, isDestructive = false, style, tabindex}) { +function ActionButton({label, type = undefined, onClick, disabled = false, retry = false, brandColor, isRunning, isPrimary = true, isDestructive = false, style = {}, tabindex = undefined}) { let Style = Styles({disabled, retry, brandColor, style, isPrimary}); let className = 'gh-portal-btn'; diff --git a/ghost/portal/src/components/common/PlansSection.js b/ghost/portal/src/components/common/PlansSection.js index 439ef5a5eb..0f9a763a61 100644 --- a/ghost/portal/src/components/common/PlansSection.js +++ b/ghost/portal/src/components/common/PlansSection.js @@ -620,7 +620,9 @@ export function MultipleProductsPlansSection({products, selectedPlan, onPlanSele
diff --git a/ghost/portal/src/components/common/ProductsSection.js b/ghost/portal/src/components/common/ProductsSection.js index b2dfe75149..9a6db4ff2e 100644 --- a/ghost/portal/src/components/common/ProductsSection.js +++ b/ghost/portal/src/components/common/ProductsSection.js @@ -1,9 +1,9 @@ import React, {useContext, useEffect, useState} from 'react'; import Switch from '../common/Switch'; import {ReactComponent as CheckmarkIcon} from '../../images/icons/checkmark.svg'; -import {getSiteProducts, getCurrencySymbol, getPriceString, getStripeAmount, isCookiesDisabled, getMemberActivePrice, getAvailablePrices} from '../../utils/helpers'; +import {getSiteProducts, getCurrencySymbol, getPriceString, getStripeAmount, isCookiesDisabled, getMemberActivePrice, getProductFromPrice} from '../../utils/helpers'; import AppContext from '../../AppContext'; -import {ChangeProductPlansSection} from './PlansSection'; +import ActionButton from './ActionButton'; export const ProductsSectionStyles = ({site}) => { const products = getSiteProducts({site}); @@ -465,6 +465,7 @@ export const ProductsSectionStyles = ({site}) => { const ProductsContext = React.createContext({ selectedInterval: 'month', selectedProduct: 'free', + selectedPlan: null, setSelectedProduct: null }); @@ -514,8 +515,8 @@ function ProductBenefits({product}) { }); } -function ProductBenefitsContainer({product, showVertical = false}) { - if (!product.benefits || !product.benefits.length) { +function ProductBenefitsContainer({product, showVertical = false, hide = false}) { + if (!product.benefits || !product.benefits.length || hide) { return null; } @@ -708,7 +709,6 @@ function ProductsSection({onPlanSelect, products, type = null}) { if (type === 'upgrade') { className += ' gh-portal-upgrade-product'; } - return ( { + setSelectedProduct(defaultProductId); + }, [defaultProductId]); + + if (!portalPlans.includes('monthly') && !portalPlans.includes('yearly')) { + return null; + } + + if (products.length === 0) { + return null; + } + + let className = 'gh-portal-products'; + if (type === 'upgrade') { + className += ' gh-portal-upgrade-product'; + } + if (type === 'changePlan') { + className += ' gh-portal-upgrade-product gh-portal-change-plan'; + } + return ( -
-
-
-

{product.name}

-
{product.description}
- + +
+ + +
+
- {/* */} - + onPlanSelect(null, selectedPrice.id)} + isRunning={false} + disabled={activePrice.id === selectedPrice.id} + isPrimary={true} + brandColor={brandColor} + label={'Continue'} + style={{height: '40px', width: '100%', marginTop: '24px'}} + /> +
+
+ ); +} + +function CurrentPlanLabel({selectedPrice, activePrice}) { + const {brandColor} = useContext(AppContext); + if (selectedPrice.id === activePrice.id) { + return ( +
+ Current Plan
- + ); + } + return null; +} + +function ProductDescription({product, selectedPrice, activePrice}) { + if (product?.description) { + return ( +
+ {product.description} + +
+ ); + } + return null; +} + +function ChangeProductCard({product}) { + const {member} = useContext(AppContext); + const {selectedProduct, setSelectedProduct, selectedInterval} = useContext(ProductsContext); + const cardClass = selectedProduct === product.id ? 'gh-portal-product-card checked' : 'gh-portal-product-card'; + const monthlyPrice = product.monthlyPrice; + const yearlyPrice = product.yearlyPrice; + const memberActivePrice = getMemberActivePrice({member}); + + const selectedPrice = selectedInterval === 'month' ? monthlyPrice : yearlyPrice; + + return ( +
{ + e.stopPropagation(); + setSelectedProduct(product.id); + }}> +
+ { + setSelectedProduct(product.id); + }} /> +

{product.name}

+ + +
+ +
); } -function ChangeProductCards({products, onPlanSelect}) { +function ChangeProductCards({products}) { return products.map((product) => { if (product.id === 'free') { return null; } return ( - + ); }); } -export function ChangeProductSection({products, onPlanSelect}) { - let className = 'gh-portal-products gh-portal-upgrade-product'; - - return ( -
-
- -
-
- ); -} - export default ProductsSection; diff --git a/ghost/portal/src/components/pages/AccountPlanPage.js b/ghost/portal/src/components/pages/AccountPlanPage.js index 74dec9eecb..8822cc8217 100644 --- a/ghost/portal/src/components/pages/AccountPlanPage.js +++ b/ghost/portal/src/components/pages/AccountPlanPage.js @@ -203,7 +203,7 @@ const ChangePlanSection = ({plans, selectedPlan, onPlanSelect, onCancelSubscript ); }; -function PlansOrProductSection({showLabel, plans, selectedPlan, onPlanSelect, changePlan}) { +function PlansOrProductSection({showLabel, plans, selectedPlan, onPlanSelect, changePlan = false}) { const {site, member} = useContext(AppContext); const products = getUpgradeProducts({site, member}); if (hasMultipleProductsFeature({site})) {