|
1 |
| -const createErrorMessage = (msg: string) => { |
2 |
| - return `🔒 Clerk: ${msg.trim()} |
3 |
| -
|
4 |
| -For more info, check out the docs: https://clerk.com/docs, |
5 |
| -or come say hi in our discord server: https://clerk.com/discord |
6 |
| -
|
7 |
| -`; |
8 |
| -}; |
9 |
| - |
10 |
| -const ssrExample = `Use 'rootAuthLoader' as your root loader. Then, simply wrap the App component with ClerkApp and make it the default export. |
11 |
| -Example: |
12 |
| -
|
13 |
| -import { ClerkApp } from '@clerk/remix'; |
14 |
| -import { rootAuthLoader } from '@clerk/remix/ssr.server'; |
15 |
| -
|
16 |
| -export const loader: LoaderFunction = args => rootAuthLoader(args) |
17 |
| -
|
18 |
| -function App() { |
19 |
| - return ( |
20 |
| - <html lang='en'> |
21 |
| - ... |
22 |
| - </html> |
23 |
| - ); |
24 |
| -} |
25 |
| -
|
26 |
| -export default ClerkApp(App, { publishableKey: '...' }); |
27 |
| -`; |
28 |
| - |
29 |
| -export const invalidClerkStatePropError = createErrorMessage(` |
30 |
| -You're trying to pass an invalid object in "<ClerkProvider clerkState={...}>". |
31 |
| -
|
32 |
| -${ssrExample} |
33 |
| -`); |
34 |
| - |
35 |
| -export const noClerkStateError = createErrorMessage(` |
36 |
| -Looks like you didn't pass 'clerkState' to "<ClerkProvider clerkState={...}>". |
37 |
| -
|
38 |
| -${ssrExample} |
39 |
| -`); |
40 |
| - |
41 |
| -export const noLoaderArgsPassedInGetAuth = createErrorMessage(` |
42 |
| -You're calling 'getAuth()' from a loader, without providing the loader args object. |
43 |
| -Example: |
44 |
| -
|
45 |
| -export const loader: LoaderFunction = async (args) => { |
46 |
| - const { sessionId } = await getAuth(args); |
47 |
| - ... |
48 |
| -}; |
49 |
| -`); |
50 |
| - |
51 |
| -export const invalidRootLoaderCallbackReturn = createErrorMessage(` |
52 |
| -You're returning an invalid response from the 'rootAuthLoader' called from the loader in root.tsx. |
53 |
| -You can only return plain objects, responses created using the Remix 'json()' and 'redirect()' helpers, |
54 |
| -custom redirect 'Response' instances (status codes in the range of 300 to 400), |
55 |
| -or custom json 'Response' instances (containing a body that is a valid json string). |
56 |
| -If you want to return a primitive value or an array, you can always wrap the response with an object. |
57 |
| -
|
58 |
| -Example: |
59 |
| -
|
60 |
| -export const loader: LoaderFunction = args => rootAuthLoader(args, ({ auth }) => { |
61 |
| - const { userId } = auth; |
62 |
| - const posts: Post[] = database.getPostsByUserId(userId); |
63 |
| -
|
64 |
| - return json({ data: posts }) |
65 |
| - // or |
66 |
| - return new Response(JSON.stringify({ data: posts }), { headers: { 'Content-Type': 'application/json' } }); |
67 |
| - // or |
68 |
| - return { data: posts }; |
69 |
| -}) |
70 |
| -`); |
71 |
| - |
72 |
| -export const noSecretKeyError = createErrorMessage(` |
73 |
| -A secretKey must be provided in order to use SSR and the exports from @clerk/remix/api.'); |
74 |
| -If your runtime supports environment variables, you can add a CLERK_SECRET_KEY variable to your config. |
75 |
| -Otherwise, you can pass a secretKey parameter to rootAuthLoader or getAuth. |
76 |
| -`); |
77 |
| - |
78 |
| -export const satelliteAndMissingProxyUrlAndDomain = createErrorMessage( |
79 |
| - `Missing domain and proxyUrl. A satellite application needs to specify a domain or a proxyUrl`, |
80 |
| -); |
81 |
| - |
82 |
| -export const satelliteAndMissingSignInUrl = createErrorMessage(` |
83 |
| -Invalid signInUrl. A satellite application requires a signInUrl for development instances. |
84 |
| -Check if signInUrl is missing from your configuration or if it is not an absolute URL.`); |
| 1 | +export { |
| 2 | + isClerkAPIResponseError, |
| 3 | + isEmailLinkError, |
| 4 | + isKnownError, |
| 5 | + isMetamaskError, |
| 6 | + EmailLinkErrorCode, |
| 7 | +} from '@clerk/clerk-react/errors'; |
0 commit comments