2023-06-15 10:17:44 +00:00
|
|
|
|
/* eslint-disable eslint-comments/disable-enable-pair */
|
2023-06-21 10:12:23 +00:00
|
|
|
|
/* eslint-disable jsx-a11y/media-has-caption */
|
2023-06-15 10:17:44 +00:00
|
|
|
|
/* 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 { addLogItem } from 'contexts/log'
|
|
|
|
|
import type { ChangeEvent } from 'react'
|
2023-06-21 10:12:23 +00:00
|
|
|
|
import { useEffect, useMemo, useRef, useState } from 'react'
|
2023-06-15 10:17:44 +00:00
|
|
|
|
import { toast } from 'react-hot-toast'
|
2023-06-22 18:41:13 +00:00
|
|
|
|
import { OPEN_EDITION_UPDATABLE_FACTORY_ADDRESS, SG721_OPEN_EDITION_UPDATABLE_CODE_ID } from 'utils/constants'
|
2023-06-21 10:12:23 +00:00
|
|
|
|
import { getAssetType } from 'utils/getAssetType'
|
2023-06-15 10:17:44 +00:00
|
|
|
|
import { uid } from 'utils/random'
|
|
|
|
|
|
|
|
|
|
import { TextInput } from '../forms/FormInput'
|
|
|
|
|
import type { UploadMethod } from './OffChainMetadataUploadDetails'
|
2023-06-15 10:50:27 +00:00
|
|
|
|
import type { MetadataStorageMethod } from './OpenEditionMinterCreator'
|
2023-06-15 10:17:44 +00:00
|
|
|
|
|
|
|
|
|
interface CollectionDetailsProps {
|
|
|
|
|
onChange: (data: CollectionDetailsDataProps) => void
|
|
|
|
|
uploadMethod: UploadMethod
|
|
|
|
|
coverImageUrl: string
|
2023-06-15 10:50:27 +00:00
|
|
|
|
metadataStorageMethod: MetadataStorageMethod
|
2023-06-15 10:17:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface CollectionDetailsDataProps {
|
|
|
|
|
name: string
|
|
|
|
|
description: string
|
|
|
|
|
symbol: string
|
|
|
|
|
imageFile: File[]
|
|
|
|
|
externalLink?: string
|
|
|
|
|
startTradingTime?: string
|
|
|
|
|
explicit: boolean
|
|
|
|
|
updatable: boolean
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-15 10:50:27 +00:00
|
|
|
|
export const CollectionDetails = ({
|
|
|
|
|
onChange,
|
|
|
|
|
uploadMethod,
|
|
|
|
|
metadataStorageMethod,
|
|
|
|
|
coverImageUrl,
|
|
|
|
|
}: CollectionDetailsProps) => {
|
2023-06-15 10:17:44 +00:00
|
|
|
|
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 initialRender = useRef(true)
|
|
|
|
|
|
2023-06-15 10:50:27 +00:00
|
|
|
|
const coverImageInputRef = useRef<HTMLInputElement>(null)
|
|
|
|
|
|
2023-06-15 10:17:44 +00:00
|
|
|
|
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])
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-15 10:50:27 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
setCoverImage(null)
|
|
|
|
|
// empty the element so that the same file can be selected again
|
2023-06-15 13:13:08 +00:00
|
|
|
|
if (coverImageInputRef.current) coverImageInputRef.current.value = ''
|
2023-06-15 10:50:27 +00:00
|
|
|
|
}, [metadataStorageMethod])
|
|
|
|
|
|
2023-06-15 10:17:44 +00:00
|
|
|
|
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])
|
|
|
|
|
|
2023-06-21 10:12:23 +00:00
|
|
|
|
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])
|
|
|
|
|
|
2023-06-15 10:17:44 +00:00
|
|
|
|
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)"
|
|
|
|
|
>
|
|
|
|
|
<InputDateTime minDate={new Date()} onChange={(date) => setTimestamp(date)} value={timestamp} />
|
|
|
|
|
</FormControl>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<FormControl className={clsx('')} isRequired={uploadMethod === 'new'} title="Cover Image">
|
|
|
|
|
{uploadMethod === 'new' && (
|
|
|
|
|
<input
|
2023-06-21 10:12:23 +00:00
|
|
|
|
accept="image/*, video/*"
|
2023-06-15 10:17:44 +00:00
|
|
|
|
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}
|
2023-06-15 10:50:27 +00:00
|
|
|
|
ref={coverImageInputRef}
|
2023-06-15 10:17:44 +00:00
|
|
|
|
type="file"
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
|
2023-06-21 10:12:23 +00:00
|
|
|
|
<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>
|
|
|
|
|
|
2023-06-15 10:17:44 +00:00
|
|
|
|
{uploadMethod === 'existing' && coverImageUrl?.includes('ipfs://') && (
|
|
|
|
|
<div className="max-w-[200px] max-h-[200px] rounded border-2">
|
2023-06-21 10:12:23 +00:00
|
|
|
|
<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>
|
2023-06-15 10:17:44 +00:00
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
{uploadMethod === 'existing' && coverImageUrl && !coverImageUrl?.includes('ipfs://') && (
|
2023-06-21 10:12:23 +00:00
|
|
|
|
<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>
|
2023-06-15 10:17:44 +00:00
|
|
|
|
</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>
|
2023-06-22 18:41:13 +00:00
|
|
|
|
<Conditional
|
|
|
|
|
test={SG721_OPEN_EDITION_UPDATABLE_CODE_ID > 0 && OPEN_EDITION_UPDATABLE_FACTORY_ADDRESS !== undefined}
|
|
|
|
|
>
|
2023-06-15 10:17:44 +00:00
|
|
|
|
<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-3/4 form-control')}>
|
|
|
|
|
<label className="justify-start cursor-pointer label">
|
|
|
|
|
<span className="mr-4 font-bold">Updatable Token Metadata</span>
|
|
|
|
|
<input
|
|
|
|
|
checked={updatable}
|
|
|
|
|
className={`toggle ${updatable ? `bg-stargaze` : `bg-gray-600`}`}
|
|
|
|
|
onClick={() => setUpdatable(!updatable)}
|
|
|
|
|
type="checkbox"
|
|
|
|
|
/>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
</Conditional>
|
|
|
|
|
</FormGroup>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|