Skip to content

Commit

Permalink
fix: update show names for supported file types of xlsx and docx (#3091)
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenliang123 authored Apr 3, 2024
1 parent da998d0 commit 7cc0d47
Showing 1 changed file with 13 additions and 31 deletions.
44 changes: 13 additions & 31 deletions web/app/components/datasets/create/file-uploader/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,38 +49,20 @@ const FileUploader = ({
const { data: supportFileTypesResponse } = useSWR({ url: '/files/support-type' }, fetchSupportFileTypes)
const supportTypes = supportFileTypesResponse?.allowed_extensions || []
const supportTypesShowNames = (() => {
let res = [...supportTypes]
if (res.includes('markdown') && res.includes('md'))
res = res.filter(item => item !== 'md')

if (res.includes('pptx') && res.includes('ppt'))
res = res.filter(item => item !== 'ppt')

if (res.includes('html') && res.includes('htm'))
res = res.filter(item => item !== 'htm')

res = res.map((item) => {
if (item === 'md')
return 'markdown'

if (item === 'pptx')
return 'ppt'

if (item === 'htm')
return 'html'

if (item === 'xlsx')
return 'xls'

if (item === 'docx')
return 'doc'

return item
})
res = res.map(item => item.toLowerCase())
res = res.filter((item, index, self) => self.indexOf(item) === index)
const extensionMap: { [key: string]: string } = {
md: 'markdown',
pptx: 'pptx',
htm: 'html',
xlsx: 'xlsx',
docx: 'docx',
}

return res.map(item => item.toUpperCase()).join(locale !== LanguagesSupported[1] ? ', ' : '、 ')
return [...supportTypes]
.map(item => extensionMap[item] || item) // map to standardized extension
.map(item => item.toLowerCase()) // convert to lower case
.filter((item, index, self) => self.indexOf(item) === index) // remove duplicates
.map(item => item.toUpperCase()) // convert to upper case
.join(locale !== LanguagesSupported[1] ? ', ' : '、 ')
})()
const ACCEPTS = supportTypes.map((ext: string) => `.${ext}`)
const fileUploadConfig = useMemo(() => fileUploadConfigResponse ?? {
Expand Down

0 comments on commit 7cc0d47

Please sign in to comment.