mirror of
https://github.com/FranP-code/ChatGPT.git
synced 2025-10-13 00:13:25 +00:00
86 lines
3.0 KiB
TypeScript
Vendored
86 lines
3.0 KiB
TypeScript
Vendored
import { useEffect, useState } from 'react';
|
|
import { useLocation } from 'react-router-dom';
|
|
import { ArrowLeftOutlined } from '@ant-design/icons';
|
|
import { Table, Button } from 'antd';
|
|
import { shell, path } from '@tauri-apps/api';
|
|
|
|
import useColumns from '@/hooks/useColumns';
|
|
import useData from '@/hooks/useData';
|
|
import { useCacheModel } from '@/hooks/useChatModel';
|
|
import useTable, { TABLE_PAGINATION } from '@/hooks/useTable';
|
|
import { fmtDate, chatRoot } from '@/utils';
|
|
import { getPath } from '@/view/model/SyncCustom/config';
|
|
import { syncColumns } from './config';
|
|
import useInit from '@/hooks/useInit';
|
|
import './index.scss';
|
|
|
|
export default function SyncRecord() {
|
|
const location = useLocation();
|
|
const [filePath, setFilePath] = useState('');
|
|
const [jsonPath, setJsonPath] = useState('');
|
|
const state = location?.state;
|
|
|
|
const { rowSelection, selectedRowIDs } = useTable();
|
|
const { modelJson, modelSet } = useCacheModel(jsonPath);
|
|
const { opData, opInit, opReplace, opReplaceItems, opSafeKey } = useData([]);
|
|
const { columns, ...opInfo } = useColumns(syncColumns());
|
|
|
|
const selectedItems = rowSelection.selectedRowKeys || [];
|
|
|
|
useInit(async () => {
|
|
setFilePath(await getPath(state));
|
|
setJsonPath(await path.join(await chatRoot(), 'cache_sync', `${state?.id}.json`));
|
|
})
|
|
|
|
useEffect(() => {
|
|
if (modelJson.length <= 0) return;
|
|
opInit(modelJson);
|
|
}, [modelJson.length]);
|
|
|
|
useEffect(() => {
|
|
if (opInfo.opType === 'enable') {
|
|
const data = opReplace(opInfo?.opRecord?.[opSafeKey], opInfo?.opRecord);
|
|
modelSet(data);
|
|
}
|
|
}, [opInfo.opTime]);
|
|
|
|
const handleEnable = (isEnable: boolean) => {
|
|
const data = opReplaceItems(selectedRowIDs, { enable: isEnable })
|
|
modelSet(data);
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<div className="chat-table-btns">
|
|
<div>
|
|
<Button shape="round" icon={<ArrowLeftOutlined />} onClick={() => history.back()} />
|
|
</div>
|
|
<div>
|
|
{selectedItems.length > 0 && (
|
|
<>
|
|
<Button type="primary" onClick={() => handleEnable(true)}>Enable</Button>
|
|
<Button onClick={() => handleEnable(false)}>Disable</Button>
|
|
<span className="num">Selected {selectedItems.length} items</span>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="chat-table-tip">
|
|
<div className="chat-sync-path">
|
|
<div>PATH: <a onClick={() => shell.open(filePath)} target="_blank" title={filePath}>{filePath}</a></div>
|
|
<div>CACHE: <a onClick={() => shell.open(jsonPath)} target="_blank" title={jsonPath}>{jsonPath}</a></div>
|
|
</div>
|
|
{state?.last_updated && <span style={{ marginLeft: 10, color: '#888', fontSize: 12 }}>Last updated on {fmtDate(state?.last_updated)}</span>}
|
|
</div>
|
|
<Table
|
|
key="prompt"
|
|
rowKey="act"
|
|
columns={columns}
|
|
scroll={{ x: 'auto' }}
|
|
dataSource={opData}
|
|
rowSelection={rowSelection}
|
|
pagination={TABLE_PAGINATION}
|
|
/>
|
|
</div>
|
|
)
|
|
} |