123 lines
3.3 KiB
TypeScript
123 lines
3.3 KiB
TypeScript
import { COSMOS_MAINNET_CHAINS, TCosmosChain } from '@/data/COSMOSData'
|
|
import ModalStore from '@/store/ModalStore'
|
|
import { approveCosmosRequest, rejectCosmosRequest } from '@/utils/CosmosRequestHandler'
|
|
import { walletConnectClient } from '@/utils/WalletConnectUtil'
|
|
import { Avatar, Button, Col, Container, Divider, Link, Modal, Row, Text } from '@nextui-org/react'
|
|
import { Fragment } from 'react'
|
|
import { CodeBlock, codepen } from 'react-code-blocks'
|
|
|
|
export default function SessionSignCosmosModal() {
|
|
// 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 { chainId } = requestEvent
|
|
const { method, params } = requestEvent.request
|
|
const { protocol } = requestSession.relay
|
|
const { name, icons, url } = requestSession.peer.metadata
|
|
|
|
// Handle approve action (logic varies based on request method)
|
|
async function onApprove() {
|
|
if (requestEvent) {
|
|
const response = await approveCosmosRequest(requestEvent)
|
|
await walletConnectClient.respond({
|
|
topic: requestEvent.topic,
|
|
response
|
|
})
|
|
ModalStore.close()
|
|
}
|
|
}
|
|
|
|
// Handle reject action
|
|
async function onReject() {
|
|
if (requestEvent) {
|
|
const response = rejectCosmosRequest(requestEvent.request)
|
|
await walletConnectClient.respond({
|
|
topic: requestEvent.topic,
|
|
response
|
|
})
|
|
ModalStore.close()
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Fragment>
|
|
<Modal.Header>
|
|
<Text h3>Sign Message</Text>
|
|
</Modal.Header>
|
|
|
|
<Modal.Body>
|
|
<Container css={{ padding: 0 }}>
|
|
<Row align="center">
|
|
<Col span={3}>
|
|
<Avatar src={icons[0]} />
|
|
</Col>
|
|
<Col span={14}>
|
|
<Text h5>{name}</Text>
|
|
<Link href={url}>{url}</Link>
|
|
</Col>
|
|
</Row>
|
|
|
|
<Divider y={2} />
|
|
|
|
<Row>
|
|
<Col>
|
|
<Text h5>Blockchain</Text>
|
|
<Text color="$gray400">
|
|
{COSMOS_MAINNET_CHAINS[chainId as TCosmosChain]?.name ?? chainId}
|
|
</Text>
|
|
</Col>
|
|
</Row>
|
|
|
|
<Divider y={2} />
|
|
|
|
<Row>
|
|
<Col>
|
|
<Text h5>Data</Text>
|
|
<CodeBlock
|
|
showLineNumbers={false}
|
|
text={JSON.stringify(params, null, 2)}
|
|
theme={codepen}
|
|
language="json"
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
|
|
<Divider y={2} />
|
|
|
|
<Row>
|
|
<Col>
|
|
<Text h5>Method</Text>
|
|
<Text color="$gray400">{method}</Text>
|
|
</Col>
|
|
</Row>
|
|
|
|
<Divider y={2} />
|
|
|
|
<Row>
|
|
<Col>
|
|
<Text h5>Relay Protocol</Text>
|
|
<Text color="$gray400">{protocol}</Text>
|
|
</Col>
|
|
</Row>
|
|
</Container>
|
|
</Modal.Body>
|
|
|
|
<Modal.Footer>
|
|
<Button auto flat color="error" onClick={onReject}>
|
|
Reject
|
|
</Button>
|
|
<Button auto flat color="success" onClick={onApprove}>
|
|
Approve
|
|
</Button>
|
|
</Modal.Footer>
|
|
</Fragment>
|
|
)
|
|
}
|