0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Updated plan update start date

no issue

- Updates the new plan's start date based on billing interval change
- If current and new billing interval is same, plan starts at period end, immediately otherwise
This commit is contained in:
Rish 2020-09-16 23:43:19 +05:30
parent 1baa21ddab
commit ef235ad148

View file

@ -106,6 +106,12 @@ const PlanConfirmationSection = ({action, member, plan, type, brandColor, onConf
const subscription = getMemberSubscription({member});
const isRunning = ['updateSubscription:running', 'checkoutPlan:running', 'cancelSubscription:running'].includes(action);
const label = 'Confirm';
let planStartDate = getDateString(subscription.current_period_end);
const currentActivePlan = getMemberActivePlan({member});
if (currentActivePlan.type !== plan.type) {
planStartDate = 'immediately';
}
const planStartMessage = `${plan.currency}${plan.price}/${plan.type} Starting ${planStartDate}`;
if (type === 'changePlan') {
return (
<div>
@ -119,7 +125,7 @@ const PlanConfirmationSection = ({action, member, plan, type, brandColor, onConf
<section>
<div className='gh-portal-list-detail'>
<h3>Price</h3>
<p>{plan.currency}{plan.price}/{plan.type} Starting {getDateString(subscription.current_period_end)}</p>
<p>{planStartMessage}</p>
</div>
</section>
</div>