123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- import type { ChangeEvent, FC } from 'react'
- import { useState } from 'react'
- import { useParams } from 'next/navigation'
- import { useTranslation } from 'react-i18next'
- import { imageUpload } from './utils'
- import type { ImageFile } from '@/types/app'
- import { TransferMethod } from '@/types/app'
- import { useToastContext } from '@/app/components/base/toast'
- type UploaderProps = {
- children: (hovering: boolean) => JSX.Element
- onUpload: (imageFile: ImageFile) => void
- limit?: number
- disabled?: boolean
- }
- const Uploader: FC<UploaderProps> = ({
- children,
- onUpload,
- limit,
- disabled,
- }) => {
- const [hovering, setHovering] = useState(false)
- const params = useParams()
- const { notify } = useToastContext()
- const { t } = useTranslation()
- const handleChange = (e: ChangeEvent<HTMLInputElement>) => {
- const file = e.target.files?.[0]
- if (!file)
- return
- if (limit && file.size > limit * 1024 * 1024) {
- notify({ type: 'error', message: t('common.imageUploader.uploadFromComputerLimit', { size: limit }) })
- return
- }
- const reader = new FileReader()
- reader.addEventListener(
- 'load',
- () => {
- const imageFile = {
- type: TransferMethod.local_file,
- _id: `${Date.now()}`,
- fileId: '',
- file,
- url: reader.result as string,
- base64Url: reader.result as string,
- progress: 0,
- }
- onUpload(imageFile)
- imageUpload({
- file: imageFile.file,
- onProgressCallback: (progress) => {
- onUpload({ ...imageFile, progress })
- },
- onSuccessCallback: (res) => {
- onUpload({ ...imageFile, fileId: res.id, progress: 100 })
- },
- onErrorCallback: () => {
- notify({ type: 'error', message: t('common.imageUploader.uploadFromComputerUploadError') })
- onUpload({ ...imageFile, progress: -1 })
- },
- }, !!params.token)
- },
- false,
- )
- reader.addEventListener(
- 'error',
- () => {
- notify({ type: 'error', message: t('common.imageUploader.uploadFromComputerReadError') })
- },
- false,
- )
- reader.readAsDataURL(file)
- }
- return (
- <div
- className='relative'
- onMouseEnter={() => setHovering(true)}
- onMouseLeave={() => setHovering(false)}
- >
- {children(hovering)}
- <input
- className={`
- absolute block inset-0 opacity-0 text-[0]
- ${disabled ? 'cursor-not-allowed' : 'cursor-pointer'}
- `}
- onClick={e => (e.target as HTMLInputElement).value = ''}
- type='file'
- accept='.png, .jpg, .jpeg, .webp, .gif'
- onChange={handleChange}
- disabled={disabled}
- />
- </div>
- )
- }
- export default Uploader
|