Control components
ClerkLoaded
Bases: ClerkBase
Only renders children after authentication has been checked.
Source code in custom_components/reflex_clerk_api/control_components.py
9 10 11 12 |
|
ClerkLoading
Bases: ClerkBase
Only renders childen while Clerk authenticates the user.
Source code in custom_components/reflex_clerk_api/control_components.py
15 16 17 18 |
|
Protect
Bases: ClerkBase
Source code in custom_components/reflex_clerk_api/control_components.py
21 22 23 24 25 26 27 28 29 30 31 |
|
condition = None
class-attribute
instance-attribute
Optional conditional logic that renders the children if it returns true
fallback = None
class-attribute
instance-attribute
An optional snippet of JSX to show when a user doesn't have the role or permission to access the protected content.
permission = None
class-attribute
instance-attribute
Optional string corresponding to a Role's Permission in the format org:
role = None
class-attribute
instance-attribute
Optional string corresponding to an Organization's Role in the format org:
RedirectToSignIn
Bases: ClerkBase
Immediately redirects the user to the sign in page when rendered.
Source code in custom_components/reflex_clerk_api/control_components.py
34 35 36 37 38 39 40 41 42 43 44 |
|
sign_in_fallback_redirect_url = None
class-attribute
instance-attribute
The fallback URL to redirect to after the user signs in, if there's no redirect_url in the path already. Defaults to /.
sign_in_force_redirect_url = None
class-attribute
instance-attribute
If provided, this URL will always be redirected to after the user signs in.
initial_values = None
class-attribute
instance-attribute
The values used to prefill the sign-in fields with.
RedirectToSignUp
Bases: ClerkBase
Immediately redirects the user to the sign up page when rendered.
Source code in custom_components/reflex_clerk_api/control_components.py
47 48 49 50 51 52 53 54 55 56 57 |
|
sign_up_fallback_redirect_url = None
class-attribute
instance-attribute
The fallback URL to redirect to after the user signs up, if there's no redirect_url in the path already. Defaults to /.
sign_up_force_redirect_url = None
class-attribute
instance-attribute
If provided, this URL will always be redirected to after the user signs up.
initial_values = None
class-attribute
instance-attribute
The values used to prefill the sign-up fields with.
RedirectToUserProfile
Bases: ClerkBase
Immediately redirects the user to their profile page when rendered.
Source code in custom_components/reflex_clerk_api/control_components.py
60 61 62 63 |
|
SignedIn
Bases: ClerkBase
Only renders children when the user is signed in.
Source code in custom_components/reflex_clerk_api/control_components.py
74 75 76 77 |
|
SignedOut
Bases: ClerkBase
Only renders children when the user is signed out.
Source code in custom_components/reflex_clerk_api/control_components.py
80 81 82 83 |
|