-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into chore/da/backend
- Loading branch information
Showing
9 changed files
with
222 additions
and
57 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
78 changes: 78 additions & 0 deletions
78
infra/rooch-portal-v2/src/components/auth/session-key-guard-button-v1.tsx
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,78 @@ | ||
import type { ReactNode } from 'react'; | ||
|
||
import { useState, useEffect } from 'react'; | ||
import { useCurrentSession, useCreateSessionKey } from '@roochnetwork/rooch-sdk-kit'; | ||
|
||
import { LoadingButton } from '@mui/lab'; | ||
|
||
import { isSessionExpired } from 'src/utils/common'; | ||
|
||
import { toast } from 'src/components/snackbar'; | ||
|
||
export default function SessionKeyGuardButtonV1({ children, desc, callback }: { children?: ReactNode, desc?: string, callback?: () => Promise<void> }) { | ||
const sessionKey = useCurrentSession(); | ||
const { mutateAsync: createSessionKey } = useCreateSessionKey(); | ||
const [loading, setLoading] = useState(false); | ||
|
||
const [isCurrentSessionExpired, setIsCurrentSessionExpired] = useState(false); | ||
|
||
useEffect(() => { | ||
if (sessionKey) { | ||
const sessionKeyJson = sessionKey.toJSON(); | ||
const { lastActiveTime, maxInactiveInterval } = sessionKeyJson; | ||
if (isSessionExpired(Number(lastActiveTime), Number(maxInactiveInterval))) { | ||
setIsCurrentSessionExpired(true); | ||
} | ||
} | ||
}, [sessionKey]); | ||
|
||
const handle = async () => { | ||
setLoading(true) | ||
if (sessionKey && !isCurrentSessionExpired) { | ||
if (callback) { | ||
await callback() | ||
} | ||
} else { | ||
try { | ||
await createSessionKey({ | ||
appName: 'rooch-portal', | ||
appUrl: 'portal.rooch.network', | ||
scopes: [ | ||
'0x1::*::*', | ||
'0x3::*::*', | ||
'0x176214bed3764a1c6a43dc1add387be5578ff8dbc263369f5bdc33a885a501ae::*::*', | ||
'0x701c21bf1c8cd5af8c42983890d8ca55e7a820171b8e744c13f2d9998bf76cc3::*::*', | ||
], | ||
maxInactiveInterval: 60 * 60 * 8, | ||
}); | ||
if (callback) { | ||
await callback() | ||
} | ||
} catch (error) { | ||
if (error.message) { | ||
toast.error(error.message); | ||
return; | ||
} | ||
toast.error(String(error)); | ||
} | ||
} | ||
|
||
setLoading(false) | ||
} | ||
|
||
return sessionKey && !isCurrentSessionExpired && children ? ( | ||
children | ||
) : ( | ||
<LoadingButton | ||
style={{ width: 'auto' }} | ||
variant={sessionKey ? 'soft' : 'contained'} | ||
color={sessionKey ? 'error' : 'primary'} | ||
loading={loading} | ||
onClick={handle} | ||
> | ||
{ | ||
desc || 'Create Session Key' | ||
} | ||
</LoadingButton> | ||
); | ||
} |
Oops, something went wrong.