浏览代码

fix: update show names for supported file types of xlsx and docx (#3091)

tags/0.6.0
Bowen Liang 1年前
父节点
当前提交
7cc0d47322
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 13 次插入31 次删除
  1. 13
    31
      web/app/components/datasets/create/file-uploader/index.tsx

+ 13
- 31
web/app/components/datasets/create/file-uploader/index.tsx 查看文件

@@ -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 ?? {

正在加载...
取消
保存