mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
## Description Previously we assumed that there can only be 1 subscription per user. However, that will soon no longer the case with the introduction of the Teams subscription. This PR will apply the required migrations to support multiple subscriptions. ## Changes Made - Updated the Prisma schema to allow for multiple `Subscriptions` per `User` - Added a Stripe `customerId` field to the `User` model - Updated relevant billing sections to support multiple subscriptions ## Testing Performed - Tested running the Prisma migration on a demo database created on the main branch Will require a lot of additional testing. ## Checklist - [ ] I have tested these changes locally and they work as expected. - [ ] I have added/updated tests that prove the effectiveness of these changes. - [X] I have followed the project's coding style guidelines. ## Additional Notes Added the following custom SQL statement to the migration: > DELETE FROM "Subscription" WHERE "planId" IS NULL OR "priceId" IS NULL; Prior to deployment this will require changes to Stripe products: - Adding `type` meta attribute --------- Co-authored-by: Lucas Smith <me@lucasjamessmith.me>
178 lines
6.7 KiB
TypeScript
178 lines
6.7 KiB
TypeScript
'use client';
|
|
|
|
import type { HTMLAttributes } from 'react';
|
|
import { useState } from 'react';
|
|
|
|
import Link from 'next/link';
|
|
|
|
import { AnimatePresence, motion } from 'framer-motion';
|
|
import { usePlausible } from 'next-plausible';
|
|
|
|
import { cn } from '@documenso/ui/lib/utils';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
|
|
export type PricingTableProps = HTMLAttributes<HTMLDivElement>;
|
|
|
|
const SELECTED_PLAN_BAR_LAYOUT_ID = 'selected-plan-bar';
|
|
|
|
export const PricingTable = ({ className, ...props }: PricingTableProps) => {
|
|
const event = usePlausible();
|
|
|
|
const [period, setPeriod] = useState<'MONTHLY' | 'YEARLY'>('MONTHLY');
|
|
|
|
return (
|
|
<div className={cn('', className)} {...props}>
|
|
<div className="flex items-center justify-center gap-x-6">
|
|
<AnimatePresence>
|
|
<motion.button
|
|
key="MONTHLY"
|
|
className={cn(
|
|
'text-muted-foreground relative flex items-center gap-x-2.5 px-1 py-2.5',
|
|
{
|
|
'text-foreground': period === 'MONTHLY',
|
|
'hover:text-foreground/80': period !== 'MONTHLY',
|
|
},
|
|
)}
|
|
onClick={() => setPeriod('MONTHLY')}
|
|
>
|
|
Monthly
|
|
{period === 'MONTHLY' && (
|
|
<motion.div
|
|
layoutId={SELECTED_PLAN_BAR_LAYOUT_ID}
|
|
className="bg-primary absolute bottom-0 left-0 h-[3px] w-full rounded-full"
|
|
/>
|
|
)}
|
|
</motion.button>
|
|
|
|
<motion.button
|
|
key="YEARLY"
|
|
className={cn(
|
|
'text-muted-foreground relative flex items-center gap-x-2.5 px-1 py-2.5',
|
|
{
|
|
'text-foreground': period === 'YEARLY',
|
|
'hover:text-foreground/80': period !== 'YEARLY',
|
|
},
|
|
)}
|
|
onClick={() => setPeriod('YEARLY')}
|
|
>
|
|
Yearly
|
|
<div className="bg-muted text-foreground block rounded-full px-2 py-0.5 text-xs">
|
|
Save $60
|
|
</div>
|
|
{period === 'YEARLY' && (
|
|
<motion.div
|
|
layoutId={SELECTED_PLAN_BAR_LAYOUT_ID}
|
|
className="bg-primary absolute bottom-0 left-0 h-[3px] w-full rounded-full"
|
|
/>
|
|
)}
|
|
</motion.button>
|
|
</AnimatePresence>
|
|
</div>
|
|
|
|
<div className="mt-12 grid grid-cols-1 gap-x-6 gap-y-12 md:grid-cols-2 lg:grid-cols-3">
|
|
<div
|
|
data-plan="free"
|
|
className="bg-background shadow-foreground/5 flex flex-col items-center justify-center rounded-lg border px-8 py-12 shadow-lg"
|
|
>
|
|
<p className="text-foreground text-4xl font-medium">Free Plan</p>
|
|
<p className="text-primary mt-2.5 text-xl font-medium">$0</p>
|
|
|
|
<p className="text-foreground mt-4 max-w-[30ch] text-center">
|
|
For small teams and individuals with basic needs.
|
|
</p>
|
|
|
|
<Button className="rounded-full text-base" asChild>
|
|
<Link
|
|
href={`${process.env.NEXT_PUBLIC_WEBAPP_URL}/signup`}
|
|
target="_blank"
|
|
className="mt-6"
|
|
>
|
|
Signup Now
|
|
</Link>
|
|
</Button>
|
|
|
|
<div className="mt-8 flex w-full flex-col divide-y">
|
|
<p className="text-foreground py-4">5 standard documents per month</p>
|
|
<p className="text-foreground py-4">Up to 10 recipients per document</p>
|
|
<p className="text-foreground py-4">No credit card required</p>
|
|
</div>
|
|
|
|
<div className="flex-1" />
|
|
</div>
|
|
|
|
<div
|
|
data-plan="community"
|
|
className="border-primary bg-background shadow-foreground/5 flex flex-col items-center justify-center rounded-lg border-2 px-8 py-12 shadow-[0px_0px_0px_4px_#E3E3E380]"
|
|
>
|
|
<p className="text-foreground text-4xl font-medium">Early Adopters</p>
|
|
<div className="text-primary mt-2.5 text-xl font-medium">
|
|
<AnimatePresence mode="wait">
|
|
{period === 'MONTHLY' && <motion.div layoutId="pricing">$30</motion.div>}
|
|
{period === 'YEARLY' && <motion.div layoutId="pricing">$300</motion.div>}
|
|
</AnimatePresence>
|
|
</div>
|
|
|
|
<p className="text-foreground mt-4 max-w-[30ch] text-center">
|
|
For fast-growing companies that aim to scale across multiple teams.
|
|
</p>
|
|
|
|
<Button className="mt-6 rounded-full text-base" asChild>
|
|
<Link href={`${process.env.NEXT_PUBLIC_WEBAPP_URL}/signup`}>Signup Now</Link>
|
|
</Button>
|
|
|
|
<div className="mt-8 flex w-full flex-col divide-y">
|
|
<p className="text-foreground py-4 font-medium">
|
|
{' '}
|
|
<a href="https://documenso.com/blog/early-adopters" target="_blank">
|
|
The Early Adopter Deal:
|
|
</a>
|
|
</p>
|
|
<p className="text-foreground py-4">Join the movement</p>
|
|
<p className="text-foreground py-4">Simple signing solution</p>
|
|
<p className="text-foreground py-4">Email, Discord and Slack assistance</p>
|
|
<p className="text-foreground py-4">
|
|
<strong>
|
|
{' '}
|
|
<a href="https://documenso.com/blog/early-adopters" target="_blank">
|
|
Includes all upcoming features
|
|
</a>
|
|
</strong>
|
|
</p>
|
|
<p className="text-foreground py-4">Fixed, straightforward pricing</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
data-plan="enterprise"
|
|
className="bg-background shadow-foreground/5 flex flex-col items-center justify-center rounded-lg border px-8 py-12 shadow-lg"
|
|
>
|
|
<p className="text-foreground text-4xl font-medium">Enterprise</p>
|
|
<p className="text-primary mt-2.5 text-xl font-medium">Pricing on request</p>
|
|
|
|
<p className="text-foreground mt-4 max-w-[30ch] text-center">
|
|
For large organizations that need extra flexibility and control.
|
|
</p>
|
|
|
|
<Link
|
|
href="https://dub.sh/enterprise"
|
|
target="_blank"
|
|
className="mt-6"
|
|
onClick={() => event('enterprise-contact')}
|
|
>
|
|
<Button className="rounded-full text-base">Contact Us</Button>
|
|
</Link>
|
|
|
|
<div className="mt-8 flex w-full flex-col divide-y">
|
|
<p className="text-foreground py-4 font-medium">Everything in Early Adopters, plus:</p>
|
|
<p className="text-foreground py-4">Custom Subdomain</p>
|
|
<p className="text-foreground py-4">Compliance Check</p>
|
|
<p className="text-foreground py-4">Guaranteed Uptime</p>
|
|
<p className="text-foreground py-4">Reporting & Analysis</p>
|
|
<p className="text-foreground py-4">24/7 Support</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|