File size: 1,336 Bytes
f0743f4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | import React from 'react';
import VectorStoreSidePanel from './VectorStore/VectorStoreSidePanel';
import FilesSectionSelector from './FilesSectionSelector';
import { Button } from '../ui';
import { Outlet, useNavigate, useParams } from 'react-router-dom';
export default function VectorStoreView() {
const params = useParams();
const navigate = useNavigate();
return (
<div className="max-h-[100vh] bg-[#f9f9f9] p-0 lg:p-7">
<div className="m-4 flex max-h-[10vh] w-full flex-row justify-between md:m-2">
<FilesSectionSelector />
<Button
className="block lg:hidden"
variant={'outline'}
size={'sm'}
onClick={() => {
navigate('/d/vector-stores');
}}
>
Go back
</Button>
</div>
<div className="flex max-h-[90vh] w-full flex-row divide-x">
<div
className={`max-h-full w-full xl:w-1/3 ${
params.vectorStoreId ? 'hidden w-1/2 lg:block lg:w-1/2' : 'md:w-full'
}`}
>
<VectorStoreSidePanel />
</div>
<div
className={`max-h-full w-full overflow-y-auto xl:w-2/3 ${
params.vectorStoreId ? 'lg:w-1/2' : 'hidden md:w-1/2 lg:block'
}`}
>
<Outlet />
</div>
</div>
</div>
);
}
|