From 8729740c96d9168b423b7d5382aa0b55efa8c86e Mon Sep 17 00:00:00 2001 From: Rish Date: Wed, 16 Sep 2020 20:45:28 +0530 Subject: [PATCH] Some refinements --- .../src/components/common/PlansSection.js | 2 +- .../src/components/pages/AccountPlanPage.js | 58 ++++++++++++++++++- .../portal/src/components/pages/SignupPage.js | 1 - 3 files changed, 58 insertions(+), 3 deletions(-) diff --git a/ghost/portal/src/components/common/PlansSection.js b/ghost/portal/src/components/common/PlansSection.js index 3cdc113efd..42e895ac78 100644 --- a/ghost/portal/src/components/common/PlansSection.js +++ b/ghost/portal/src/components/common/PlansSection.js @@ -281,7 +281,7 @@ function PlanLabel({showLabel}) { ); } -function PlansSection({plans, showLabel = true, selectedPlan, onPlanSelect, style}) { +function PlansSection({plans, showLabel = true, type, selectedPlan, onPlanSelect, style}) { if (!plans || plans.length === 0 || (plans.length === 1 && plans[0].type === 'free')) { return null; } diff --git a/ghost/portal/src/components/pages/AccountPlanPage.js b/ghost/portal/src/components/pages/AccountPlanPage.js index 3fe0f72f63..1d589391dd 100644 --- a/ghost/portal/src/components/pages/AccountPlanPage.js +++ b/ghost/portal/src/components/pages/AccountPlanPage.js @@ -186,11 +186,43 @@ const PlanChooser = ({plans, selectedPlan, errors, member, onAction, onCancelCon ); }; +const UpgradePlanSelector = ({plans, selectedPlan, errors, member, onPlanCheckout, action, brandColor, onPlanSelect}) => { + const {global} = errors || {}; + const isRunning = ['checkoutPlan:running'].includes(action); + return ( +
+
+ onPlanSelect(e, name)} + /> + +
+ onPlanCheckout(e)} + isRunning={isRunning} + isPrimary={true} + brandColor={brandColor} + label={'Continue'} + style={{height: '40px', width: '100%'}} + /> +
+ ); +}; const PlanMain = ({ plans, selectedPlan, confirmationPlan, confirmationType, errors, member, onAction, action, brandColor, - showConfirmation = false, onPlanSelect, onConfirm, onCancelContinueSubscription + showConfirmation = false, onPlanSelect, onPlanCheckout, onConfirm, onCancelContinueSubscription }) => { + if (!isPaidMember({member})) { + return ( + + ); + } if (!showConfirmation) { return ( ); }; + +const PlanUpgrade = ({ + plans, selectedPlan, errors, member, onAction, action, brandColor,onPlanSelect,onPlanCheckout +}) => { + selectedPlan = selectedPlan || plans[0].name; + return ( + + ); +}; + export default class AccountPlanPage extends React.Component { static contextType = AppContext; @@ -273,6 +317,17 @@ export default class AccountPlanPage extends React.Component { onPlanSelect(e, name) { const {member} = this.context; e.preventDefault(); + + if (!isPaidMember({member})) { + // Hack: React checkbox gets out of sync with dom state with instant update + setTimeout(() => { + this.setState((state) => { + return { + selectedPlan: name + }; + }); + }, 5); + } const confirmationPlan = this.plans.find(d => d.name === name); const activePlan = this.getActivePlanName({member}); const confirmationType = activePlan ? 'changePlan' : 'subscribe'; @@ -352,6 +407,7 @@ export default class AccountPlanPage extends React.Component { onCancelSubscriptionConfirmation = {() => this.onCancelSubscriptionConfirmation()} onCancelContinueSubscription = {data => this.onCancelContinueSubscription(data)} onPlanSelect = {(e, name) => this.onPlanSelect(e, name)} + onPlanCheckout = {(e, name) => this.onPlanCheckout(e, name)} /> diff --git a/ghost/portal/src/components/pages/SignupPage.js b/ghost/portal/src/components/pages/SignupPage.js index 2900d40214..05955276ae 100644 --- a/ghost/portal/src/components/pages/SignupPage.js +++ b/ghost/portal/src/components/pages/SignupPage.js @@ -326,7 +326,6 @@ class SignupPage extends React.Component { renderPlans() { const {site} = this.context; const plansData = getSitePlans({site}); - return (