File size: 2,293 Bytes
4304c6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
'use client'
import type { FC } from 'react'
import React, { useState } from 'react'
import {
  useCSVReader,
} from 'react-papaparse'
import cn from 'classnames'
import { useTranslation } from 'react-i18next'
import s from './style.module.css'
import { Csv as CSVIcon } from '@/app/components/base/icons/src/public/files'

export type Props = {
  onParsed: (data: string[][]) => void
}

const CSVReader: FC<Props> = ({

  onParsed,

}) => {
  const { t } = useTranslation()
  const { CSVReader } = useCSVReader()
  const [zoneHover, setZoneHover] = useState(false)
  return (
    <CSVReader

      onUploadAccepted={(results: any) => {

        onParsed(results.data)

        setZoneHover(false)

      }}

      onDragOver={(event: DragEvent) => {

        event.preventDefault()

        setZoneHover(true)

      }}

      onDragLeave={(event: DragEvent) => {

        event.preventDefault()

        setZoneHover(false)

      }}

    >

      {({

        getRootProps,

        acceptedFile,

      }: any) => (

        <>

          <div

            {...getRootProps()}

            className={cn(s.zone, zoneHover && s.zoneHover, acceptedFile ? 'px-6' : 'justify-center border-dashed text-gray-500')}

          >

            {

              acceptedFile

                ? (

                  <div className='w-full flex items-center space-x-2'>

                    <CSVIcon className="shrink-0" />

                    <div className='flex w-0 grow'>

                      <span className='max-w-[calc(100%_-_30px)] text-ellipsis whitespace-nowrap overflow-hidden text-gray-800'>{acceptedFile.name.replace(/.csv$/, '')}</span>

                      <span className='shrink-0 text-gray-500'>.csv</span>

                    </div>

                  </div>

                )

                : (

                  <div className='flex items-center justify-center space-x-2'>

                    <CSVIcon className="shrink-0" />

                    <div className='text-gray-500'>{t('share.generation.csvUploadTitle')}<span className='text-primary-400'>{t('share.generation.browse')}</span></div>

                  </div>

                )}

          </div>

        </>
      )}
    </CSVReader>
  )
}

export default React.memo(CSVReader)