Clerk provider
ClerkState
Bases: State
Source code in custom_components/reflex_clerk_api/clerk_provider.py
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 |
|
is_signed_in = False
class-attribute
instance-attribute
Whether the user is logged in.
auth_checked = False
class-attribute
instance-attribute
Whether the auth state of the user has been checked yet. I.e., has Clerk sent a response to the frontend yet.
claims = None
class-attribute
instance-attribute
The JWT claims of the user, if they are logged in.
user_id = None
class-attribute
instance-attribute
The clerk user ID of the user, if they are logged in.
register_dependent_handler(handler)
classmethod
Register a handler to be called any time this state updates.
I.e. Any events that should be triggered on login/logout.
Source code in custom_components/reflex_clerk_api/clerk_provider.py
61 62 63 64 65 66 67 68 69 70 |
|
set_auth_wait_timeout_seconds(seconds)
classmethod
Sets the max time to wait for initial auth check before running other on_load events.
Note: on_load events will still be run after a timed out auth check. Check ClerkState.auth_checked to see if auth check is complete.
Source code in custom_components/reflex_clerk_api/clerk_provider.py
72 73 74 75 76 77 78 79 |
|
set_claims_options(claims_options)
classmethod
Set the claims options for the JWT claims validation.
Source code in custom_components/reflex_clerk_api/clerk_provider.py
81 82 83 84 |
|
set_clerk_session(token)
async
Manually obtain user session information via the Clerk JWT.
This event is triggered by the frontend via the ClerkSessionSynchronizer/ClerkProvider component.
Source code in custom_components/reflex_clerk_api/clerk_provider.py
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 |
|
clear_clerk_session()
Clear the Clerk session information.
This event is triggered by the frontend via the ClerkSessionSynchronizer/ClerkProvider component.
Source code in custom_components/reflex_clerk_api/clerk_provider.py
125 126 127 128 129 130 131 132 133 134 |
|
wait_for_auth_check(uid)
async
Wait for the Clerk authentication to complete (event sent from frontend).
Can't just use a blocking wait_for_auth_check because we are really waiting for the frontend event trigger to run, so we need to not block that while we wait.
This can then return on_load events once auth_checked is True.
Source code in custom_components/reflex_clerk_api/clerk_provider.py
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 |
|
ClerkUser
Bases: State
Convenience class for using Clerk User information.
This only contains a subset of the information available. Create your own state if you need more.
Note: For this to be updated on login/logout events, it must be registered on the ClerkState.
Source code in custom_components/reflex_clerk_api/clerk_provider.py
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 |
|
ClerkSessionSynchronizer
Bases: Component
ClerkSessionSynchronizer component.
This is slightly adapted from Elliot Kroo's reflex-clerk.
Source code in custom_components/reflex_clerk_api/clerk_provider.py
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 |
|
ClerkProvider
Bases: ClerkBase
ClerkProvider component.
Source code in custom_components/reflex_clerk_api/clerk_provider.py
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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 |
|
after_multi_session_single_sign_out_url = ''
class-attribute
instance-attribute
The URL to navigate to after a successful sign-out from multiple sessions.
after_sign_out_url = ''
class-attribute
instance-attribute
The full URL or path to navigate to after a successful sign-out.
allowed_redirect_origins = []
class-attribute
instance-attribute
An optional list of domains to validate user-provided redirect URLs against.
allowed_redirect_protocols = []
class-attribute
instance-attribute
An optional list of protocols to validate user-provided redirect URLs against.
appearance = None
class-attribute
instance-attribute
Optional object to style your components. Will only affect Clerk components.
clerk_js_url = ''
class-attribute
instance-attribute
Define the URL that @clerk/clerk-js should be hot-loaded from.
clerk_js_variant = None
class-attribute
instance-attribute
If your web application only uses control components, set this to 'headless'.
clerk_js_version = ''
class-attribute
instance-attribute
Define the npm version for @clerk/clerk-js.
domain = ''
class-attribute
instance-attribute
Required if your application is a satellite application. Sets the domain.
dynamic = False
class-attribute
instance-attribute
(For Next.js only) Indicates whether Clerk should make dynamic auth data available.
is_satellite = False
class-attribute
instance-attribute
Whether the application is a satellite application.
nonce = ''
class-attribute
instance-attribute
Nonce value passed to the @clerk/clerk-js script tag for CSP implementation.
publishable_key = ''
class-attribute
instance-attribute
The Clerk Publishable Key for your instance, found on the API keys page in the Clerk Dashboard.
proxy_url = ''
class-attribute
instance-attribute
The URL of the proxy server to use for Clerk API requests.
router_push = None
class-attribute
instance-attribute
A function to push a new route into the history stack for navigation.
router_replace = None
class-attribute
instance-attribute
A function to replace the current route in the history stack for navigation.
sign_in_fallback_redirect_url = '/'
class-attribute
instance-attribute
The fallback URL to redirect to after the user signs in if there's no redirect_url in the path.
sign_up_fallback_redirect_url = '/'
class-attribute
instance-attribute
The fallback URL to redirect to after the user signs up if there's no redirect_url in the path.
sign_in_force_redirect_url = ''
class-attribute
instance-attribute
URL to always redirect to after the user signs in.
sign_up_force_redirect_url = ''
class-attribute
instance-attribute
URL to always redirect to after the user signs up.
sign_in_url = ''
class-attribute
instance-attribute
URL used for any redirects that might happen, pointing to your primary application on the client-side.
sign_up_url = ''
class-attribute
instance-attribute
URL used for any redirects that might happen, pointing to your primary application on the client-side.
standard_browser = True
class-attribute
instance-attribute
Indicates whether ClerkJS assumes cookies can be set (browser setup).
support_email = ''
class-attribute
instance-attribute
Optional support email for display in authentication screens.
sync_host = ''
class-attribute
instance-attribute
URL of the web application that the Chrome Extension will sync the authentication state from.
telemetry = None
class-attribute
instance-attribute
Controls whether Clerk will collect telemetry data.
touch_session = True
class-attribute
instance-attribute
Indicates whether the Clerk Frontend API touch endpoint is called during page focus to keep the last active session alive.
waitlist_url = ''
class-attribute
instance-attribute
The full URL or path to the waitlist page.
on_load(on_load_events)
Use this to wrap any on_load events that should happen after Clerk has checked authentication.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
on_load_events
|
EventType[] | None
|
The events to run after authentication is checked. |
required |
Examples:
app.add_page(..., on_load=clerk.on_load(
Source code in custom_components/reflex_clerk_api/clerk_provider.py
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
|
get_user(current_state)
async
Get the User object from Clerk given the currently logged in user.
Note: Must be used within an event handler in order to get the appropriate clerk_state.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
current_state
|
State
|
The |
required |
Examples:
class State(rx.State):
@rx.event
async def handle_getting_user_email(self) -> EventType:
user = await clerk.get_user(self)
return rx.toast.info(f"User: {user.email}")
Source code in custom_components/reflex_clerk_api/clerk_provider.py
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 |
|
register_on_auth_change_handler(handler)
Register a handler to be called any time the user logs in or out.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
handler
|
EventCallback
|
The event handler function to be called. |
required |
Source code in custom_components/reflex_clerk_api/clerk_provider.py
546 547 548 549 550 551 552 |
|
clerk_provider(*children, publishable_key, secret_key=None, register_user_state=False, appearance=None, **props)
Create a ClerkProvider component to wrap your app/page that uses clerk authentication.
Note: can also use wrap_app
to wrap the entire app.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
children
|
The children components to wrap. |
()
|
|
publishable_key
|
str
|
The Clerk Publishable Key for your instance. |
required |
secret_key
|
str | None
|
Your Clerk app's Secret Key, which you can find in the Clerk Dashboard. It will be prefixed with sk_test_ in development instances and sk_live_ in production instances. Do not expose this on the frontend with a public environment variable. |
None
|
register_user_state
|
bool
|
Whether to register the ClerkUser state to automatically load user information on login. |
False
|
appearance
|
Appearance | None
|
Optional object to style your components. Will only affect Clerk components. |
None
|
Source code in custom_components/reflex_clerk_api/clerk_provider.py
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 |
|
wrap_app(app, publishable_key, secret_key=None, register_user_state=False, appearance=None, **props)
Wraps the entire app with the ClerkProvider.
For multi-page apps where all pages require Clerk authentication components (including knowing if the user is not signed in).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app
|
App
|
The Reflex app to wrap. |
required |
publishable_key
|
str
|
The Clerk Publishable Key for your instance. |
required |
secret_key
|
str | None
|
Your Clerk app's Secret Key. (not needed for frontend only) |
None
|
register_user_state
|
bool
|
Whether to register the ClerkUser state to automatically load user information on login. |
False
|
Source code in custom_components/reflex_clerk_api/clerk_provider.py
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 |
|