123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543 |
- import { useCallback, useContext, useEffect, useMemo, useState } from 'react';
- import { Link, useSearchParams } from 'react-router-dom';
- import { makeStyles, Theme } from '@material-ui/core';
- import { useTranslation } from 'react-i18next';
- import Highlighter from 'react-highlight-words';
- import {
- rootContext,
- authContext,
- dataContext,
- webSocketContext,
- } from '@/context';
- import { useNavigationHook, usePaginationHook } from '@/hooks';
- import { ALL_ROUTER_TYPES } from '@/router/Types';
- import AttuGrid from '@/components/grid/Grid';
- import CustomToolBar from '@/components/grid/ToolBar';
- import { CollectionView, InsertDataParam } from './Types';
- import { ColDefinitionsType, ToolBarConfig } from '@/components/grid/Types';
- import icons from '@/components/icons/Icons';
- import EmptyCard from '@/components/cards/EmptyCard';
- import Status from '@/components/status/Status';
- import { ChildrenStatusType } from '@/components/status/Types';
- import StatusIcon from '@/components/status/StatusIcon';
- import CustomToolTip from '@/components/customToolTip/CustomToolTip';
- import CreateCollectionDialog from '../dialogs/CreateCollectionDialog';
- import { CollectionHttp, MilvusHttp } from '@/http';
- import LoadCollectionDialog from '../dialogs/LoadCollectionDialog';
- import ReleaseCollectionDialog from '../dialogs/ReleaseCollectionDialog';
- import DropCollectionDialog from '../dialogs/DropCollectionDialog';
- import RenameCollectionDialog from '../dialogs/RenameCollectionDialog';
- import InsertDialog from '../dialogs/insert/Dialog';
- import ImportSampleDialog from '../dialogs/ImportSampleDialog';
- import { LOADING_STATE } from '@/consts';
- import { WS_EVENTS, WS_EVENTS_TYPE } from '@server/utils/Const';
- import { checkIndexBuilding, checkLoading } from '@/utils';
- import Aliases from './Aliases';
- const useStyles = makeStyles((theme: Theme) => ({
- emptyWrapper: {
- marginTop: theme.spacing(2),
- },
- icon: {
- fontSize: '20px',
- marginLeft: theme.spacing(0.5),
- },
- dialogContent: {
- lineHeight: '24px',
- fontSize: '16px',
- },
- link: {
- color: theme.palette.common.black,
- display: 'inline-block',
- wordBreak: 'break-all',
- whiteSpace: 'nowrap',
- width: '150px',
- overflow: 'hidden',
- textOverflow: 'ellipsis',
- height: '20px',
- },
- highlight: {
- color: theme.palette.primary.main,
- backgroundColor: 'transparent',
- },
- }));
- const Collections = () => {
- useNavigationHook(ALL_ROUTER_TYPES.COLLECTIONS);
- const { isManaged } = useContext(authContext);
- const { database } = useContext(dataContext);
- const [searchParams] = useSearchParams();
- const [search, setSearch] = useState<string>(
- (searchParams.get('search') as string) || ''
- );
- const [loading, setLoading] = useState<boolean>(false);
- const [selectedCollections, setSelectedCollections] = useState<
- CollectionView[]
- >([]);
- const { setDialog, openSnackBar } = useContext(rootContext);
- const { collections, setCollections } = useContext(webSocketContext);
- const { t: collectionTrans } = useTranslation('collection');
- const { t: btnTrans } = useTranslation('btn');
- const { t: successTrans } = useTranslation('success');
- const classes = useStyles();
- const LoadIcon = icons.load;
- const ReleaseIcon = icons.release;
- const InfoIcon = icons.info;
- const SourceIcon = icons.source;
- const fetchData = useCallback(async () => {
- try {
- setLoading(true);
- const res = await CollectionHttp.getCollections();
- const hasLoadingOrBuildingCollection = res.some(
- v => checkLoading(v) || checkIndexBuilding(v)
- );
- // if some collection is building index or loading, start pulling data
- if (hasLoadingOrBuildingCollection) {
- MilvusHttp.triggerCron({
- name: WS_EVENTS.COLLECTION,
- type: WS_EVENTS_TYPE.START,
- });
- }
- setCollections(res);
- } finally {
- setLoading(false);
- }
- }, [setCollections]);
- useEffect(() => {
- fetchData();
- }, [fetchData, database]);
- const formatCollections = useMemo(() => {
- const filteredCollections = search
- ? collections.filter(collection => collection._name.includes(search))
- : collections;
- const data = filteredCollections.map(v => {
- // const indexStatus = statusRes.find(item => item._name === v._name);
- Object.assign(v, {
- nameElement: (
- <Link
- to={`/collections/${v._name}`}
- className={classes.link}
- title={v._name}
- >
- <Highlighter
- textToHighlight={v._name}
- searchWords={[search]}
- highlightClassName={classes.highlight}
- />
- </Link>
- ),
- statusElement: (
- <Status status={v._status} percentage={v._loadedPercentage} />
- ),
- indexCreatingElement: (
- <StatusIcon type={v._indexState || ChildrenStatusType.FINISH} />
- ),
- _aliasElement: (
- <Aliases
- aliases={v._aliases}
- collectionName={v._name}
- onCreate={fetchData}
- onDelete={fetchData}
- />
- ),
- });
- return v;
- });
- return data;
- }, [search, collections]);
- const {
- pageSize,
- handlePageSize,
- currentPage,
- handleCurrentPage,
- total,
- data: collectionList,
- handleGridSort,
- order,
- orderBy,
- } = usePaginationHook(formatCollections);
- const handleInsert = async (
- collectionName: string,
- partitionName: string,
- fieldData: any[]
- ): Promise<{ result: boolean; msg: string }> => {
- const param: InsertDataParam = {
- partition_name: partitionName,
- fields_data: fieldData,
- };
- try {
- await CollectionHttp.insertData(collectionName, param);
- await MilvusHttp.flush(collectionName);
- // update collections
- fetchData();
- return { result: true, msg: '' };
- } catch (err: any) {
- const {
- response: {
- data: { message },
- },
- } = err;
- return { result: false, msg: message || '' };
- }
- };
- const onCreate = () => {
- openSnackBar(
- successTrans('create', { name: collectionTrans('collection') })
- );
- fetchData();
- };
- const onRelease = async () => {
- openSnackBar(
- successTrans('release', { name: collectionTrans('collection') })
- );
- fetchData();
- };
- const onLoad = () => {
- openSnackBar(successTrans('load', { name: collectionTrans('collection') }));
- fetchData();
- };
- const onDelete = () => {
- openSnackBar(
- successTrans('delete', { name: collectionTrans('collection') })
- );
- fetchData();
- setSelectedCollections([]);
- };
- const onRename = () => {
- openSnackBar(
- successTrans('rename', { name: collectionTrans('collection') })
- );
- fetchData();
- setSelectedCollections([]);
- };
- const handleSearch = (value: string) => {
- setSearch(value);
- };
- const toolbarConfigs: ToolBarConfig[] = [
- {
- label: collectionTrans('create'),
- onClick: () => {
- setDialog({
- open: true,
- type: 'custom',
- params: {
- component: <CreateCollectionDialog onCreate={onCreate} />,
- },
- });
- },
- icon: 'add',
- },
- {
- icon: 'uploadFile',
- type: 'iconBtn',
- label: btnTrans('insert'),
- onClick: () => {
- setDialog({
- open: true,
- type: 'custom',
- params: {
- component: (
- <InsertDialog
- collections={formatCollections}
- defaultSelectedCollection={
- selectedCollections.length === 1
- ? selectedCollections[0]._name
- : ''
- }
- // user can't select partition on collection page, so default value is ''
- defaultSelectedPartition={''}
- handleInsert={handleInsert}
- />
- ),
- },
- });
- },
- /**
- * insert validation:
- * 1. At least 1 available collection
- * 2. selected collections quantity shouldn't over 1
- */
- disabled: () =>
- collectionList.length === 0 || selectedCollections.length > 1,
- },
- {
- icon: 'edit',
- type: 'iconBtn',
- onClick: () => {
- setDialog({
- open: true,
- type: 'custom',
- params: {
- component: (
- <RenameCollectionDialog
- cb={onRename}
- collectionName={selectedCollections[0]._name}
- />
- ),
- },
- });
- },
- label: collectionTrans('rename'),
- // tooltip: collectionTrans('deleteTooltip'),
- disabledTooltip: collectionTrans('renameTooltip'),
- disabled: data => data.length !== 1,
- },
- {
- type: 'iconBtn',
- onClick: () => {
- setDialog({
- open: true,
- type: 'custom',
- params: {
- component: (
- <DropCollectionDialog
- onDelete={onDelete}
- collections={selectedCollections}
- />
- ),
- },
- });
- },
- label: collectionTrans('delete'),
- icon: 'delete',
- // tooltip: collectionTrans('deleteTooltip'),
- disabledTooltip: collectionTrans('deleteTooltip'),
- disabled: data => data.length === 0,
- },
- {
- type: 'iconBtn',
- onClick: () => {
- fetchData();
- },
- label: collectionTrans('delete'),
- icon: 'refresh',
- },
- {
- label: 'Search',
- icon: 'search',
- searchText: search,
- onSearch: (value: string) => {
- handleSearch(value);
- },
- },
- ];
- const colDefinitions: ColDefinitionsType[] = [
- {
- id: 'nameElement',
- align: 'left',
- disablePadding: true,
- sortBy: '_name',
- label: collectionTrans('name'),
- },
- {
- id: 'statusElement',
- align: 'left',
- disablePadding: false,
- sortBy: '_status',
- label: collectionTrans('status'),
- },
- {
- id: '_rowCount',
- align: 'left',
- disablePadding: false,
- label: (
- <span className="flex-center">
- {collectionTrans('rowCount')}
- <CustomToolTip title={collectionTrans('entityCountInfo')}>
- <InfoIcon classes={{ root: classes.icon }} />
- </CustomToolTip>
- </span>
- ),
- },
- {
- id: 'consistency_level',
- align: 'left',
- disablePadding: false,
- label: (
- <span className="flex-center">
- {collectionTrans('consistencyLevel')}
- <CustomToolTip title={collectionTrans('consistencyLevelInfo')}>
- <InfoIcon classes={{ root: classes.icon }} />
- </CustomToolTip>
- </span>
- ),
- },
- {
- id: '_desc',
- align: 'left',
- disablePadding: false,
- label: collectionTrans('desc'),
- },
- {
- id: '_createdTime',
- align: 'left',
- disablePadding: false,
- label: collectionTrans('createdTime'),
- },
- // {
- // id: 'indexCreatingElement',
- // align: 'left',
- // disablePadding: false,
- // label: '',
- // },
- {
- id: 'action',
- align: 'center',
- disablePadding: false,
- label: '',
- showActionCell: true,
- isHoverAction: true,
- actionBarConfigs: [
- {
- onClick: (e: React.MouseEvent, row: CollectionView) => {
- setDialog({
- open: true,
- type: 'custom',
- params: {
- component:
- row._status === LOADING_STATE.UNLOADED ? (
- <LoadCollectionDialog
- collection={row._name}
- onLoad={onLoad}
- />
- ) : (
- <ReleaseCollectionDialog
- collection={row._name}
- onRelease={onRelease}
- />
- ),
- },
- });
- e.preventDefault();
- },
- icon: 'load',
- label: 'load',
- showIconMethod: 'renderFn',
- getLabel: (row: CollectionView) =>
- row._status === LOADING_STATE.UNLOADED ? 'load' : 'release',
- renderIconFn: (row: CollectionView) =>
- row._status === LOADING_STATE.UNLOADED ? (
- <LoadIcon />
- ) : (
- <ReleaseIcon />
- ),
- },
- ],
- },
- {
- id: 'import',
- align: 'center',
- disablePadding: false,
- label: '',
- showActionCell: true,
- isHoverAction: true,
- actionBarConfigs: [
- {
- onClick: (e: React.MouseEvent, row: CollectionView) => {
- setDialog({
- open: true,
- type: 'custom',
- params: {
- component: <ImportSampleDialog collection={row._name} />,
- },
- });
- },
- icon: 'source',
- label: 'Import',
- showIconMethod: 'renderFn',
- getLabel: () => 'Import sample data',
- renderIconFn: (row: CollectionView) => <SourceIcon />,
- },
- ],
- },
- ];
- if (!isManaged) {
- colDefinitions.splice(3, 0, {
- id: '_aliasElement',
- align: 'left',
- disablePadding: false,
- label: (
- <span className="flex-center">
- {collectionTrans('alias')}
- <CustomToolTip title={collectionTrans('aliasInfo')}>
- <InfoIcon classes={{ root: classes.icon }} />
- </CustomToolTip>
- </span>
- ),
- });
- }
- const handleSelectChange = (value: any) => {
- setSelectedCollections(value);
- };
- const handlePageChange = (e: any, page: number) => {
- handleCurrentPage(page);
- setSelectedCollections([]);
- };
- const CollectionIcon = icons.navCollection;
- return (
- <section className="page-wrapper">
- {collections.length > 0 || loading ? (
- <AttuGrid
- toolbarConfigs={toolbarConfigs}
- colDefinitions={colDefinitions}
- rows={collectionList}
- rowCount={total}
- primaryKey="_name"
- selected={selectedCollections}
- setSelected={handleSelectChange}
- page={currentPage}
- onPageChange={handlePageChange}
- rowsPerPage={pageSize}
- setRowsPerPage={handlePageSize}
- isLoading={loading}
- handleSort={handleGridSort}
- order={order}
- orderBy={orderBy}
- />
- ) : (
- <>
- <CustomToolBar toolbarConfigs={toolbarConfigs} />
- <EmptyCard
- wrapperClass={`page-empty-card ${classes.emptyWrapper}`}
- icon={<CollectionIcon />}
- text={collectionTrans('noData')}
- />
- </>
- )}
- </section>
- );
- };
- export default Collections;
|