Update UI, improve E2E tests and modify trial period configuration
The code changes incorporate UI updates for better usability and user experience. E2E test scripts(in `user-billing.spec.ts` and `team-billing.spec.ts`) were also updated for improved efficiency and accuracy, primarily replacing 'Active' status check with 'Trial'. Changes have been made in the trialDays configuration, with the term 'trialPeriod' now replaced by 'trialDays' across different components. Notably, a new error handling case is included in `lemon-squeezy-billing-strategy.service.ts` for failed subscription cancellation attempts.
This commit is contained in:
@@ -13,7 +13,7 @@ test.describe('Team Billing', () => {
|
||||
await po.teamAccounts.goToBilling();
|
||||
});
|
||||
|
||||
test('a team can subscribe to a plan', async ({page}) => {
|
||||
test('a team can subscribe to a plan', async () => {
|
||||
await po.billing.selectPlan(0);
|
||||
await po.billing.proceedToCheckout();
|
||||
|
||||
@@ -25,7 +25,7 @@ test.describe('Team Billing', () => {
|
||||
|
||||
await po.teamAccounts.goToBilling();
|
||||
|
||||
await expect(await po.billing.getStatus()).toContainText('Active');
|
||||
await expect(await po.billing.getStatus()).toContainText('Trial');
|
||||
await expect(po.billing.manageBillingButton()).toBeVisible();
|
||||
});
|
||||
});
|
||||
@@ -22,15 +22,13 @@ test.describe('User Billing', () => {
|
||||
await expect(po.billing.successStatus()).toBeVisible();
|
||||
await po.billing.returnToHome();
|
||||
|
||||
await page.waitForURL('http://localhost:3000/home');
|
||||
|
||||
const link = page.locator('button', {
|
||||
hasText: 'Billing'
|
||||
});
|
||||
|
||||
await link.click();
|
||||
|
||||
await expect(await po.billing.getStatus()).toContainText('Active');
|
||||
await expect(await po.billing.getStatus()).toContainText('Trial');
|
||||
await expect(po.billing.manageBillingButton()).toBeVisible();
|
||||
});
|
||||
});
|
||||
@@ -1,4 +1,4 @@
|
||||
import { expect, Page } from '@playwright/test';
|
||||
import { Page } from '@playwright/test';
|
||||
import { StripePageObject } from './stripe.po';
|
||||
|
||||
export class BillingPageObject {
|
||||
@@ -32,7 +32,7 @@ export class BillingPageObject {
|
||||
// wait a bit for the webhook to be processed
|
||||
await this.page.waitForTimeout(1000);
|
||||
|
||||
return this.page.locator('[data-test="checkout-success-back-link"]').click();
|
||||
return this.page.locator('[data-test="checkout-success-back-link"] button').click();
|
||||
}
|
||||
|
||||
proceedToCheckout() {
|
||||
|
||||
@@ -8,6 +8,7 @@ import { Alert, AlertDescription, AlertTitle } from '@kit/ui/alert';
|
||||
import { If } from '@kit/ui/if';
|
||||
import { PageBody, PageHeader } from '@kit/ui/page';
|
||||
import { Trans } from '@kit/ui/trans';
|
||||
import { cn } from '@kit/ui/utils';
|
||||
|
||||
import { createBillingPortalSession } from '~/(dashboard)/home/[account]/billing/server-actions';
|
||||
import billingConfig from '~/config/billing.config';
|
||||
@@ -75,13 +76,17 @@ async function TeamAccountBillingPage({ params }: Params) {
|
||||
/>
|
||||
|
||||
<PageBody>
|
||||
<div className={'mx-auto flex w-full max-w-2xl flex-col space-y-6'}>
|
||||
<div
|
||||
className={cn(`flex w-full flex-col space-y-6`, {
|
||||
'mx-auto max-w-2xl ': subscription,
|
||||
})}
|
||||
>
|
||||
<If
|
||||
condition={subscription}
|
||||
fallback={
|
||||
<>
|
||||
<div>
|
||||
<Checkout />
|
||||
</>
|
||||
</div>
|
||||
}
|
||||
>
|
||||
{(subscription) => (
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import { revalidatePath } from 'next/cache';
|
||||
import dynamic from 'next/dynamic';
|
||||
import { notFound, redirect } from 'next/navigation';
|
||||
|
||||
@@ -7,17 +8,12 @@ import { requireUser } from '@kit/supabase/require-user';
|
||||
import { getSupabaseServerComponentClient } from '@kit/supabase/server-component-client';
|
||||
|
||||
import billingConfig from '~/config/billing.config';
|
||||
import pathsConfig from '~/config/paths.config';
|
||||
import { withI18n } from '~/lib/i18n/with-i18n';
|
||||
|
||||
interface SessionPageProps {
|
||||
searchParams: {
|
||||
session_id: string;
|
||||
};
|
||||
|
||||
params: {
|
||||
account: string;
|
||||
};
|
||||
}
|
||||
|
||||
const LazyEmbeddedCheckout = dynamic(
|
||||
@@ -31,10 +27,7 @@ const LazyEmbeddedCheckout = dynamic(
|
||||
},
|
||||
);
|
||||
|
||||
async function ReturnCheckoutSessionPage({
|
||||
searchParams,
|
||||
params,
|
||||
}: SessionPageProps) {
|
||||
async function ReturnCheckoutSessionPage({ searchParams }: SessionPageProps) {
|
||||
const sessionId = searchParams.session_id;
|
||||
|
||||
if (!sessionId) {
|
||||
@@ -52,17 +45,12 @@ async function ReturnCheckoutSessionPage({
|
||||
);
|
||||
}
|
||||
|
||||
const redirectPath = pathsConfig.app.accountHome.replace(
|
||||
'[account]',
|
||||
params.account,
|
||||
);
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className={'fixed left-0 top-48 z-50 mx-auto w-full'}>
|
||||
<BillingSessionStatus
|
||||
onRedirect={onRedirect}
|
||||
customerEmail={customerEmail ?? ''}
|
||||
redirectPath={redirectPath}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -106,3 +94,15 @@ async function loadCheckoutSession(sessionId: string) {
|
||||
checkoutToken,
|
||||
};
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/require-await
|
||||
async function onRedirect() {
|
||||
'use server';
|
||||
|
||||
// revalidate the home page to update cached pages
|
||||
// which may have changed due to the billing session
|
||||
revalidatePath('/home', 'layout');
|
||||
|
||||
// redirect back
|
||||
redirect('../');
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ export default createBillingSchema({
|
||||
{
|
||||
name: 'Starter Monthly',
|
||||
id: 'starter-monthly',
|
||||
trialPeriod: 7,
|
||||
trialDays: 7,
|
||||
paymentType: 'recurring',
|
||||
interval: 'month',
|
||||
lineItems: [
|
||||
|
||||
@@ -81,7 +81,7 @@ export const PlanSchema = z
|
||||
.min(1),
|
||||
interval: BillingIntervalSchema.optional(),
|
||||
lineItems: z.array(LineItemSchema),
|
||||
trialPeriod: z
|
||||
trialDays: z
|
||||
.number({
|
||||
description:
|
||||
'Number of days for the trial period. Leave empty for no trial.',
|
||||
|
||||
@@ -6,7 +6,6 @@ export const CreateBillingCheckoutSchema = z.object({
|
||||
returnUrl: z.string().url(),
|
||||
accountId: z.string().uuid(),
|
||||
plan: PlanSchema,
|
||||
trialDays: z.number().optional(),
|
||||
customerId: z.string().optional(),
|
||||
customerEmail: z.string().email().optional(),
|
||||
enableDiscountField: z.boolean().optional(),
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
'use client';
|
||||
|
||||
import Link from 'next/link';
|
||||
|
||||
import { Check, ChevronRight } from 'lucide-react';
|
||||
|
||||
import { Button } from '@kit/ui/button';
|
||||
@@ -12,33 +8,13 @@ import { Trans } from '@kit/ui/trans';
|
||||
* Retrieves the session status for a Stripe checkout session.
|
||||
* Since we should only arrive here for a successful checkout, we only check
|
||||
* for the `paid` status.
|
||||
*
|
||||
* @param {Stripe.Checkout.Session['status']} status - The status of the Stripe checkout session.
|
||||
* @param {string} customerEmail - The email address of the customer associated with the session.
|
||||
*
|
||||
* @returns {ReactElement} - The component to render based on the session status.
|
||||
*/
|
||||
**/
|
||||
export function BillingSessionStatus({
|
||||
customerEmail,
|
||||
redirectPath,
|
||||
onRedirect,
|
||||
}: React.PropsWithChildren<{
|
||||
customerEmail: string;
|
||||
redirectPath: string;
|
||||
}>) {
|
||||
return (
|
||||
<SuccessSessionStatus
|
||||
redirectPath={redirectPath}
|
||||
customerEmail={customerEmail}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
function SuccessSessionStatus({
|
||||
customerEmail,
|
||||
redirectPath,
|
||||
}: React.PropsWithChildren<{
|
||||
customerEmail: string;
|
||||
redirectPath: string;
|
||||
onRedirect: () => void;
|
||||
}>) {
|
||||
return (
|
||||
<section
|
||||
@@ -78,15 +54,15 @@ function SuccessSessionStatus({
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<Link data-test={'checkout-success-back-link'} href={redirectPath}>
|
||||
<Button>
|
||||
<form data-test={'checkout-success-back-link'}>
|
||||
<Button formAction={onRedirect}>
|
||||
<span>
|
||||
<Trans i18nKey={'billing:checkoutSuccessBackButton'} />
|
||||
</span>
|
||||
|
||||
<ChevronRight className={'h-4'} />
|
||||
</Button>
|
||||
</Link>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
||||
@@ -288,7 +288,7 @@ export function PlanPicker(
|
||||
>
|
||||
<If
|
||||
condition={
|
||||
plan.trialPeriod && props.canStartTrial
|
||||
plan.trialDays && props.canStartTrial
|
||||
}
|
||||
>
|
||||
<div>
|
||||
@@ -296,7 +296,7 @@ export function PlanPicker(
|
||||
<Trans
|
||||
i18nKey={`billing:trialPeriod`}
|
||||
values={{
|
||||
period: plan.trialPeriod,
|
||||
period: plan.trialDays,
|
||||
}}
|
||||
/>
|
||||
</Badge>
|
||||
@@ -356,7 +356,7 @@ export function PlanPicker(
|
||||
) : (
|
||||
<>
|
||||
<If
|
||||
condition={selectedPlan?.trialPeriod && props.canStartTrial}
|
||||
condition={selectedPlan?.trialDays && props.canStartTrial}
|
||||
fallback={t(`proceedToPayment`)}
|
||||
>
|
||||
<span>{t(`startTrial`)}</span>
|
||||
|
||||
@@ -119,7 +119,7 @@ export class LemonSqueezyBillingStrategyService
|
||||
'Failed to cancel subscription',
|
||||
);
|
||||
|
||||
throw error;
|
||||
throw new Error('Failed to cancel subscription');
|
||||
}
|
||||
|
||||
logger.info(ctx, 'Subscription cancelled successfully');
|
||||
|
||||
@@ -33,7 +33,7 @@ export async function createStripeCheckout(
|
||||
| Stripe.Checkout.SessionCreateParams.SubscriptionData
|
||||
| undefined = isSubscription
|
||||
? {
|
||||
trial_period_days: params.trialDays,
|
||||
trial_period_days: params.plan.trialDays,
|
||||
metadata: {
|
||||
accountId: params.accountId,
|
||||
},
|
||||
|
||||
@@ -191,7 +191,12 @@ export function AccountSelector({
|
||||
data-test={'account-selector-team'}
|
||||
data-name={account.label}
|
||||
data-slug={account.value}
|
||||
className={'group flex space-x-2'}
|
||||
className={cn(
|
||||
'group flex justify-between transition-colors',
|
||||
{
|
||||
['bg-muted']: value === account.value,
|
||||
},
|
||||
)}
|
||||
key={account.value}
|
||||
value={account.value ?? ''}
|
||||
onSelect={(currentValue) => {
|
||||
@@ -203,23 +208,28 @@ export function AccountSelector({
|
||||
}
|
||||
}}
|
||||
>
|
||||
<Avatar
|
||||
className={cn('h-6 w-6 border border-transparent', {
|
||||
['border-border']: value === account.value,
|
||||
['group-hover:border-border ']:
|
||||
value !== account.value,
|
||||
})}
|
||||
>
|
||||
<AvatarImage src={account.image ?? undefined} />
|
||||
<div className={'flex items-center'}>
|
||||
<Avatar
|
||||
className={cn(
|
||||
'mr-2 h-6 w-6 border border-transparent',
|
||||
{
|
||||
['border-border']: value === account.value,
|
||||
['group-hover:border-border ']:
|
||||
value !== account.value,
|
||||
},
|
||||
)}
|
||||
>
|
||||
<AvatarImage src={account.image ?? undefined} />
|
||||
|
||||
<AvatarFallback>
|
||||
{account.label ? account.label[0] : ''}
|
||||
</AvatarFallback>
|
||||
</Avatar>
|
||||
<AvatarFallback>
|
||||
{account.label ? account.label[0] : ''}
|
||||
</AvatarFallback>
|
||||
</Avatar>
|
||||
|
||||
<span className={'mr-2 max-w-[165px] truncate'}>
|
||||
{account.label}
|
||||
</span>
|
||||
<span className={'mr-2 max-w-[165px] truncate'}>
|
||||
{account.label}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<Icon item={account.value ?? ''} />
|
||||
</CommandItem>
|
||||
|
||||
@@ -7,6 +7,7 @@ import { Ellipsis } from 'lucide-react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
import { Database } from '@kit/supabase/database';
|
||||
import { Badge } from '@kit/ui/badge';
|
||||
import { Button } from '@kit/ui/button';
|
||||
import { DataTable } from '@kit/ui/data-table';
|
||||
import {
|
||||
@@ -121,13 +122,7 @@ function useGetColumns(
|
||||
<span>{displayName}</span>
|
||||
|
||||
<If condition={isSelf}>
|
||||
<span
|
||||
className={
|
||||
'bg-muted rounded-md px-2.5 py-1 text-xs font-medium'
|
||||
}
|
||||
>
|
||||
{t('youLabel')}
|
||||
</span>
|
||||
<Badge variant={'outline'}>{t('youLabel')}</Badge>
|
||||
</If>
|
||||
</span>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user