123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- import { makeStyles, Theme, Typography } from '@material-ui/core';
- import { FC, useCallback, useEffect, useState } from 'react';
- import MilvusGrid from '../../components/grid/Grid';
- import { ColDefinitionsType } from '../../components/grid/Types';
- import { useTranslation } from 'react-i18next';
- import { usePaginationHook } from '../../hooks/Pagination';
- import icons from '../../components/icons/Icons';
- import CustomToolTip from '../../components/customToolTip/CustomToolTip';
- import { FieldHttp } from '../../http/Field';
- import { FieldView } from './Types';
- import IndexTypeElement from './IndexTypeElement';
- import { DataType } from '../collections/Types';
- import { IndexHttp } from '../../http/Index';
- const useStyles = makeStyles((theme: Theme) => ({
- wrapper: {
- height: '100%',
- },
- icon: {
- fontSize: '20px',
- marginLeft: theme.spacing(0.5),
- },
- nameWrapper: {
- display: 'flex',
- alignItems: 'center',
- '& .key': {
- width: '16px',
- height: '16px',
- marginLeft: theme.spacing(0.5),
- },
- },
- paramWrapper: {
- '& .param': {
- marginRight: theme.spacing(2),
- '& .key': {
- color: theme.palette.milvusGrey.dark,
- display: 'inline-block',
- marginRight: theme.spacing(0.5),
- },
- '& .value': {
- color: '#010e29',
- },
- },
- },
- }));
- const Schema: FC<{
- collectionName: string;
- }> = ({ collectionName }) => {
- const classes = useStyles();
- const { t: collectionTrans } = useTranslation('collection');
- const { t: indexTrans } = useTranslation('index');
- const InfoIcon = icons.info;
- const [fields, setFields] = useState<FieldView[]>([]);
- const [loading, setLoading] = useState<boolean>(true);
- const {
- pageSize,
- handlePageSize,
- currentPage,
- handleCurrentPage,
- total,
- data: schemaList,
- } = usePaginationHook(fields);
- const fetchSchemaListWithIndex = async (
- collectionName: string
- ): Promise<FieldView[]> => {
- const vectorTypes: DataType[] = ['BinaryVector', 'FloatVector'];
- const indexList = await IndexHttp.getIndexInfo(collectionName);
- const schemaList = await FieldHttp.getFields(collectionName);
- let fields: FieldView[] = [];
- for (const schema of schemaList) {
- let field: FieldView = Object.assign(schema, {
- _indexParameterPairs: [],
- _indexType: '',
- });
- if (vectorTypes.includes(schema.data_type)) {
- const index = indexList.find(i => i._fieldName === schema.name);
- field._indexParameterPairs = index?._indexParameterPairs || [];
- field._indexType = index?._indexType || '';
- field._createIndexDisabled = indexList.length > 0;
- }
- fields = [...fields, field];
- }
- return fields;
- };
- const fetchFields = useCallback(
- async (collectionName: string) => {
- const KeyIcon = icons.key;
- try {
- const list = await fetchSchemaListWithIndex(collectionName);
- const fields: FieldView[] = list.map(f =>
- Object.assign(f, {
- _fieldNameElement: (
- <div className={classes.nameWrapper}>
- {f._fieldName}
- {f._isPrimaryKey && <KeyIcon classes={{ root: 'key' }} />}
- </div>
- ),
- _indexParamElement: (
- <div className={classes.paramWrapper}>
- {f._indexParameterPairs?.length > 0 ? (
- f._indexParameterPairs.map(p => (
- <span key={p.key} className="param">
- <Typography variant="body1" className="key">
- {`${p.key}:`}
- </Typography>
- <Typography variant="body1" className="value">
- {p.value}
- </Typography>
- </span>
- ))
- ) : (
- <>--</>
- )}
- </div>
- ),
- _indexTypeElement: (
- <IndexTypeElement
- data={f}
- collectionName={collectionName}
- cb={fetchFields}
- />
- ),
- })
- );
- setFields(fields);
- setLoading(false);
- } catch (err) {
- setLoading(false);
- throw err;
- }
- },
- [classes.nameWrapper, classes.paramWrapper]
- );
- useEffect(() => {
- fetchFields(collectionName);
- }, [collectionName, fetchFields]);
- const colDefinitions: ColDefinitionsType[] = [
- {
- id: '_fieldNameElement',
- align: 'left',
- disablePadding: true,
- label: collectionTrans('fieldName'),
- sortBy: '_fieldName',
- },
- {
- id: '_fieldType',
- align: 'left',
- disablePadding: false,
- label: collectionTrans('fieldType'),
- },
- {
- id: '_dimension',
- align: 'left',
- disablePadding: false,
- label: (
- <span className="flex-center">
- {collectionTrans('dimension')}
- <CustomToolTip title={collectionTrans('dimensionTooltip')}>
- <InfoIcon classes={{ root: classes.icon }} />
- </CustomToolTip>
- </span>
- ),
- },
- {
- id: '_indexTypeElement',
- align: 'left',
- disablePadding: true,
- label: indexTrans('type'),
- sortBy: '_indexType',
- },
- {
- id: '_indexParamElement',
- align: 'left',
- disablePadding: false,
- label: indexTrans('param'),
- notSort: true,
- },
- {
- id: '_desc',
- align: 'left',
- disablePadding: false,
- label: indexTrans('desc'),
- },
- ];
- const handlePageChange = (e: any, page: number) => {
- handleCurrentPage(page);
- };
- return (
- <section className={classes.wrapper}>
- <MilvusGrid
- toolbarConfigs={[]}
- colDefinitions={colDefinitions}
- rows={schemaList}
- rowCount={total}
- primaryKey="_fieldId"
- showHoverStyle={false}
- page={currentPage}
- onChangePage={handlePageChange}
- rowsPerPage={pageSize}
- setRowsPerPage={handlePageSize}
- isLoading={loading}
- />
- </section>
- );
- };
- export default Schema;
|