mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Refactor Datasets UI #3221. ### Type of change - [X] New Feature (non-breaking change which adds functionality)
46 lines
1.0 KiB
TypeScript
46 lines
1.0 KiB
TypeScript
import { Button } from '@/components/ui/button';
|
|
import { X } from 'lucide-react';
|
|
import { useState } from 'react';
|
|
import CategoryPanel from './category-panel';
|
|
|
|
export default ({
|
|
tab = 'generalForm',
|
|
parserId,
|
|
}: {
|
|
tab: 'generalForm' | 'chunkMethodForm';
|
|
parserId: string;
|
|
}) => {
|
|
const [visible, setVisible] = useState(true);
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
display: tab === 'chunkMethodForm' ? 'block' : 'none',
|
|
}}
|
|
>
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => {
|
|
setVisible(!visible);
|
|
}}
|
|
>
|
|
Learn More
|
|
</Button>
|
|
<div
|
|
className="bg-[#FFF]/10 p-[20px] rounded-[12px] mt-[10px] relative"
|
|
style={{ display: visible ? 'block' : 'none' }}
|
|
>
|
|
<CategoryPanel chunkMethod={parserId}></CategoryPanel>
|
|
<div
|
|
className="absolute right-1 top-1 cursor-pointer hover:text-[#FFF]/30"
|
|
onClick={() => {
|
|
setVisible(false);
|
|
}}
|
|
>
|
|
<X />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|