123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- 'use client'
- import type { FC } from 'react'
- import React, { Fragment, useEffect, useState } from 'react'
- import { useTranslation } from 'react-i18next'
- import {
- RiAddLine,
- RiMoreFill,
- } from '@remixicon/react'
- import { useContext } from 'use-context-selector'
- import {
- useCSVDownloader,
- } from 'react-papaparse'
- import { Menu, MenuButton, MenuItems, Transition } from '@headlessui/react'
- import Button from '../../../base/button'
- import AddAnnotationModal from '../add-annotation-modal'
- import type { AnnotationItemBasic } from '../type'
- import BatchAddModal from '../batch-add-annotation-modal'
- import cn from '@/utils/classnames'
- 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 { LanguagesSupported } from '@/i18n/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 { CSVDownloader, Type } = useCSVDownloader()
- const [list, setList] = useState<AnnotationItemBasic[]>([])
- const annotationUnavailable = list.length === 0
- 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-${locale}.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='mx-1 flex h-9 w-[calc(100%_-_8px)] cursor-pointer items-center space-x-2 rounded-lg px-3 py-2 hover:bg-components-panel-on-panel-item-bg-hover disabled:opacity-50' onClick={() => {
- setShowBulkImportModal(true)
- }}>
- <FilePlus02 className='h-4 w-4 text-text-tertiary' />
- <span className='system-sm-regular grow text-left text-text-secondary'>{t('appAnnotation.table.header.bulkImport')}</span>
- </button>
- <Menu as="div" className="relative h-full w-full">
- <MenuButton className='mx-1 flex h-9 w-[calc(100%_-_8px)] cursor-pointer items-center space-x-2 rounded-lg px-3 py-2 hover:bg-components-panel-on-panel-item-bg-hover disabled:opacity-50'>
- <FileDownload02 className='h-4 w-4 text-text-tertiary' />
- <span className='system-sm-regular grow text-left text-text-secondary'>{t('appAnnotation.table.header.bulkExport')}</span>
- <ChevronRight className='h-[14px] w-[14px] shrink-0 text-text-tertiary' />
- </MenuButton>
- <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"
- >
- <MenuItems
- className={cn(
- 'absolute left-1 top-[1px] z-10 min-w-[100px] origin-top-right -translate-x-full rounded-xl border-[0.5px] border-components-panel-on-panel-item-bg bg-components-panel-bg py-1 shadow-xs',
- )}
- >
- <CSVDownloader
- type={Type.Link}
- filename={`annotations-${locale}`}
- bom={true}
- data={[
- locale !== LanguagesSupported[1] ? CSV_HEADER_QA_EN : CSV_HEADER_QA_CN,
- ...list.map(item => [item.question, item.answer]),
- ]}
- >
- <button disabled={annotationUnavailable} className='mx-1 flex h-9 w-[calc(100%_-_8px)] cursor-pointer items-center space-x-2 rounded-lg px-3 py-2 hover:bg-components-panel-on-panel-item-bg-hover disabled:opacity-50'>
- <span className='system-sm-regular grow text-left text-text-secondary'>CSV</span>
- </button>
- </CSVDownloader>
- <button disabled={annotationUnavailable} className={cn('mx-1 flex h-9 w-[calc(100%_-_8px)] cursor-pointer items-center space-x-2 rounded-lg px-3 py-2 hover:bg-components-panel-on-panel-item-bg-hover disabled:opacity-50', '!border-0')} onClick={JSONLOutput}>
- <span className='system-sm-regular grow text-left text-text-secondary'>JSONL</span>
- </button>
- </MenuItems>
- </Transition>
- </Menu>
- </div>
- )
- }
- const [showAddModal, setShowAddModal] = React.useState(false)
- return (
- <div className='flex space-x-2'>
- <Button variant='primary' onClick={() => setShowAddModal(true)}>
- <RiAddLine className='mr-0.5 h-4 w-4' />
- <div>{t('appAnnotation.table.header.addAnnotation')}</div>
- </Button>
- <CustomPopover
- htmlContent={<Operations />}
- position="br"
- trigger="click"
- btnElement={
- <Button variant='secondary' className='w-8 p-0'>
- <RiMoreFill className='h-4 w-4' />
- </Button>
- }
- btnClassName='p-0 border-0'
- className={'!z-20 h-fit !w-[155px]'}
- 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)
|