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:
parent
1baa21ddab
commit
ef235ad148
1 changed files with 7 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue