forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuiComponents.ts
More file actions
397 lines (336 loc) · 10.5 KB
/
Copy pathuiComponents.ts
File metadata and controls
397 lines (336 loc) · 10.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
import type {
CreateOrganizationProps,
GoogleOneTapProps,
OrganizationListProps,
OrganizationProfileProps,
OrganizationSwitcherProps,
SignInProps,
SignUpProps,
UserButtonProps,
UserProfileProps,
WaitlistProps,
Without,
} from '@clerk/types';
import { computed, defineComponent, h, inject, onScopeDispose, provide, ref, watchEffect } from 'vue';
import { useClerk } from '../composables/useClerk';
import { errorThrower } from '../errors/errorThrower';
import {
organizationProfileLinkRenderedError,
organizationProfilePageRenderedError,
userButtonMenuActionRenderedError,
userButtonMenuItemsRenderedError,
userButtonMenuLinkRenderedError,
userProfileLinkRenderedError,
userProfilePageRenderedError,
} from '../errors/messages';
import {
OrganizationProfileInjectionKey,
UserButtonInjectionKey,
UserButtonMenuItemsInjectionKey,
UserProfileInjectionKey,
} from '../keys';
import type {
CustomPortalsRendererProps,
OrganizationLinkProps,
OrganizationProfilePageProps,
UserButtonActionProps,
UserButtonLinkProps,
UserProfileLinkProps,
UserProfilePageProps,
} from '../types';
import { useUserButtonCustomMenuItems } from '../utils/useCustomMenuItems';
import { useOrganizationProfileCustomPages, useUserProfileCustomPages } from '../utils/useCustomPages';
import { ClerkLoaded } from './controlComponents';
type AnyObject = Record<string, any>;
interface MountProps {
mount: ((node: HTMLDivElement, props: AnyObject) => void) | undefined;
unmount: ((node: HTMLDivElement) => void) | undefined;
updateProps?: (props: { node: HTMLDivElement; props: AnyObject | undefined }) => void;
props?: AnyObject;
}
const CustomPortalsRenderer = defineComponent((props: CustomPortalsRendererProps) => {
return () => [...(props?.customPagesPortals ?? []), ...(props?.customMenuItemsPortals ?? [])];
});
/**
* A utility component that handles mounting and unmounting of Clerk UI components.
* The component only mounts when Clerk is fully loaded and automatically
* handles cleanup on unmount.
*/
const Portal = defineComponent((props: MountProps) => {
const portalRef = ref<HTMLDivElement | null>(null);
const isPortalMounted = ref(false);
// Make the props reactive so the watcher can react to changes
const componentProps = computed(() => ({ ...props.props }));
watchEffect(() => {
if (!portalRef.value) {
return;
}
if (isPortalMounted.value) {
props.updateProps?.({ node: portalRef.value, props: componentProps.value });
} else {
props.mount?.(portalRef.value, componentProps.value);
isPortalMounted.value = true;
}
});
onScopeDispose(() => {
if (isPortalMounted.value && portalRef.value) {
props.unmount?.(portalRef.value);
}
});
return () => h(ClerkLoaded, () => h('div', { ref: portalRef }));
});
const _UserProfile = defineComponent((props: UserProfileProps, { slots }) => {
const clerk = useClerk();
const { customPages, customPagesPortals, addCustomPage } = useUserProfileCustomPages();
const finalProps = computed(() => ({
...props,
customPages: customPages.value,
}));
provide(UserProfileInjectionKey, {
addCustomPage,
});
return () => [
h(Portal, {
mount: clerk.value?.mountUserProfile,
unmount: clerk.value?.unmountUserProfile,
updateProps: (clerk.value as any)?.__unstable__updateProps,
props: finalProps.value,
}),
h(CustomPortalsRenderer, { customPagesPortals: customPagesPortals.value }),
slots.default?.(),
];
});
export const UserProfilePage = defineComponent(
(props: UserProfilePageProps, { slots }) => {
const ctx = inject(UserProfileInjectionKey);
if (!ctx) {
return errorThrower.throw(userProfilePageRenderedError);
}
ctx.addCustomPage({
props,
slots,
component: UserProfilePage,
});
return () => null;
},
{ name: 'UserProfilePage' },
);
export const UserProfileLink = defineComponent(
(props: UserProfileLinkProps, { slots }) => {
const ctx = inject(UserProfileInjectionKey);
if (!ctx) {
return errorThrower.throw(userProfileLinkRenderedError);
}
ctx.addCustomPage({
props,
slots,
component: UserProfileLink,
});
return () => null;
},
{ name: 'UserProfileLink' },
);
export const UserProfile = Object.assign(_UserProfile, {
Page: UserProfilePage,
Link: UserProfileLink,
});
type UserButtonPropsWithoutCustomMenuItems = Without<UserButtonProps, 'customMenuItems'>;
const _UserButton = defineComponent((props: UserButtonPropsWithoutCustomMenuItems, { slots }) => {
const clerk = useClerk();
const { customMenuItems, customMenuItemsPortals, addCustomMenuItem } = useUserButtonCustomMenuItems();
const { customPages, customPagesPortals, addCustomPage } = useUserProfileCustomPages();
const finalProps = computed<UserButtonProps>(() => ({
...props,
userProfileProps: {
...(props.userProfileProps || {}),
customPages: customPages.value,
},
customMenuItems: customMenuItems.value,
}));
provide(UserButtonInjectionKey, {
addCustomMenuItem,
});
provide(UserProfileInjectionKey, {
addCustomPage,
});
return () => [
h(Portal, {
mount: clerk.value?.mountUserButton,
unmount: clerk.value?.unmountUserButton,
updateProps: (clerk.value as any)?.__unstable__updateProps,
props: finalProps.value,
}),
h(CustomPortalsRenderer, {
customPagesPortals: customPagesPortals.value,
customMenuItemsPortals: customMenuItemsPortals.value,
}),
slots.default?.(),
];
});
const MenuItems = defineComponent((_, { slots }) => {
const ctx = inject(UserButtonInjectionKey);
if (!ctx) {
return errorThrower.throw(userButtonMenuItemsRenderedError);
}
provide(UserButtonMenuItemsInjectionKey, ctx);
return () => slots.default?.();
});
export const MenuAction = defineComponent(
(props: UserButtonActionProps, { slots }) => {
const ctx = inject(UserButtonMenuItemsInjectionKey);
if (!ctx) {
return errorThrower.throw(userButtonMenuActionRenderedError);
}
ctx.addCustomMenuItem({
props,
slots,
component: MenuAction,
});
return () => null;
},
{ name: 'MenuAction' },
);
export const MenuLink = defineComponent(
(props: UserButtonLinkProps, { slots }) => {
const ctx = inject(UserButtonMenuItemsInjectionKey);
if (!ctx) {
return errorThrower.throw(userButtonMenuLinkRenderedError);
}
ctx.addCustomMenuItem({
props,
slots,
component: MenuLink,
});
return () => null;
},
{ name: 'MenuLink' },
);
export const UserButton = Object.assign(_UserButton, {
MenuItems,
Action: MenuAction,
Link: MenuLink,
UserProfilePage,
});
export const GoogleOneTap = defineComponent((props: GoogleOneTapProps) => {
const clerk = useClerk();
return () =>
h(Portal, {
mount: () => clerk.value?.openGoogleOneTap(props),
unmount: clerk.value?.closeGoogleOneTap,
});
});
export const SignIn = defineComponent((props: SignInProps) => {
const clerk = useClerk();
return () =>
h(Portal, {
mount: clerk.value?.mountSignIn,
unmount: clerk.value?.unmountSignIn,
updateProps: (clerk.value as any)?.__unstable__updateProps,
props,
});
});
export const SignUp = defineComponent((props: SignUpProps) => {
const clerk = useClerk();
return () =>
h(Portal, {
mount: clerk.value?.mountSignUp,
unmount: clerk.value?.unmountSignUp,
updateProps: (clerk.value as any)?.__unstable__updateProps,
props,
});
});
export const CreateOrganization = defineComponent((props: CreateOrganizationProps) => {
const clerk = useClerk();
return () =>
h(Portal, {
mount: clerk.value?.mountCreateOrganization,
unmount: clerk.value?.unmountCreateOrganization,
updateProps: (clerk.value as any)?.__unstable__updateProps,
props,
});
});
export const OrganizationSwitcher = defineComponent((props: OrganizationSwitcherProps) => {
const clerk = useClerk();
return () =>
h(Portal, {
mount: clerk.value?.mountOrganizationSwitcher,
unmount: clerk.value?.unmountOrganizationSwitcher,
updateProps: (clerk.value as any)?.__unstable__updateProps,
props,
});
});
export const OrganizationList = defineComponent((props: OrganizationListProps) => {
const clerk = useClerk();
return () =>
h(Portal, {
mount: clerk.value?.mountOrganizationList,
unmount: clerk.value?.unmountOrganizationList,
updateProps: (clerk.value as any)?.__unstable__updateProps,
props,
});
});
export const OrganizationProfilePage = defineComponent(
(props: OrganizationProfilePageProps, { slots }) => {
const ctx = inject(OrganizationProfileInjectionKey);
if (!ctx) {
return errorThrower.throw(organizationProfilePageRenderedError);
}
ctx.addCustomPage({
props,
slots,
component: OrganizationProfilePage,
});
return () => null;
},
{ name: 'OrganizationProfilePage' },
);
export const OrganizationProfileLink = defineComponent(
(props: OrganizationLinkProps, { slots }) => {
const ctx = inject(OrganizationProfileInjectionKey);
if (!ctx) {
return errorThrower.throw(organizationProfileLinkRenderedError);
}
ctx.addCustomPage({
props,
slots,
component: OrganizationProfileLink,
});
return () => null;
},
{ name: 'OrganizationProfileLink' },
);
const _OrganizationProfile = defineComponent((props: OrganizationProfileProps, { slots }) => {
const clerk = useClerk();
const { customPages, customPagesPortals, addCustomPage } = useOrganizationProfileCustomPages();
const finalProps = computed(() => ({
...props,
customPages: customPages.value,
}));
provide(OrganizationProfileInjectionKey, {
addCustomPage,
});
return () => [
h(Portal, {
mount: clerk.value?.mountOrganizationProfile,
unmount: clerk.value?.unmountOrganizationProfile,
updateProps: (clerk.value as any)?.__unstable__updateProps,
props: finalProps.value,
}),
h(CustomPortalsRenderer, { customPagesPortals: customPagesPortals.value }),
slots.default?.(),
];
});
export const OrganizationProfile = Object.assign(_OrganizationProfile, {
Page: OrganizationProfilePage,
Link: OrganizationProfileLink,
});
export const Waitlist = defineComponent((props: WaitlistProps) => {
const clerk = useClerk();
return () =>
h(Portal, {
mount: clerk.value?.mountWaitlist,
unmount: clerk.value?.unmountWaitlist,
updateProps: (clerk.value as any)?.__unstable__updateProps,
props,
});
});