You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Inside the generated MDX files are links to other generated MDX files. These relative links need to be replaced with absolute links to pages that exist on clerk.com.
28
+
* For example, `[Foobar](../../foo/bar.mdx)` needs to be replaced with `[Foobar](/docs/foo/bar)`.
29
+
* It also shouldn't matter how level deep the relative link is.
30
+
*
31
+
* This function returns an array of `{ pattern: string, replace: string }` to pass into the `typedoc-plugin-replace-text` plugin.
* The following example demonstrates how to use the `useAuth()` hook to access the current auth state, like whether the user is signed in or not. It also includes a basic example for using the `getToken()` method to retrieve a session token for fetching data from an external resource.
Copy file name to clipboardexpand all lines: packages/react/src/hooks/useSignIn.ts
+11
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,9 @@ import { useAssertWrappedByClerkProvider } from './useAssertWrappedByClerkProvid
13
13
*
14
14
* The following example uses the `useSignIn()` hook to access the [`SignIn`](https://clerk.com/docs/references/javascript/sign-in/sign-in) object, which contains the current sign-in attempt status and methods to create a new sign-in attempt. The `isLoaded` property is used to handle the loading state.
Copy file name to clipboardexpand all lines: packages/react/src/hooks/useSignUp.ts
+11
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,9 @@ import { useAssertWrappedByClerkProvider } from './useAssertWrappedByClerkProvid
13
13
*
14
14
* The following example uses the `useSignUp()` hook to access the [`SignUp`](https://clerk.com/docs/references/javascript/sign-up/sign-up) object, which contains the current sign-up attempt status and methods to create a new sign-up attempt. The `isLoaded` property is used to handle the loading state.
* The following example uses the `useClerk()` hook to access the `clerk` object. The `clerk` object is used to call the [`openSignIn()`](https://clerk.com/docs/references/javascript/clerk#sign-in) method to open the sign-in modal.
* To keep network usage to a minimum, developers are required to opt-in by specifying which resource they need to fetch and paginate through. By default, the `memberships`, `invitations`, `membershipRequests`, and `domains` attributes are not populated. You must pass `true` or an object with the desired properties to fetch and paginate the data.
* The following example demonstrates how to use the `infinite` property to fetch and append new data to the existing list. The `memberships` attribute will be populated with the first page of the organization's memberships. When the "Load more" button is clicked, the `fetchNext` helper function will be called to append the next page of memberships to the list.
181
186
*
182
-
* ```jsx
187
+
* ```tsx
183
188
* import { useOrganization } from '@clerk/clerk-react'
* `true` or an object with any of the properties described in [Shared properties](https://clerk.com/docs/references/react/use-organization-list#shared-properties). If set to `true`, all default properties will be used.
24
+
* If set to `true`, all default properties will be used.
25
+
*
26
+
* Otherwise, accepts an object with the following optional properties:
27
+
*
28
+
* - Any of the properties described in [Shared properties](#shared-properties).
* `true` or an object with [`status: OrganizationInvitationStatus`](https://clerk.com/docs/references/react/use-organization-list#organization-invitation-status) or any of the properties described in [Shared properties](https://clerk.com/docs/references/react/use-organization-list#shared-properties). If set to `true`, all default properties will be used.
32
+
* If set to `true`, all default properties will be used.
33
+
*
34
+
* Otherwise, accepts an object with the following optional properties:
35
+
*
36
+
* - `status`: A string that filters the invitations by the provided status.
37
+
* - Any of the properties described in [Shared properties](#shared-properties).
* `true` or an object with [`status: OrganizationSuggestionsStatus | OrganizationSuggestionStatus[]`](https://clerk.com/docs/references/react/use-organization-list#organization-suggestion-status) or any of the properties described in [Shared properties](https://clerk.com/docs/references/react/use-organization-list#shared-properties). If set to `true`, all default properties will be used.
41
+
* If set to `true`, all default properties will be used.
42
+
*
43
+
* Otherwise, accepts an object with the following optional properties:
44
+
*
45
+
* - `status`: A string that filters the suggestions by the provided status.
46
+
* - Any of the properties described in [Shared properties](#shared-properties).
@@ -116,8 +116,135 @@ type UseOrganizationList = <T extends UseOrganizationListParams>(
116
116
117
117
/**
118
118
* The `useOrganizationList()` hook provides access to the current user's organization memberships, invitations, and suggestions. It also includes methods for creating new organizations and managing the active organization.
119
+
*
120
+
* @example
121
+
* ### Expanding and paginating attributes
122
+
*
123
+
* To keep network usage to a minimum, developers are required to opt-in by specifying which resource they need to fetch and paginate through. So by default, the `userMemberships`, `userInvitations`, and `userSuggestions` attributes are not populated. You must pass true or an object with the desired properties to fetch and paginate the data.
* The following example demonstrates how to use the `infinite` property to fetch and append new data to the existing list. The `userMemberships` attribute will be populated with the first page of the user's organization memberships. When the "Load more" button is clicked, the `fetchNext` helper function will be called to append the next page of memberships to the list.
* The following example demonstrates how to use the `fetchPrevious` and `fetchNext` helper functions to paginate through the data. The `userInvitations` attribute will be populated with the first page of invitations. When the "Previous page" or "Next page" button is clicked, the `fetchPrevious` or `fetchNext` helper function will be called to fetch the previous or next page of invitations.
195
+
*
196
+
* Notice the difference between this example's pagination and the infinite pagination example above.
Copy file name to clipboardexpand all lines: packages/shared/src/react/hooks/useSession.ts
+11
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,9 @@ type UseSession = () => UseSessionReturn;
12
12
*
13
13
* The following example uses the `useSession()` hook to access the `Session` object, which has the `lastActiveAt` property. The `lastActiveAt` property is a `Date` object used to show the time the session was last active.
14
14
*
15
+
* <Tabs items='React,Next.js'>
16
+
* <Tab>
17
+
*
15
18
* ```tsx {{ filename: 'src/Home.tsx' }}
16
19
* import { useSession } from '@clerk/clerk-react'
17
20
*
@@ -34,6 +37,14 @@ type UseSession = () => UseSessionReturn;
* The following example uses `useSessionList()` to get a list of sessions that have been registered on the client device. The `sessions` property is used to show the number of times the user has visited the page.
12
12
*
13
+
* <Tabs items='React,Next.js'>
14
+
* <Tab>
15
+
*
13
16
* ```tsx {{ filename: 'src/Home.tsx' }}
14
17
* import { useSessionList } from '@clerk/clerk-react'
* The following example uses the `useUser()` hook to access the [`User`](https://clerk.com/docs/references/javascript/user) object, which calls the [`update()`](https://clerk.com/docs/references/javascript/user#update) method to update the current user's information.
* The following example uses the `useUser()` hook to access the [`User`](https://clerk.com/docs/references/javascript/user) object, which calls the [`reload()`](https://clerk.com/docs/references/javascript/user#reload) method to get the latest user's information.
* An interface that describes the response of a method that returns a paginated list of resources.
17
+
*
18
+
* > [!TIP]
19
+
* > Clerk's SDKs always use `Promise<ClerkPaginatedResponse<T>>`. If the promise resolves, you will get back the properties. If the promise is rejected, you will receive a `ClerkAPIResponseError` or network error.
17
20
*/
18
21
exportinterfaceClerkPaginatedResponse<T>{
22
+
/**
23
+
* An array that contains the fetched data.
24
+
*/
19
25
data: T[];
26
+
/**
27
+
* The total count of data that exist remotely.
28
+
*/
20
29
total_count: number;
21
30
}
22
31
23
32
/**
24
-
* Pagination params passed in FAPI client methods
33
+
* @interface
25
34
*/
26
35
exporttypeClerkPaginationParams<T=object>={
27
36
/**
28
-
* This is the starting point for your fetched results.
37
+
* A number that specifies which page to fetch. For example, if `initialPage` is set to `10`, it will skip the first 9 pages and fetch the 10th page. Defaults to `1`.
29
38
*/
30
39
initialPage?: number;
31
40
/**
32
-
* Maximum number of items returned per request.
41
+
* A number that specifies the maximum number of results to return per page. Defaults to `10`.
* In order to not render `<Tabs>` in the inline IntelliSense, the `items` prop was adjusted from `items={['item', 'item2']}` to `items='item,item2'`. It needs to be converted back so that clerk.com can render it properly.
0 commit comments