-
Notifications
You must be signed in to change notification settings - Fork 470
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created client-side loading crypto providers
- Loading branch information
1 parent
142582c
commit 8f688f0
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
'use client'; | ||
|
||
import { useEffect, useState } from 'react'; | ||
import { useErrors } from 'apps/web/contexts/Errors'; | ||
|
||
// RigidBody cannot be imported using dynamic() due to some import issues | ||
export function DynamicCryptoProviders({ children }: { children: React.ReactNode }) { | ||
const [CryptoProvidersDynamic, setCryptoProvidersDynamic] = useState<React.ComponentType<{ children: React.ReactNode }>>(); | ||
const { logError } = useErrors(); | ||
|
||
// Import needs to happens on render | ||
useEffect(() => { | ||
import('apps/web/app/CryptoProviders') | ||
.then((mod) => { | ||
setCryptoProvidersDynamic(() => mod.default); | ||
}) | ||
.catch((error) => logError(error, 'Failed to load CryptoProviders')); | ||
}, [logError]); | ||
|
||
if (!CryptoProvidersDynamic) return null; | ||
|
||
return <CryptoProvidersDynamic>{children}</CryptoProvidersDynamic>; | ||
} |