-
Notifications
You must be signed in to change notification settings - Fork 892
Document useWaitlist()
#2754
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
brkalow
wants to merge
2
commits into
ds.feat/custom-flow-apis
Choose a base branch
from
cursor/document-usewaitlisthook-c634
base: ds.feat/custom-flow-apis
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Document useWaitlist()
#2754
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| --- | ||
| title: useWaitlist() | ||
| description: Access and manage the waitlist state in your React application with Clerk's useWaitlist() hook. | ||
| sdk: chrome-extension, expo, nextjs, react, react-router, remix, tanstack-react-start | ||
| --- | ||
|
|
||
| The `useWaitlist()` hook provides access to the [`WaitlistFuture`](/docs/reference/javascript/waitlist-future) object, which allows you to build custom waitlist UIs with reactive state management. This hook is ideal for creating custom waitlist experiences when your app is in [**Waitlist** mode](/docs/guides/secure/restricting-access#waitlist). | ||
|
|
||
| ## Returns | ||
|
|
||
| <Properties> | ||
| - `waitlist` | ||
| - [`WaitlistFuture`](/docs/reference/javascript/waitlist-future) | ||
|
|
||
| The current active `WaitlistFuture` instance, for use in custom flows. | ||
|
|
||
| --- | ||
|
|
||
| - `errors` | ||
| - `Errors` | ||
|
|
||
| The errors that occurred during the last API request. | ||
|
|
||
| --- | ||
|
|
||
| - `fetchStatus` | ||
| - `'idle' | 'fetching'` | ||
|
|
||
| The fetch status of the underlying `WaitlistFuture` resource. | ||
| </Properties> | ||
|
|
||
| ## Example | ||
|
|
||
| The following example demonstrates how to use the `useWaitlist()` hook to create a custom waitlist form. Users can submit their email address to join the waitlist, and the component displays appropriate feedback based on the submission state. | ||
|
|
||
| ```tsx {{ filename: 'app/waitlist/page.tsx' }} | ||
| 'use client' | ||
|
|
||
| import { useWaitlist } from '@clerk/react' | ||
|
|
||
| export default function WaitlistPage() { | ||
| const { waitlist, errors, fetchStatus } = useWaitlist() | ||
|
|
||
| const handleSubmit = async (e: React.FormEvent<HTMLFormElement>) => { | ||
| e.preventDefault() | ||
| const formData = new FormData(e.currentTarget) | ||
| const emailAddress = formData.get('emailAddress') as string | ||
|
|
||
| await waitlist.join({ emailAddress }) | ||
| } | ||
|
|
||
| if (waitlist.id) { | ||
| return ( | ||
| <div> | ||
| <h1>Successfully joined the waitlist!</h1> | ||
| <p>We'll notify you when you're approved.</p> | ||
| </div> | ||
| ) | ||
| } | ||
|
|
||
| return ( | ||
| <div> | ||
| <h1>Join the Waitlist</h1> | ||
| <form onSubmit={handleSubmit}> | ||
| <label htmlFor="email">Email address</label> | ||
| <input | ||
| id="email" | ||
| name="emailAddress" | ||
| type="email" | ||
| required | ||
| /> | ||
| {errors.fields.emailAddress && ( | ||
| <p>{errors.fields.emailAddress.longMessage}</p> | ||
| )} | ||
| <button type="submit" disabled={fetchStatus === 'fetching'}> | ||
| {fetchStatus === 'fetching' ? 'Submitting...' : 'Join Waitlist'} | ||
| </button> | ||
| </form> | ||
| </div> | ||
| ) | ||
| } | ||
| ``` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| --- | ||
| title: '`WaitlistFuture`' | ||
| description: The current active `Waitlist` instance, for use in custom flows. | ||
| sdk: js-frontend | ||
| --- | ||
|
|
||
| <Include src="_partials/custom-flows/future-api-callout" /> | ||
|
|
||
| The `WaitlistFuture` class provides methods and properties to manage waitlist entries in your application. It is used when you want to build a custom waitlist UI instead of using the prebuilt [`<Waitlist />`](/docs/reference/components/authentication/waitlist) component. | ||
|
|
||
| ## Properties | ||
|
|
||
| <Properties> | ||
| - `id` | ||
| - `string | undefined` | ||
|
|
||
| The unique identifier for the waitlist entry. `undefined` if the user has not joined the waitlist yet. | ||
|
|
||
| --- | ||
|
|
||
| - `createdAt` | ||
| - `Date | null` | ||
|
|
||
| The date and time the waitlist entry was created. `null` if the user has not joined the waitlist yet. | ||
|
|
||
| --- | ||
|
|
||
| - `updatedAt` | ||
| - `Date | null` | ||
|
|
||
| The date and time the waitlist entry was last updated. `null` if the user has not joined the waitlist yet. | ||
| </Properties> | ||
|
|
||
| ## Methods | ||
|
|
||
| ### `join()` | ||
|
|
||
| Submits an email address to join the waitlist. This method creates a new waitlist entry for the provided email address. | ||
|
|
||
| ```ts | ||
| function join(params: JoinWaitlistParams): Promise<{ error: unknown }> | ||
| ``` | ||
|
|
||
| #### `JoinWaitlistParams` | ||
|
|
||
| <Properties> | ||
| - `emailAddress` | ||
| - `string` | ||
|
|
||
| The email address to add to the waitlist. | ||
| </Properties> | ||
|
|
||
| #### Example | ||
|
|
||
| ```tsx {{ filename: 'app/waitlist/page.tsx' }} | ||
| 'use client' | ||
|
|
||
| import { useWaitlist } from '@clerk/react' | ||
|
|
||
| export default function WaitlistPage() { | ||
| const { waitlist } = useWaitlist() | ||
|
|
||
| const handleSubmit = async (e: React.FormEvent<HTMLFormElement>) => { | ||
| e.preventDefault() | ||
| const formData = new FormData(e.currentTarget) | ||
| const emailAddress = formData.get('emailAddress') as string | ||
|
|
||
| const { error } = await waitlist.join({ emailAddress }) | ||
|
|
||
| if (error) { | ||
| console.error('Failed to join waitlist:', error) | ||
| } | ||
| } | ||
|
|
||
| return ( | ||
| <form onSubmit={handleSubmit}> | ||
| <input type="email" name="emailAddress" required /> | ||
| <button type="submit">Join Waitlist</button> | ||
| </form> | ||
| ) | ||
| } | ||
| ``` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does waitlist contain a status?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It does not, it's a single-step submission