stargaze-studio/pages/collections/warmup.tsx

219 lines
7.0 KiB
TypeScript
Raw Normal View History

2023-01-19 10:30:16 +00:00
/* eslint-disable eslint-comments/disable-enable-pair */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
2023-01-19 07:34:28 +00:00
import axios from 'axios'
import { Button } from 'components/Button'
import { ContractPageHeader } from 'components/ContractPageHeader'
import { AddressInput } from 'components/forms/FormInput'
import { useInputState } from 'components/forms/FormInput.hooks'
import Lister from 'components/Lister'
import { useContracts } from 'contexts/contracts'
2023-01-19 10:30:16 +00:00
import { dispatchQuery } from 'contracts/vendingMinter/messages/query'
2023-01-19 07:34:28 +00:00
import type { NextPage } from 'next'
2023-01-19 09:12:57 +00:00
import { useRouter } from 'next/router'
2023-01-19 07:34:28 +00:00
import { NextSeo } from 'next-seo'
2023-01-19 10:30:16 +00:00
import { useEffect, useState } from 'react'
2023-01-19 07:34:28 +00:00
import { toast } from 'react-hot-toast'
import { useQuery } from 'react-query'
import { withMetadata } from 'utils/layout'
import { links } from 'utils/links'
2023-01-19 10:30:16 +00:00
import { useWallet } from '../../contexts/wallet'
2023-01-19 07:34:28 +00:00
const CollectionQueriesPage: NextPage = () => {
2023-01-19 10:30:16 +00:00
const { vendingMinter: vendingMinterContract } = useContracts()
const wallet = useWallet()
2023-01-19 07:34:28 +00:00
const [doneList, setDoneList] = useState<number[]>([])
const [processList, setProcessList] = useState<number[]>([])
2023-01-19 09:12:57 +00:00
const [errorList, setErrorList] = useState<number[]>([])
2023-01-19 07:34:28 +00:00
const [numTokens, setNumTokens] = useState(0)
2023-01-19 10:30:16 +00:00
const [percentage, setPercentage] = useState(0)
2023-01-19 07:34:28 +00:00
const minterContractState = useInputState({
id: 'minter-contract-address',
name: 'minter-contract-address',
2023-01-19 10:30:16 +00:00
title: 'Minter Contract Address',
defaultValue: '',
placeholder: 'stars1...',
2023-01-19 07:34:28 +00:00
})
const minterContractAddress = minterContractState.value
2023-01-19 09:12:57 +00:00
const router = useRouter()
useEffect(() => {
2023-01-19 10:30:16 +00:00
if (minterContractAddress.length > 0) {
2023-01-19 09:12:57 +00:00
void router.replace({ query: { minterContractAddress } })
}
2023-01-19 10:30:16 +00:00
}, [minterContractAddress])
2023-01-19 09:12:57 +00:00
useEffect(() => {
const initial = new URL(document.URL).searchParams.get('minterContractAddress')
if (initial && initial.length > 0) minterContractState.onChange(initial)
}, [])
2023-01-19 07:34:28 +00:00
const { data: response } = useQuery(
2023-01-19 10:30:16 +00:00
[minterContractAddress, vendingMinterContract, wallet] as const,
async () => {
const messages = vendingMinterContract?.use(minterContractAddress)
2023-01-19 07:34:28 +00:00
const result = await dispatchQuery({
2023-01-19 10:30:16 +00:00
address: '',
messages,
type: 'config',
2023-01-19 07:34:28 +00:00
})
return result
},
{
placeholderData: null,
onError: (error: any) => {
toast.error(error.message, { style: { maxWidth: 'none' } })
},
2023-01-19 10:30:16 +00:00
enabled: Boolean(minterContractAddress && vendingMinterContract),
2023-01-19 07:34:28 +00:00
},
)
useEffect(() => {
if (response) {
setNumTokens(response['num_tokens'])
2023-01-19 10:30:16 +00:00
setPercentage(0)
2023-01-19 09:12:57 +00:00
setDoneList([])
setProcessList([])
setErrorList([])
} else setNumTokens(0)
2023-01-19 07:34:28 +00:00
}, [response])
useEffect(() => {
2023-01-19 10:30:16 +00:00
if (numTokens !== 0) setPercentage((100 * doneList.length) / numTokens)
else setPercentage(0)
2023-01-19 07:34:28 +00:00
}, [doneList.length, numTokens])
function chooseAlternate(url: string, attempt: number) {
let alternate
switch (attempt) {
case 1: {
2023-01-19 09:12:57 +00:00
alternate = url.replace('ipfs://', 'https://cf-ipfs.com/ipfs/')
2023-01-19 07:34:28 +00:00
break
}
case 2: {
alternate = url.replace('ipfs://', 'https://ipfs.io/ipfs/')
break
}
case 3: {
2023-01-19 09:12:57 +00:00
alternate = url.replace('ipfs://', 'https://ipfs-gw.stargaze-apis.com/ipfs/')
2023-01-19 07:34:28 +00:00
break
}
default: {
2023-01-19 09:12:57 +00:00
alternate = url.replace('ipfs://', 'https://ipfs.stargaze.zone/ipfs/')
2023-01-19 07:34:28 +00:00
break
}
}
return alternate
}
async function warmOne(i: number, image: string, attempt: number, totalAttempt: number) {
setProcessList((existingItems) => {
return [i, ...existingItems]
})
const link = image.replace('1', i.toString())
try {
const result = await axios.get(chooseAlternate(link, attempt))
if (result.status === 200) {
setDoneList((existingItems) => {
return [i, ...existingItems]
})
setProcessList((existingItems) => {
const index = existingItems.indexOf(i, 0)
if (index > -1) {
existingItems.splice(index, 1)
}
return existingItems
})
return
}
} catch (e) {
2023-01-19 10:30:16 +00:00
console.log('error: ', i, e)
2023-01-19 07:34:28 +00:00
}
if (totalAttempt !== 4) {
void warmOne(i, image, attempt === 3 ? 0 : attempt + 1, attempt === 3 ? totalAttempt + 1 : totalAttempt)
2023-01-19 09:12:57 +00:00
} else {
setErrorList((existingItems) => {
return [i, ...existingItems]
})
setProcessList((existingItems) => {
const index = existingItems.indexOf(i, 0)
if (index > -1) {
existingItems.splice(index, 1)
}
return existingItems
})
2023-01-19 07:34:28 +00:00
}
}
async function warmingProcess(url: string, attempt: number) {
const link = `${chooseAlternate(url, attempt)}/1`
try {
const { data, status } = await axios.get(link)
if (status === 200) {
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
for (let i = 1; i <= response['num_tokens']; i++) {
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
void warmOne(i, data.image, 0, 0)
}
} else if (attempt < 3) {
void warmingProcess(url, attempt + 1)
} else toast.error('File can not be reachable at the moment! Please try again later...')
} catch (e) {
console.log(e)
}
}
return (
<section className="py-6 px-12 space-y-4">
2023-01-19 10:30:16 +00:00
<NextSeo title="Collection Warm Up" />
2023-01-19 07:34:28 +00:00
<ContractPageHeader
2023-01-19 10:30:16 +00:00
description="Here you can pre-warm your collection for improved IPFS performance."
2023-01-19 07:34:28 +00:00
link={links.Documentation}
2023-01-19 10:30:16 +00:00
title="Collection Warm Up"
2023-01-19 07:34:28 +00:00
/>
<div className="space-y-8">
<AddressInput {...minterContractState} />
</div>
<div className="flex flex-row">
<div className="flex flex-col mr-20 w-4/5 text-xl border border-stargaze">
<div className="flex flex-row w-full text-center">
<div className="w-1/3">Total</div>
<div className="w-1/3">Warmed</div>
<div className="w-1/3">Percentage</div>
</div>
<div className="flex flex-row w-full text-center">
<div className="w-1/3">{numTokens}</div>
<div className="w-1/3">{doneList.length}</div>
2023-01-19 10:30:16 +00:00
<div className="w-1/3">{(Math.round(percentage * 100) / 100).toFixed(2)}%</div>
2023-01-19 07:34:28 +00:00
</div>
</div>
<div>
<Button
isDisabled={!response}
onClick={() => {
2023-01-19 09:12:57 +00:00
setDoneList([])
setProcessList([])
setErrorList([])
2023-01-19 07:34:28 +00:00
void warmingProcess(response['base_token_uri'], 0)
}}
>
Start
</Button>
</div>
</div>
<div className="grid grid-cols-5 p-4 space-x-8">
2023-01-19 09:12:57 +00:00
{errorList.map((value: number, index: number) => {
2023-01-19 07:34:28 +00:00
return <Lister key={index.toString()} data={value.toString()} />
})}
</div>
</section>
)
}
export default withMetadata(CollectionQueriesPage, { center: false })