Skip to content

Wyatt-SG/next-template

 
 

Repository files navigation

This is a Next.js project created using the whop-next-template

Getting Started

Deploy with Vercel

First, set the required environment variables:

NEXT_PUBLIC_WHOP_CLIENT_ID="WHOP CLIENT ID"
WHOP_CLIENT_SECRET="WHOP CLIENT SECRET"
WHOP_BOT_TOKEN="WHOP API KEY"
NEXTAUTH_URL="http://localhost:3000"
NEXTAUTH_SECRET="NEXTAUTH SECRET"
NEXT_PUBLIC_RECOMMENDED_PLAN_ID="PLAN ID"
NEXT_PUBLIC_REQUIRED_PASS="PASS ID"

Then, run the development server:

npm run dev
yarn dev
pnpm run dev

Open http://localhost:3000 with your browser to see the result.

This template offers examples on how to utilize next.js patterns in conjuction with @whop-sdk/core to easily gate certain parts of your website.

Included exmples:

/pages (Server-side rendered):

The examples in this list show how to use getServerSideProps in the pages directoy

  • pages/ssr/index.tsx - Adds the whop User to the page props. It renders a login button for logged-out users and a logout button for logged-in users
  • pages/ssr/logged-in.tsx - Only displays a page to logged-in users. If a logged-out user tries to access this page they will be redirected to /ssr where they can log in
  • pages/ssr/pass-gated.tsx - Check if a user owns a specific Pass and only shows the page content if they do. If the user does not own the pass a button directing the user to the whop.com checkout page where they can buy a plan that unlocks the page.

/pages (Statically rendered):

  • pages/ssg/pass-gated.tsx - This example shows how to use middleware to prevent users without access to a certain Pass to visit this page. If a user that does not have access tries to request this page the middleware will redirect them to the whop.com checkout page where they can buy a plan that unlocks the page.

/app:

The examples in this list show how to use @whop-sdk/core in the new app directory added in [email protected]

  • app/app/ssr/page.tsx: This page shows how to obtain a user-scoped instaince of the WhopSDK UserService. If its able to obtain the sdk (the user is logged-in) it shows a logout button, if not it shows a login button
  • app/app/ssr/pass-gated/layout.tsx: This layout shows how to lock a layout (and its children) for users that don't own a specific pass. If no pass is owned it renders a button that allows the user to purchase a pass unlocking the layout on whop.com
  • app/app/ssr/pass-gated/page.tsx: This page is pass-gated without any extra setup as its parent layout(app/app/ssr/pass-gated/layout.tsx) is already pass-gated
  • app/app/ssg/pass-gated/page.tsx: This page is protected by middleware, conceptually similar to pages/ssg/pass-gated.tsx

/api:

  • pages/api/pass-gated.ts: This api route uses the user session to obtain a user-scoped instance of the WhopSDK UserService and then uses that to check if the authorised used owns a certain pass.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out this templates GitHub repository - your feedback and contributions are welcome!

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 89.3%
  • CSS 8.7%
  • Shell 1.6%
  • JavaScript 0.4%