| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567 |
- import * as React from 'react';
- import { generatePath, useParams, useLocation } from 'react-router-dom';
- import { observer } from 'mobx-react';
- import config, { getHeaders } from '@/apis/config';
- import {
- Button,
- Table,
- TableColumnsType,
- Modal,
- TablePaginationConfig,
- Upload,
- UploadProps,
- message,
- Spin,
- Row,
- Col,
- Card
- } from 'antd';
- import { EditOutlined, DeleteOutlined, InboxOutlined, PlusOutlined, ArrowLeftOutlined, CloseOutlined, BulbOutlined } from '@ant-design/icons';
- import InfoModal from './components/InfoModal';
- import InfoModalSetting from './components/InfoModalSetting';
- import router from '@/router';
- import { Record } from './types';
- import dayjs from 'dayjs';
- import axios from 'axios';
- import LocalStorage from '@/LocalStorage';
- import store from './store';
- import './style.less';
- const { Dragger } = Upload;
- const KnowledgeLibInfo : React.FC = () => {
- const {
- state,
- init,
- onClickModify,
- onClickDelete,
- onChangePagination,
- onClickDocumentDetail,
- infoModalOnClickConfirm,
- infoModalOnClickCancel,
- infoModalSettingOnClickConfirm,
- infoModalSettingOnClickCancel,
- onClickSettings,
- reset
- } = store;
- const {
- knowledge_id,
- listLoading,
- page,
- list,
- infoModalOpen,
- infoModalId,
- infoModalSettingOpen,
- infoModalSettingId,
- knowledgeDetail,
- } = state;
- const location = useLocation();
- const [ uploadLoading, setUploadLoading ] = React.useState( false );
- const params = useParams();
- const [ fileList, setFileList ] = React.useState<any[]>( [] );
- const [ uploading, setUploading ] = React.useState( false );
- const uploadMessageRef = React.useRef<(() => void) | null>( null );
- const [ sListFlag, setSListFlag ] = React.useState<boolean>();
- const [ cUpdateFlag, setCUpdateFlag ] = React.useState<boolean>();
- const [ detailFlag, setDetailFlag ] = React.useState<boolean>();
- const [ deleteFlag, setDeleteFlag ] = React.useState<boolean>();
- const [ createFlag, setCreateFlag ] = React.useState<boolean>();
- const [userInfoAll, setUserInfoAll] = React.useState<any>({});
- // 新手引导(知识库文档)整体可见性(持久化到 localStorage)
- const [showDocGuide, setShowDocGuide] = React.useState<boolean>(() => localStorage.getItem('knowledgeDocGuideHidden') !== 'true');
- const hideDocGuide = () => { localStorage.setItem('knowledgeDocGuideHidden', 'true'); setShowDocGuide(false); };
- const props : UploadProps = {
- name: 'files',
- multiple: true,
- action: '/api/deepseek/api/uploadDocument/' + params.knowledgeId,
- headers: getHeaders(),
- beforeUpload( file, fileList ) {
- setUploadLoading( true );
- // const allowedExtensions = ['md', 'txt', 'pdf', 'jpg', 'png', 'jpeg', 'docx', 'xlsx', 'pptx', 'eml', 'csv', 'tar', 'gz', 'bz2', 'zip', 'rar', 'jar'];
- const allowedExtensions = [ 'txt', 'pdf', 'jpg', 'png', 'jpeg', 'doc', 'docx', 'ppt', 'pptx' ];
- // 检查文件类型
- for ( const file of fileList ) {
- const fileExt = file.name.split( '.' ).pop()?.toLowerCase();
- if ( !fileExt || !allowedExtensions.includes( fileExt ) ) {
- message.error( `不支持 ${ fileExt } 格式的文件上传` );
- setUploadLoading( false );
- return Upload.LIST_IGNORE;
- }
- }
- // 检查文件大小
- let totalSize = 0;
- for ( const file of fileList ) {
- const fileExt = file.name.split( '.' ).pop()?.toLowerCase();
- const fileSizeMB = file.size / 1024 / 1024;
- if ( fileSizeMB > 30 ) {
- message.error( '单个文件不能大于30M' );
- setUploadLoading( false );
- return Upload.LIST_IGNORE;
- }
- if ( [ 'jpg', 'png', 'jpeg' ].includes( fileExt! ) && fileSizeMB > 5 ) {
- message.error( '单张图片不能大于5M' );
- setUploadLoading( false );
- return Upload.LIST_IGNORE;
- }
- totalSize += fileSizeMB;
- }
- if ( totalSize > 125 ) {
- message.error( '文件总大小超过125M' );
- setUploadLoading( false );
- return Upload.LIST_IGNORE;
- }
- },
- onChange( info ) {
- const { status, name } = info.file;
- if ( status === 'uploading' ) {
- // 文件开始上传,显示持续提示
- if ( !uploadMessageRef.current ) {
- const closeMessage = message.loading(
- `为了确保文件 "${name}" 的解析质量,系统需要一些时间进行准备(通常为2-20分钟)。辛苦您耐心等待,您可以继续使用其他功能,只要不关闭当前页面即可。`,
- 0 // 0表示不自动关闭
- );
- uploadMessageRef.current = closeMessage;
- }
- setUploadLoading( true );
- } else if ( status === 'done' ) {
- console.log( status, 'status--done' );
- console.info( info.file.response, 'info.file.response.data' );
- // 关闭上传提示
- if ( uploadMessageRef.current ) {
- uploadMessageRef.current();
- uploadMessageRef.current = null;
- }
- if ( info.file.response.code === 200 && info.file.response.data === 1 ) {
- message.success( `${ info.file.name } file uploaded successfully.` );
- init( params.knowledgeId );
- }
- setUploadLoading( false );
- } else if ( status === 'error' ) {
- console.log( status, 'status--error' );
- // 关闭上传提示
- if ( uploadMessageRef.current ) {
- uploadMessageRef.current();
- uploadMessageRef.current = null;
- }
- // 检查是否是504超时错误
- const response = info.file.response;
- const error = info.file.error;
-
- // 检查HTML格式的504错误或其他504错误格式
- const responseStr = String(response || '');
- const errorStr = String(error || '');
-
- if (responseStr.includes('504') ||
- responseStr.includes('Gateway Time-out') ||
- responseStr.includes('<h1>504 Gateway Time-out</h1>') ||
- errorStr.includes('timeout') ||
- errorStr.includes('504')) {
- info.file.response = '上传文件超时,请修改文件后再上传';
- info.file.error = '上传文件超时,请修改文件后再上传';
- message.error( '上传文件超时,请修改文件后再上传' );
- } else {
- message.error( `${ info.file.name } 文件上传失败` );
- }
- setUploadLoading( false );
- }
- },
- onDrop( e ) {
- console.log( 'Dropped files', e.dataTransfer.files );
- },
- };
- const handleUpload = async () => {
- if ( fileList.length === 0 ) return;
- setUploading( true );
- const formData = new FormData();
- // 添加所有文件
- fileList.forEach( file => {
- if ( file.originFileObj ) {
- formData.append( 'files', file.originFileObj );
- }
- } );
- try {
- const res = await axios.post( '/api/deepseek/api/uploadDocument/' + params.knowledgeId, formData, {
- headers: { 'Content-Type': 'multipart/form-data' }
- } );
- message.success( `${ fileList.length }个文件上传成功` );
- setFileList( [] );
- } catch ( err: any ) {
- // 检查是否是504超时错误
- if (err?.response?.status === 504 || err?.code === 'ECONNABORTED' || String(err).includes('timeout')) {
- message.error( '上传文件超时,请修改文件后再上传' );
- } else {
- message.error( '上传失败' );
- }
- } finally {
- setUploading( false );
- }
- };
- React.useEffect( () => {
- init( params.knowledgeId );
- const cList = LocalStorage.getStatusFlag( 'deepseek:slice:list' );
- setSListFlag( cList );
- const cDetail = LocalStorage.getStatusFlag( 'deepseek:config:update' );
- setCUpdateFlag( cDetail );
- const detail = LocalStorage.getStatusFlag( 'deepseek:document:detail' );
- setDetailFlag( detail );
- const deleteF = LocalStorage.getStatusFlag( 'deepseek:document:delete' );
- setDeleteFlag( deleteF );
- const createF = LocalStorage.getStatusFlag( 'deepseek:document:create' );
- setCreateFlag( createF );
- setUserInfoAll(LocalStorage.getUserInfo());
- return () => reset();
- }, [] );
- const columns : TableColumnsType<Record> = [
- {
- title: '序号',
- dataIndex: 'index',
- width: 80,
- render: ( text, record, index ) => {
- return index + 1;
- }
- },
- {
- title: '文件名',
- dataIndex: 'name',
- width: 300,
- sorter: (a, b) => a.name.localeCompare(b.name),
- render: ( text, record ) => {
- return (
- `${ text }`
- )
- }
- },
- {
- title: '文件大小',
- dataIndex: 'length',
- width: 100,
- render: ( text ) => {
- if ( text ) {
- const size = ( text / 1024 / 1024 ).toFixed( 2 );
- return `${ size } M`;
- } else {
- return '--'
- }
- }
- },
- {
- title: '字符数量',
- dataIndex: 'wordNum',
- width: 100,
- render: ( text ) => {
- if ( text ) {
- return `${ text }`;
- } else {
- return '--'
- }
- }
- },
- {
- title: '分段',
- dataIndex: 'sliceTotal',
- width: 100,
- render: ( text ) => {
- if ( text ) {
- return `${ text }`;
- } else {
- return '--';
- }
- }
- },
- {
- title: '上传时间',
- dataIndex: 'createTime',
- width: 180,
- render: ( text ) => {
- if ( text ) {
- return dayjs( text ).format( 'YYYY-MM-DD HH:mm:ss' );
- } else {
- return '--';
- }
- }
- },
- {
- title: '更新时间',
- dataIndex: 'updateTime',
- width: 180,
- render: ( text ) => {
- if ( text ) {
- return dayjs( text ).format( 'YYYY-MM-DD HH:mm:ss' );
- } else {
- return '--';
- }
- }
- },
- {
- title: '操作',
- dataIndex: 'operation',
- width: 180,
- fixed: 'right',
- render: ( text, record:any ) => {
- return (
- <>
- { (createFlag||userInfoAll.id===record.createBy) &&
- <a
- style={ { marginRight: 16 } }
- onClick={ () => {
- const path = generatePath( '/deepseek/knowledgeLib/:knowledgeId/:createBy/slice/:documentId/:embeddingId', {
- knowledgeId: params.knowledgeId as string,
- createBy: params.createBy as string,
- documentId: record.documentId,
- embeddingId: state.knowledgeDetail.embeddingId,
- } );
- router.navigate( { pathname: path },{state:{ createBy:record.createBy}} );
- } }
- >
- 切片
- </a>
- }
- {
- (cUpdateFlag||userInfoAll.id===record.createBy) &&
- <a
- style={ { marginRight: 16 } }
- onClick={ () => {
- onClickSettings( record.documentId );
- } }
- >
- 配置
- </a>
- }
- {
- (cUpdateFlag||userInfoAll.id===record.createBy) &&
- <a
- style={ { marginRight: 16 } }
- onClick={ () => {
- onClickModify( record.documentId );
- } }>
- <EditOutlined />
- </a>
- }
- {
- (deleteFlag||userInfoAll.id===record.createBy) &&
- <a
- className='text-error'
- onClick={ () => {
- Modal.confirm( {
- title: '删除',
- content: `确定删除知识文件:${ record.name }吗?`,
- okType: 'danger',
- onOk: async () => {
- const userInfo = LocalStorage.getUserInfo();
- await onClickDelete( record.documentId );
- }
- } );
- } }
- >
- <DeleteOutlined />
- </a>
- }
- </>
- )
- }
- }
- ];
- const paginationConfig : TablePaginationConfig = {
- // 显示数据总量
- showTotal: ( total : number ) => {
- return `共 ${ total } 条`;
- },
- // 展示分页条数切换
- showSizeChanger: true,
- // 指定每页显示条数
- pageSizeOptions: [ '10', '20', '50', '100' ],
- // 快速跳转至某页
- showQuickJumper: true,
- current: page.page,
- pageSize: page.size,
- total: page.total,
- onChange: async ( page, pageSize ) => {
- await onChangePagination( page, pageSize );
- },
- };
- return (
- <div className='knowledgeLibInfo'>
- <Spin spinning={ uploadLoading || listLoading }>
- {showDocGuide && (
- <div style={{ padding: '12px 20px 12px 20px', background: '#fff' }}>
- <div style={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between', marginBottom: 8 }}>
- <div style={{ fontSize: 13, color: '#333', display: 'flex', alignItems: 'center', gap: 6 }}>
- <BulbOutlined style={{ color: '#faad14' }} />
- 提示:如何上传并管理知识库文档?
- </div>
- <CloseOutlined onClick={hideDocGuide} style={{ color: '#999', cursor: 'pointer' }} />
- </div>
- <Row gutter={12}>
- <Col xs={24} sm={24} md={12} lg={8}>
- <Card
- size="small"
- bordered={false}
- style={{
- background: 'linear-gradient(90deg, #e6f4ff 0%, #f0f7ff 100%)',
- boxShadow: '0 1px 2px rgba(0,0,0,0.04)',
- borderRadius: 8,
- height: '100%'
- }}
- bodyStyle={{ display: 'flex', flexDirection: 'column', justifyContent: 'space-between', minHeight: 80 }}
- title={<span style={{ fontWeight: 600 }}>上传知识文档</span>}
- >
- <div style={{ color: '#666', fontSize: 12 }}>支持多种格式(Word、PDF、图片等),单个/总大小有上限,上传后自动处理(约5-10分钟,如遇到超时,可等待几分钟后刷新页面,将自动成功)。</div>
- {/* <div style={{ color: '#666', fontSize: 12 }}>支持pdf,doc,docx文件格式上传,建议单个文件不要超过10M,页数控制在100页以内。尽量单文件上传。</div> */}
- <div style={{ textAlign: 'right', color: '#1677ff', fontWeight: 600 }}>step 1</div>
- </Card>
- </Col>
- <Col xs={24} sm={24} md={12} lg={8}>
- <Card
- size="small"
- bordered={false}
- style={{
- background: 'linear-gradient(90deg, #e6fffb 0%, #f0fffe 100%)',
- boxShadow: '0 1px 2px rgba(0,0,0,0.04)',
- borderRadius: 8,
- height: '100%'
- }}
- bodyStyle={{ display: 'flex', flexDirection: 'column', justifyContent: 'space-between', minHeight: 80 }}
- title={<span style={{ fontWeight: 600 }}>查看切片与索引</span>}
- >
- <div style={{ color: '#666', fontSize: 12 }}>自动解析成功后可查看切片数量与索引状态,必要时可重新生成或调整配置。</div>
- <div style={{ textAlign: 'right', color: '#1677ff', fontWeight: 600 }}>step 2</div>
- </Card>
- </Col>
- <Col xs={24} sm={24} md={12} lg={8}>
- <Card
- size="small"
- bordered={false}
- style={{
- background: 'linear-gradient(90deg, #fff7e6 0%, #fffaf0 100%)',
- boxShadow: '0 1px 2px rgba(0,0,0,0.04)',
- borderRadius: 8,
- height: '100%'
- }}
- bodyStyle={{ display: 'flex', flexDirection: 'column', justifyContent: 'space-between', minHeight: 80 }}
- title={<span style={{ fontWeight: 600 }}>在应用中生效</span>}
- >
- <div style={{ color: '#666', fontSize: 12 }}>在RAG应用中切片将会被模型检索并召回,形成大模型对话的依据语料。</div>
- <div style={{ textAlign: 'right', color: '#1677ff', fontWeight: 600 }}>step 3</div>
- </Card>
- </Col>
- </Row>
- </div>
- )}
- {
- page.total === 0 &&
- <div className='knowledgeLibInfo-operation'>
- <div>
- <Button
- type='primary'
- icon={ <ArrowLeftOutlined /> }
- onClick={ () => {
- router.navigate( { pathname: '/deepseek/knowledgeLib' } );
- } }
- >
- 返回
- </Button>
- </div>
- {
- ((createFlag&&userInfoAll.id==='1')||userInfoAll.id===params?.createBy) &&
- <div style={ { marginTop: 20, width: '100%', height: '200px' } }>
- <Dragger { ...props }>
- <p className="ant-upload-drag-icon">
- <InboxOutlined />
- </p>
- <p>
- 点击上传,或拖放文件到此处
- </p>
- <p className="ant-upload-hint">
- {/* 支持文件格式md,txt,pdf,jpg,png,jpeg,docx,xlsx,
- pptx,eml,csv,单个文档 ≤ 30M,单张图片 ≤ 2.5M,文件总
- 大小不得超过125M. */}
- 支持pdf,doc,docx,jpg,png,jpeg文件格式上传,建议单个文件不要超过10M,页数控制在100页以内。尽量单文件上传。
- </p>
- </Dragger>
- </div>
- }
- </div>
- }
- {
- page.total > 0 &&
- <>
- <div className='knowledgeLibInfo-operation'>
- <Button
- style={ { marginRight: 16 } }
- type='primary'
- icon={ <ArrowLeftOutlined /> } onClick={ () => {
- router.navigate( { pathname: '/deepseek/knowledgeLib' } );
- } }>
- 返回
- </Button>
- {
- ((createFlag&&userInfoAll.id==='1')||userInfoAll.id===params?.createBy) &&
- <Upload { ...props }>
- <Button type='primary' icon={ <PlusOutlined /> }>上传知识文件</Button>
- </Upload>
- }
- </div>
-
- <div className='knowledgeLibInfo-table'>
- <Table
- scroll={ { x: 'max-content' } }
- rowKey={ ( record ) => record.documentId }
- loading={ listLoading }
- columns={ columns }
- dataSource={ list }
- pagination={ paginationConfig }
- />
- </div>
- {
- infoModalOpen &&
- <InfoModal
- id={ infoModalId }
- open={ infoModalOpen }
- onClickConfirm={ infoModalOnClickConfirm }
- onClickCancel={ infoModalOnClickCancel }
- />
- }
- {
- infoModalSettingOpen &&
- <InfoModalSetting
- id={ infoModalSettingId }
- open={ infoModalSettingOpen }
- onClickConfirm={ infoModalSettingOnClickConfirm }
- onClickCancel={ infoModalSettingOnClickCancel }
- />
- }
- </>
- }
- </Spin>
- </div>
- );
- };
- export default observer( KnowledgeLibInfo );
|