* feat: implements just works in example dapp * feat: implements just works in example wallet * feat: adds toast on app pairing attempt * chore: updates canary * refactor: resets app only after successful disconnect * chore: updates wallet canary * fix: modal state * chore: updates canary to rc * fix: session update & session events * fix: fixes accounts changed and updates canary * chore: updates dapp canary * chore: updates examples to latest --------- Co-authored-by: Gancho Radkov <ganchoradkov@gmail.com>
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
import ProjectInfoCard from '@/components/ProjectInfoCard'
|
|
import RequestDataCard from '@/components/RequestDataCard'
|
|
import RequesDetailsCard from '@/components/RequestDetalilsCard'
|
|
import RequestMethodCard from '@/components/RequestMethodCard'
|
|
import RequestModalContainer from '@/components/RequestModalContainer'
|
|
import ModalStore from '@/store/ModalStore'
|
|
import { styledToast } from '@/utils/HelperUtil'
|
|
import { approveSolanaRequest, rejectSolanaRequest } from '@/utils/SolanaRequestHandlerUtil'
|
|
import { signClient } from '@/utils/WalletConnectUtil'
|
|
import { Button, Divider, Modal, Text } from '@nextui-org/react'
|
|
import { Fragment } from 'react'
|
|
|
|
export default function SessionSignSolanaModal() {
|
|
// Get request and wallet data from store
|
|
const requestEvent = ModalStore.state.data?.requestEvent
|
|
const requestSession = ModalStore.state.data?.requestSession
|
|
|
|
// Ensure request and wallet are defined
|
|
if (!requestEvent || !requestSession) {
|
|
return <Text>Missing request data</Text>
|
|
}
|
|
|
|
// Get required request data
|
|
const { topic, params } = requestEvent
|
|
const { request, chainId } = params
|
|
|
|
// Handle approve action (logic varies based on request method)
|
|
async function onApprove() {
|
|
if (requestEvent) {
|
|
const response = await approveSolanaRequest(requestEvent)
|
|
try {
|
|
await signClient.respond({
|
|
topic,
|
|
response
|
|
})
|
|
} catch (e) {
|
|
styledToast((e as Error).message, 'error')
|
|
return
|
|
}
|
|
ModalStore.close()
|
|
}
|
|
}
|
|
|
|
// Handle reject action
|
|
async function onReject() {
|
|
if (requestEvent) {
|
|
const response = rejectSolanaRequest(requestEvent)
|
|
try {
|
|
await signClient.respond({
|
|
topic,
|
|
response
|
|
})
|
|
} catch (e) {
|
|
styledToast((e as Error).message, 'error')
|
|
return
|
|
}
|
|
ModalStore.close()
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Fragment>
|
|
<RequestModalContainer title="Sign Message">
|
|
<ProjectInfoCard metadata={requestSession.peer.metadata} />
|
|
|
|
<Divider y={2} />
|
|
|
|
<RequesDetailsCard chains={[chainId ?? '']} protocol={requestSession.relay.protocol} />
|
|
|
|
<Divider y={2} />
|
|
|
|
<RequestDataCard data={params} />
|
|
|
|
<Divider y={2} />
|
|
|
|
<RequestMethodCard methods={[request.method]} />
|
|
</RequestModalContainer>
|
|
|
|
<Modal.Footer>
|
|
<Button auto flat color="error" onClick={onReject}>
|
|
Reject
|
|
</Button>
|
|
<Button auto flat color="success" onClick={onApprove}>
|
|
Approve
|
|
</Button>
|
|
</Modal.Footer>
|
|
</Fragment>
|
|
)
|
|
}
|