179 lines
6.0 KiB
TypeScript
179 lines
6.0 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React, { Fragment, useEffect, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import cn from 'classnames'
|
|
import { useContext } from 'use-context-selector'
|
|
import {
|
|
useCSVDownloader,
|
|
} from 'react-papaparse'
|
|
import { Menu, Transition } from '@headlessui/react'
|
|
import Button from '../../../base/button'
|
|
import { Plus } from '../../../base/icons/src/vender/line/general'
|
|
import AddAnnotationModal from '../add-annotation-modal'
|
|
import type { AnnotationItemBasic } from '../type'
|
|
import BatchAddModal from '../batch-add-annotation-modal'
|
|
import s from './style.module.css'
|
|
import CustomPopover from '@/app/components/base/popover'
|
|
import { FileDownload02, FilePlus02 } from '@/app/components/base/icons/src/vender/line/files'
|
|
import { ChevronRight } from '@/app/components/base/icons/src/vender/line/arrows'
|
|
|
|
import I18n from '@/context/i18n'
|
|
import { fetchExportAnnotationList } from '@/service/annotation'
|
|
import { LanguagesSupportedUnderscore, getModelRuntimeSupported } from '@/utils/language'
|
|
|
|
const CSV_HEADER_QA_EN = ['Question', 'Answer']
|
|
const CSV_HEADER_QA_CN = ['问题', '答案']
|
|
|
|
type Props = {
|
|
appId: string
|
|
onAdd: (payload: AnnotationItemBasic) => void
|
|
onAdded: () => void
|
|
controlUpdateList: number
|
|
}
|
|
|
|
const HeaderOptions: FC<Props> = ({
|
|
appId,
|
|
onAdd,
|
|
onAdded,
|
|
controlUpdateList,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const { locale } = useContext(I18n)
|
|
const language = getModelRuntimeSupported(locale)
|
|
const { CSVDownloader, Type } = useCSVDownloader()
|
|
const [list, setList] = useState<AnnotationItemBasic[]>([])
|
|
|
|
const listTransformer = (list: AnnotationItemBasic[]) => list.map(
|
|
(item: AnnotationItemBasic) => {
|
|
const dataString = `{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ${JSON.stringify(item.question)}}, {"role": "assistant", "content": ${JSON.stringify(item.answer)}}]}`
|
|
return dataString
|
|
},
|
|
)
|
|
|
|
const JSONLOutput = () => {
|
|
const a = document.createElement('a')
|
|
const content = listTransformer(list).join('\n')
|
|
const file = new Blob([content], { type: 'application/jsonl' })
|
|
a.href = URL.createObjectURL(file)
|
|
a.download = `annotations-${language}.jsonl`
|
|
a.click()
|
|
}
|
|
|
|
const fetchList = async () => {
|
|
const { data }: any = await fetchExportAnnotationList(appId)
|
|
setList(data as AnnotationItemBasic[])
|
|
}
|
|
|
|
useEffect(() => {
|
|
fetchList()
|
|
}, [])
|
|
useEffect(() => {
|
|
if (controlUpdateList)
|
|
fetchList()
|
|
}, [controlUpdateList])
|
|
|
|
const [showBulkImportModal, setShowBulkImportModal] = useState(false)
|
|
|
|
const Operations = () => {
|
|
return (
|
|
<div className="w-full py-1">
|
|
<button className={s.actionItem} onClick={() => {
|
|
setShowBulkImportModal(true)
|
|
}}>
|
|
<FilePlus02 className={s.actionItemIcon} />
|
|
<span className={s.actionName}>{t('appAnnotation.table.header.bulkImport')}</span>
|
|
</button>
|
|
<Menu as="div" className="relative w-full h-full">
|
|
<Menu.Button className={s.actionItem}>
|
|
<FileDownload02 className={s.actionItemIcon} />
|
|
<span className={s.actionName}>{t('appAnnotation.table.header.bulkExport')}</span>
|
|
<ChevronRight className='shrink-0 w-[14px] h-[14px] text-gray-500' />
|
|
</Menu.Button>
|
|
<Transition
|
|
as={Fragment}
|
|
enter="transition ease-out duration-100"
|
|
enterFrom="transform opacity-0 scale-95"
|
|
enterTo="transform opacity-100 scale-100"
|
|
leave="transition ease-in duration-75"
|
|
leaveFrom="transform opacity-100 scale-100"
|
|
leaveTo="transform opacity-0 scale-95"
|
|
>
|
|
<Menu.Items
|
|
className={cn(
|
|
`
|
|
absolute top-[1px] py-1 min-w-[100px] z-10 bg-white border-[0.5px] border-gray-200
|
|
divide-y divide-gray-100 origin-top-right rounded-xl
|
|
`,
|
|
s.popup,
|
|
)}
|
|
>
|
|
<CSVDownloader
|
|
type={Type.Link}
|
|
filename={`annotations-${language}`}
|
|
bom={true}
|
|
data={[
|
|
language !== LanguagesSupportedUnderscore[1] ? CSV_HEADER_QA_EN : CSV_HEADER_QA_CN,
|
|
...list.map(item => [item.question, item.answer]),
|
|
]}
|
|
>
|
|
<button className={s.actionItem}>
|
|
<span className={s.actionName}>CSV</span>
|
|
</button>
|
|
</CSVDownloader>
|
|
<button className={cn(s.actionItem, '!border-0')} onClick={JSONLOutput}>
|
|
<span className={s.actionName}>JSONL</span>
|
|
</button>
|
|
</Menu.Items>
|
|
</Transition>
|
|
</Menu>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const [showAddModal, setShowAddModal] = React.useState(false)
|
|
|
|
return (
|
|
<div className='flex space-x-2'>
|
|
<Button type='primary' onClick={() => setShowAddModal(true)} className='flex items-center !h-8 !px-3 !text-[13px] space-x-2'>
|
|
<Plus className='w-4 h-4' />
|
|
<div>{t('appAnnotation.table.header.addAnnotation')}</div>
|
|
</Button>
|
|
<CustomPopover
|
|
htmlContent={<Operations />}
|
|
position="br"
|
|
trigger="click"
|
|
btnElement={<div className={cn(s.actionIcon, s.commonIcon)} />}
|
|
btnClassName={open =>
|
|
cn(
|
|
open ? 'border-gray-300 !bg-gray-100 !shadow-none' : 'border-gray-200',
|
|
s.actionIconWrapper,
|
|
)
|
|
}
|
|
className={'!w-[154px] h-fit !z-20'}
|
|
popupClassName='!w-full !overflow-visible'
|
|
manualClose
|
|
/>
|
|
{showAddModal && (
|
|
<AddAnnotationModal
|
|
isShow={showAddModal}
|
|
onHide={() => setShowAddModal(false)}
|
|
onAdd={onAdd}
|
|
/>
|
|
)}
|
|
|
|
{
|
|
showBulkImportModal && (
|
|
<BatchAddModal
|
|
appId={appId}
|
|
isShow={showBulkImportModal}
|
|
onCancel={() => setShowBulkImportModal(false)}
|
|
onAdded={onAdded}
|
|
/>
|
|
)
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
export default React.memo(HeaderOptions)
|