393 lines
14 KiB
TypeScript
393 lines
14 KiB
TypeScript
/* eslint-disable eslint-comments/disable-enable-pair */
|
||
/* eslint-disable no-nested-ternary */
|
||
/* eslint-disable jsx-a11y/media-has-caption */
|
||
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
||
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
||
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
||
|
||
import clsx from 'clsx'
|
||
import { Conditional } from 'components/Conditional'
|
||
import { FormControl } from 'components/FormControl'
|
||
import { FormGroup } from 'components/FormGroup'
|
||
import { useInputState } from 'components/forms/FormInput.hooks'
|
||
import { InputDateTime } from 'components/InputDateTime'
|
||
import { Tooltip } from 'components/Tooltip'
|
||
import { useGlobalSettings } from 'contexts/globalSettings'
|
||
import { addLogItem } from 'contexts/log'
|
||
import type { ChangeEvent } from 'react'
|
||
import { useEffect, useMemo, useRef, useState } from 'react'
|
||
import { toast } from 'react-hot-toast'
|
||
import { OPEN_EDITION_UPDATABLE_FACTORY_ADDRESS, SG721_OPEN_EDITION_UPDATABLE_CODE_ID } from 'utils/constants'
|
||
import { getAssetType } from 'utils/getAssetType'
|
||
import { uid } from 'utils/random'
|
||
|
||
import { TextInput } from '../forms/FormInput'
|
||
import type { UploadMethod } from './OffChainMetadataUploadDetails'
|
||
import type { MetadataStorageMethod } from './OpenEditionMinterCreator'
|
||
|
||
interface CollectionDetailsProps {
|
||
onChange: (data: CollectionDetailsDataProps) => void
|
||
uploadMethod: UploadMethod
|
||
coverImageUrl: string
|
||
metadataStorageMethod: MetadataStorageMethod
|
||
importedCollectionDetails?: CollectionDetailsDataProps
|
||
}
|
||
|
||
export interface CollectionDetailsDataProps {
|
||
name: string
|
||
description: string
|
||
symbol: string
|
||
imageFile: File[]
|
||
externalLink?: string
|
||
startTradingTime?: string
|
||
explicit: boolean
|
||
updatable: boolean
|
||
}
|
||
|
||
export const CollectionDetails = ({
|
||
onChange,
|
||
uploadMethod,
|
||
metadataStorageMethod,
|
||
coverImageUrl,
|
||
importedCollectionDetails,
|
||
}: CollectionDetailsProps) => {
|
||
const [coverImage, setCoverImage] = useState<File | null>(null)
|
||
const [timestamp, setTimestamp] = useState<Date | undefined>()
|
||
const [explicit, setExplicit] = useState<boolean>(false)
|
||
const [updatable, setUpdatable] = useState<boolean>(false)
|
||
const { timezone } = useGlobalSettings()
|
||
|
||
const initialRender = useRef(true)
|
||
|
||
const coverImageInputRef = useRef<HTMLInputElement>(null)
|
||
|
||
const nameState = useInputState({
|
||
id: 'name',
|
||
name: 'name',
|
||
title: 'Name',
|
||
placeholder: 'My Awesome Collection',
|
||
})
|
||
|
||
const descriptionState = useInputState({
|
||
id: 'description',
|
||
name: 'description',
|
||
title: 'Description',
|
||
placeholder: 'My Awesome Collection Description',
|
||
})
|
||
|
||
const symbolState = useInputState({
|
||
id: 'symbol',
|
||
name: 'symbol',
|
||
title: 'Symbol',
|
||
placeholder: 'SYMBOL',
|
||
})
|
||
|
||
const externalLinkState = useInputState({
|
||
id: 'external-link',
|
||
name: 'externalLink',
|
||
title: 'External Link (optional)',
|
||
placeholder: 'https://my-collection...',
|
||
})
|
||
|
||
useEffect(() => {
|
||
try {
|
||
const data: CollectionDetailsDataProps = {
|
||
name: nameState.value,
|
||
description: descriptionState.value,
|
||
symbol: symbolState.value,
|
||
imageFile: coverImage ? [coverImage] : [],
|
||
externalLink: externalLinkState.value || undefined,
|
||
startTradingTime: timestamp ? (timestamp.getTime() * 1_000_000).toString() : '',
|
||
explicit,
|
||
updatable,
|
||
}
|
||
onChange(data)
|
||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||
} catch (error: any) {
|
||
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||
addLogItem({ id: uid(), message: error.message, type: 'Error', timestamp: new Date() })
|
||
}
|
||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||
}, [
|
||
nameState.value,
|
||
descriptionState.value,
|
||
symbolState.value,
|
||
externalLinkState.value,
|
||
coverImage,
|
||
timestamp,
|
||
explicit,
|
||
updatable,
|
||
])
|
||
|
||
const selectCoverImage = (event: ChangeEvent<HTMLInputElement>) => {
|
||
if (event.target.files === null) return toast.error('Error selecting cover image')
|
||
if (event.target.files.length === 0) {
|
||
setCoverImage(null)
|
||
return toast.error('No files selected.')
|
||
}
|
||
const reader = new FileReader()
|
||
reader.onload = (e) => {
|
||
if (!e.target?.result) return toast.error('Error parsing file.')
|
||
if (!event.target.files) return toast.error('No files selected.')
|
||
const imageFile = new File([e.target.result], event.target.files[0].name, { type: 'image/jpg' })
|
||
setCoverImage(imageFile)
|
||
}
|
||
reader.readAsArrayBuffer(event.target.files[0])
|
||
}
|
||
|
||
useEffect(() => {
|
||
setCoverImage(null)
|
||
// empty the element so that the same file can be selected again
|
||
if (coverImageInputRef.current) coverImageInputRef.current.value = ''
|
||
}, [metadataStorageMethod])
|
||
|
||
useEffect(() => {
|
||
if (initialRender.current) {
|
||
initialRender.current = false
|
||
} else if (updatable) {
|
||
toast.success('Token metadata will be updatable upon collection creation.', {
|
||
style: { maxWidth: 'none' },
|
||
icon: '✅📝',
|
||
})
|
||
} else {
|
||
toast.error('Token metadata will not be updatable upon collection creation.', {
|
||
style: { maxWidth: 'none' },
|
||
icon: '⛔🔏',
|
||
})
|
||
}
|
||
}, [updatable])
|
||
|
||
useEffect(() => {
|
||
if (importedCollectionDetails) {
|
||
nameState.onChange(importedCollectionDetails.name)
|
||
descriptionState.onChange(importedCollectionDetails.description)
|
||
symbolState.onChange(importedCollectionDetails.symbol)
|
||
//setCoverImage(importedCollectionDetails.imageFile[0] || null)
|
||
externalLinkState.onChange(importedCollectionDetails.externalLink || '')
|
||
setTimestamp(
|
||
importedCollectionDetails.startTradingTime
|
||
? new Date(parseInt(importedCollectionDetails.startTradingTime) / 1_000_000)
|
||
: undefined,
|
||
)
|
||
setExplicit(importedCollectionDetails.explicit)
|
||
setUpdatable(importedCollectionDetails.updatable)
|
||
}
|
||
}, [importedCollectionDetails])
|
||
|
||
const videoPreview = useMemo(() => {
|
||
if (uploadMethod === 'new' && coverImage) {
|
||
return (
|
||
<video
|
||
controls
|
||
id="video"
|
||
onMouseEnter={(e) => e.currentTarget.play()}
|
||
onMouseLeave={(e) => e.currentTarget.pause()}
|
||
src={URL.createObjectURL(coverImage)}
|
||
/>
|
||
)
|
||
} else if (uploadMethod === 'existing' && coverImageUrl && coverImageUrl.includes('ipfs://')) {
|
||
return (
|
||
<video
|
||
controls
|
||
id="video"
|
||
onMouseEnter={(e) => e.currentTarget.play()}
|
||
onMouseLeave={(e) => e.currentTarget.pause()}
|
||
src={`https://ipfs-gw.stargaze-apis.com/ipfs/${coverImageUrl.substring(
|
||
coverImageUrl.lastIndexOf('ipfs://') + 7,
|
||
)}`}
|
||
/>
|
||
)
|
||
} else if (uploadMethod === 'existing' && coverImageUrl && !coverImageUrl.includes('ipfs://')) {
|
||
return (
|
||
<video
|
||
controls
|
||
id="video"
|
||
onMouseEnter={(e) => e.currentTarget.play()}
|
||
onMouseLeave={(e) => e.currentTarget.pause()}
|
||
src={coverImageUrl}
|
||
/>
|
||
)
|
||
}
|
||
}, [coverImage, coverImageUrl, uploadMethod])
|
||
|
||
return (
|
||
<div>
|
||
<FormGroup subtitle="Information about your collection" title="Collection Details">
|
||
<div className={clsx('')}>
|
||
<div className="">
|
||
<TextInput {...nameState} isRequired />
|
||
<TextInput className="mt-2" {...descriptionState} isRequired />
|
||
<TextInput className="mt-2" {...symbolState} isRequired />
|
||
</div>
|
||
<div className={clsx('')}>
|
||
<TextInput className={clsx('mt-2')} {...externalLinkState} />
|
||
{/* Currently trading starts immediately for 1/1 Collections */}
|
||
|
||
<FormControl
|
||
className={clsx('mt-2')}
|
||
htmlId="timestamp"
|
||
subtitle="Trading start time offset will be set as 2 weeks by default."
|
||
title={`Trading Start Time (optional | ${timezone === 'Local' ? 'local)' : 'UTC)'}`}
|
||
>
|
||
<InputDateTime
|
||
minDate={
|
||
timezone === 'Local' ? new Date() : new Date(Date.now() + new Date().getTimezoneOffset() * 60 * 1000)
|
||
}
|
||
onChange={(date) =>
|
||
setTimestamp(
|
||
timezone === 'Local' ? date : new Date(date.getTime() - new Date().getTimezoneOffset() * 60 * 1000),
|
||
)
|
||
}
|
||
value={
|
||
timezone === 'Local'
|
||
? timestamp
|
||
: timestamp
|
||
? new Date(timestamp.getTime() + new Date().getTimezoneOffset() * 60 * 1000)
|
||
: undefined
|
||
}
|
||
/>
|
||
</FormControl>
|
||
</div>
|
||
</div>
|
||
|
||
<FormControl className={clsx('')} isRequired={uploadMethod === 'new'} title="Cover Image">
|
||
{uploadMethod === 'new' && (
|
||
<input
|
||
accept="image/*, video/*"
|
||
className={clsx(
|
||
'w-full',
|
||
'p-[13px] rounded border-2 border-white/20 border-dashed cursor-pointer h-18',
|
||
'file:py-2 file:px-4 file:mr-4 file:bg-plumbus-light file:rounded file:border-0 cursor-pointer',
|
||
'before:hover:bg-white/5 before:transition',
|
||
)}
|
||
id="cover-image"
|
||
onChange={selectCoverImage}
|
||
ref={coverImageInputRef}
|
||
type="file"
|
||
/>
|
||
)}
|
||
|
||
<Conditional
|
||
test={coverImage !== null && uploadMethod === 'new' && getAssetType(coverImage.name) === 'image'}
|
||
>
|
||
{coverImage !== null && (
|
||
<div className="max-w-[200px] max-h-[200px] rounded border-2">
|
||
<img alt="no-preview-available" src={URL.createObjectURL(coverImage)} />
|
||
</div>
|
||
)}
|
||
</Conditional>
|
||
<Conditional
|
||
test={coverImage !== null && uploadMethod === 'new' && getAssetType(coverImage.name) === 'video'}
|
||
>
|
||
{coverImage !== null && videoPreview}
|
||
</Conditional>
|
||
|
||
{uploadMethod === 'existing' && coverImageUrl?.includes('ipfs://') && (
|
||
<div className="max-w-[200px] max-h-[200px] rounded border-2">
|
||
<Conditional test={getAssetType(coverImageUrl) !== 'video'}>
|
||
<img
|
||
alt="no-preview-available"
|
||
src={`https://ipfs-gw.stargaze-apis.com/ipfs/${coverImageUrl.substring(
|
||
coverImageUrl.lastIndexOf('ipfs://') + 7,
|
||
)}`}
|
||
/>
|
||
</Conditional>
|
||
<Conditional test={getAssetType(coverImageUrl) === 'video'}>{videoPreview}</Conditional>
|
||
</div>
|
||
)}
|
||
{uploadMethod === 'existing' && coverImageUrl && !coverImageUrl?.includes('ipfs://') && (
|
||
<div>
|
||
<div className="max-w-[200px] max-h-[200px] rounded border-2">
|
||
<Conditional test={getAssetType(coverImageUrl) !== 'video'}>
|
||
<img alt="no-preview-available" src={coverImageUrl} />
|
||
</Conditional>
|
||
<Conditional test={getAssetType(coverImageUrl) === 'video'}>{videoPreview}</Conditional>
|
||
</div>
|
||
</div>
|
||
)}
|
||
{uploadMethod === 'existing' && !coverImageUrl && (
|
||
<span className="italic font-light ">Waiting for cover image URL to be specified.</span>
|
||
)}
|
||
</FormControl>
|
||
|
||
<div className={clsx('flex flex-col space-y-2')}>
|
||
<div>
|
||
<div className="flex mt-4">
|
||
<span className="mt-1 ml-[2px] text-sm first-letter:capitalize">
|
||
Does the collection contain explicit content?
|
||
</span>
|
||
<div className="ml-2 font-bold form-check form-check-inline">
|
||
<input
|
||
checked={explicit}
|
||
className="peer sr-only"
|
||
id="explicitRadio1"
|
||
name="explicitRadioOptions1"
|
||
onClick={() => {
|
||
setExplicit(true)
|
||
}}
|
||
type="radio"
|
||
/>
|
||
<label
|
||
className="inline-block py-1 px-2 text-sm text-gray peer-checked:text-white hover:text-white peer-checked:bg-black hover:rounded-sm peer-checked:border-b-2 hover:border-b-2 peer-checked:border-plumbus hover:border-plumbus cursor-pointer form-check-label"
|
||
htmlFor="explicitRadio1"
|
||
>
|
||
YES
|
||
</label>
|
||
</div>
|
||
<div className="ml-2 font-bold form-check form-check-inline">
|
||
<input
|
||
checked={!explicit}
|
||
className="peer sr-only"
|
||
id="explicitRadio2"
|
||
name="explicitRadioOptions2"
|
||
onClick={() => {
|
||
setExplicit(false)
|
||
}}
|
||
type="radio"
|
||
/>
|
||
<label
|
||
className="inline-block py-1 px-2 text-sm text-gray peer-checked:text-white hover:text-white peer-checked:bg-black hover:rounded-sm peer-checked:border-b-2 hover:border-b-2 peer-checked:border-plumbus hover:border-plumbus cursor-pointer form-check-label"
|
||
htmlFor="explicitRadio2"
|
||
>
|
||
NO
|
||
</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<Conditional
|
||
test={SG721_OPEN_EDITION_UPDATABLE_CODE_ID > 0 && OPEN_EDITION_UPDATABLE_FACTORY_ADDRESS !== undefined}
|
||
>
|
||
<Tooltip
|
||
backgroundColor="bg-blue-500"
|
||
label={
|
||
<div className="grid grid-flow-row">
|
||
<span>
|
||
ℹ️ When enabled, the metadata for tokens can be updated after the collection is created until the
|
||
collection is frozen by the creator.
|
||
</span>
|
||
</div>
|
||
}
|
||
placement="bottom"
|
||
>
|
||
<div className={clsx('flex flex-col space-y-2 w-full form-control')}>
|
||
<label className="justify-start cursor-pointer label">
|
||
<div className="flex flex-col">
|
||
<span className="mr-4 font-bold">Updatable Token Metadata</span>
|
||
<span className="mr-4">(Price: 2000 STARS)</span>
|
||
</div>
|
||
<input
|
||
checked={updatable}
|
||
className={`toggle ${updatable ? `bg-stargaze` : `bg-gray-600`}`}
|
||
onClick={() => setUpdatable(!updatable)}
|
||
type="checkbox"
|
||
/>
|
||
</label>
|
||
</div>
|
||
</Tooltip>
|
||
</Conditional>
|
||
</FormGroup>
|
||
</div>
|
||
)
|
||
}
|