diff --git a/pages/contracts/royaltyRegistry/query.tsx b/pages/contracts/royaltyRegistry/query.tsx new file mode 100644 index 0000000..b292006 --- /dev/null +++ b/pages/contracts/royaltyRegistry/query.tsx @@ -0,0 +1,140 @@ +import clsx from 'clsx' +import { Conditional } from 'components/Conditional' +import { ContractPageHeader } from 'components/ContractPageHeader' +import { FormControl } from 'components/FormControl' +import { AddressInput } from 'components/forms/FormInput' +import { useInputState } from 'components/forms/FormInput.hooks' +import { JsonPreview } from 'components/JsonPreview' +import { LinkTabs } from 'components/LinkTabs' +import { royaltyRegistryLinkTabs } from 'components/LinkTabs.data' +import { useContracts } from 'contexts/contracts' +import { useWallet } from 'contexts/wallet' +import type { QueryType } from 'contracts/royaltyRegistry/messages/query' +import { dispatchQuery, QUERY_LIST } from 'contracts/royaltyRegistry/messages/query' +import type { NextPage } from 'next' +import { useRouter } from 'next/router' +import { NextSeo } from 'next-seo' +import { useEffect, useState } from 'react' +import { toast } from 'react-hot-toast' +import { useQuery } from 'react-query' +import { ROYALTY_REGISTRY_ADDRESS } from 'utils/constants' +import { withMetadata } from 'utils/layout' +import { links } from 'utils/links' +import { resolveAddress } from 'utils/resolveAddress' + +const RoyaltyRegistryQueryPage: NextPage = () => { + const { royaltyRegistry: contract } = useContracts() + const wallet = useWallet() + + const contractState = useInputState({ + id: 'contract-address', + name: 'contract-address', + title: 'Royalty Registry Address', + subtitle: 'Address of the Royalty Registry contract', + defaultValue: ROYALTY_REGISTRY_ADDRESS, + }) + const contractAddress = contractState.value + + const collectionAddressState = useInputState({ + id: 'collection-address', + name: 'collection-address', + title: 'Collection Address', + subtitle: 'Address of the collection', + }) + + const protocolAddressState = useInputState({ + id: 'protocol-address', + name: 'protocol-address', + title: 'Protocol Address', + subtitle: 'Address of the protocol', + }) + + const collectionAddress = collectionAddressState.value + const protocolAddress = protocolAddressState.value + + const [type, setType] = useState('config') + + const { data: response } = useQuery( + [contractAddress, type, contract, wallet, collectionAddress, protocolAddress] as const, + async ({ queryKey }) => { + const [_contractAddress, _type, _contract, _wallet, _collectionAddress, _protocolAddress] = queryKey + const messages = contract?.use(contractAddress) + const res = await resolveAddress(_collectionAddress, wallet).then(async (resolvedAddress) => { + const result = await dispatchQuery({ + messages, + type, + collection: resolvedAddress, + protocol: _protocolAddress, + }) + return result + }) + return res + }, + { + placeholderData: null, + onError: (error: any) => { + toast.error(error.message, { style: { maxWidth: 'none' } }) + }, + enabled: Boolean(contractAddress && contract && wallet), + }, + ) + + const router = useRouter() + + useEffect(() => { + if (contractAddress.length > 0) { + void router.replace({ query: { contractAddress } }) + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [contractAddress]) + useEffect(() => { + const initial = new URL(document.URL).searchParams.get('contractAddress') + if (initial && initial.length > 0) contractState.onChange(initial) + }, []) + + return ( +
+ + + + +
+
+ + + + + + + + + + +
+ +
+
+ ) +} + +export default withMetadata(RoyaltyRegistryQueryPage, { center: false })