From c5154a43a702a4591ea582fec07a37bff200b103 Mon Sep 17 00:00:00 2001 From: Rishabh Date: Fri, 11 Mar 2022 20:10:22 +0530 Subject: [PATCH] Added paid member with selected tier fixture --- ghost/portal/src/App.js | 3 +- ghost/portal/src/utils/fixtures-generator.js | 3 +- ghost/portal/src/utils/fixtures.js | 30 +++++++++++++++++++- 3 files changed, 33 insertions(+), 3 deletions(-) diff --git a/ghost/portal/src/App.js b/ghost/portal/src/App.js index f44b5b1d76..f4638b402d 100644 --- a/ghost/portal/src/App.js +++ b/ghost/portal/src/App.js @@ -19,7 +19,8 @@ const DEV_MODE_DATA = { showPopup: true, site: Fixtures.site, member: Fixtures.member.paid, - page: 'signup', + page: 'accountHome', + ...Fixtures.paidMemberOnTier(), pageData: Fixtures.offer }; diff --git a/ghost/portal/src/utils/fixtures-generator.js b/ghost/portal/src/utils/fixtures-generator.js index 49d19be199..d5df27a7a1 100644 --- a/ghost/portal/src/utils/fixtures-generator.js +++ b/ghost/portal/src/utils/fixtures-generator.js @@ -257,6 +257,7 @@ export function getSubscriptionData({ amount = (interval === 'month' ? 500 : 5000), nickname = (interval === 'month' ? 'Monthly' : 'Yearly'), cardLast4 = '4242', + offer: localOffer = offer, priceId: price_id = `price_${objectId()}`, startDate: start_date = '2021-10-05T03:18:30.000Z', currentPeriodEnd: current_period_end = '2022-10-05T03:18:30.000Z', @@ -276,7 +277,7 @@ export function getSubscriptionData({ interval, currency }, - offer, + offer: localOffer, status, start_date, default_payment_card_last4: cardLast4, diff --git a/ghost/portal/src/utils/fixtures.js b/ghost/portal/src/utils/fixtures.js index 8b45eb83e7..4065f187b2 100644 --- a/ghost/portal/src/utils/fixtures.js +++ b/ghost/portal/src/utils/fixtures.js @@ -39,7 +39,7 @@ const products = [ }), numOfBenefits: 1 }) - + // , // getProductData({ // name: 'Friends of the Blueprint', @@ -144,4 +144,32 @@ export const member = { ] }) }; + +export function paidMemberOnTier() { + let price = site?.products?.[2].monthlyPrice; + /* eslint-disable no-console */ + console.log(site?.products); + console.log('price', price); + let updatedMember = getMemberData({ + paid: true, + subscriptions: [ + getSubscriptionData({ + offer: null, + priceId: price?.id, + status: 'active', + currency: price?.currency, + interval: price?.interval, + amount: price?.amount, + cardLast4: '4242', + startDate: '2021-10-05T03:18:30.000Z', + currentPeriodEnd: '2022-10-05T03:18:30.000Z', + cancelAtPeriodEnd: false + }) + ] + }); + return { + site, + member: updatedMember + }; +} /* eslint-enable no-unused-vars*/