123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391 |
- import { Theme, Typography, Chip, Tooltip } from '@mui/material';
- import { useContext } from 'react';
- import { useParams } from 'react-router-dom';
- import AttuGrid from '@/components/grid/Grid';
- import { ColDefinitionsType } from '@/components/grid/Types';
- import { useTranslation } from 'react-i18next';
- import Icons from '@/components/icons/Icons';
- import { formatFieldType } from '@/utils';
- import { dataContext } from '@/context';
- import IndexTypeElement from './IndexTypeElement';
- import { getLabelDisplayedRows } from '@/pages/search/Utils';
- import StatusAction from '@/pages/databases/collections/StatusAction';
- import CustomToolTip from '@/components/customToolTip/CustomToolTip';
- import { FieldObject } from '@server/types';
- import { makeStyles } from '@mui/styles';
- const useStyles = makeStyles((theme: Theme) => ({
- wrapper: {
- display: 'flex',
- flexDirection: 'column',
- flexGrow: 1,
- height: `100%`,
- overflow: 'auto',
- '& h5': {
- color: theme.palette.text.secondary,
- marginBottom: theme.spacing(0.5),
- fontSize: 13,
- fontWeight: 400,
- },
- },
- infoWrapper: {
- marginBottom: theme.spacing(2),
- paddingTop: theme.spacing(0.5),
- },
- horizonalBlock: {
- display: 'flex',
- flexWrap: 'wrap',
- '& >div': {
- marginRight: theme.spacing(2),
- },
- },
- block: {
- '& *': {
- fontSize: '14px',
- lineHeight: 1.5,
- },
- color: theme.palette.text.primary,
- paddingBottom: theme.spacing(2),
- },
- icon: {
- fontSize: '20px',
- marginLeft: theme.spacing(0.5),
- },
- extraBtn: {
- height: 24,
- },
- questionIcon: {
- position: 'relative',
- top: '2px',
- right: '-2px',
- },
- primaryKeyChip: {
- fontSize: '8px',
- position: 'relative',
- top: '3px',
- color: 'grey',
- },
- chip: {
- marginLeft: theme.spacing(0.5),
- marginRight: theme.spacing(0.5),
- fontSize: '12px',
- background: 'rgba(0, 0, 0, 0.04)',
- border: 'none',
- },
- featureChip: {
- marginLeft: 0,
- border: 'none',
- },
- nameWrapper: {
- display: 'flex',
- alignItems: 'center',
- '& .key': {
- width: '16px',
- height: '16px',
- marginLeft: theme.spacing(0.5),
- },
- },
- paramWrapper: {
- // set min width to prevent other table cell stretching
- minWidth: 180,
- '& .param': {
- marginRight: theme.spacing(2),
- '& .key': {
- color: theme.palette.text.secondary,
- display: 'inline-block',
- marginRight: theme.spacing(0.5),
- },
- '& .value': {
- color: theme.palette.text.primary,
- },
- },
- },
- gridWrapper: {
- paddingBottom: theme.spacing(2),
- },
- }));
- const Overview = () => {
- const { fetchCollection, collections, loading } = useContext(dataContext);
- const { collectionName = '' } = useParams<{ collectionName: string }>();
- const classes = useStyles();
- const { t: collectionTrans } = useTranslation('collection');
- const { t: indexTrans } = useTranslation('index');
- const { t: commonTrans } = useTranslation();
- const gridTrans = commonTrans('grid');
- const consistencyTooltipsMap: Record<string, string> = {
- Strong: collectionTrans('consistencyStrongTooltip'),
- Bounded: collectionTrans('consistencyBoundedTooltip'),
- Session: collectionTrans('consistencySessionTooltip'),
- Eventually: collectionTrans('consistencyEventuallyTooltip'),
- };
- // get collection
- const collection = collections.find(
- c => c.collection_name === collectionName
- );
- // get fields
- const fields = collection?.schema?.fields || [];
- const colDefinitions: ColDefinitionsType[] = [
- {
- id: 'name',
- align: 'left',
- disablePadding: true,
- formatter(f) {
- return (
- <div className={classes.nameWrapper}>
- {f.name}
- {f.is_primary_key ? (
- <div
- className={classes.primaryKeyChip}
- title={collectionTrans('idFieldName')}
- >
- <Icons.key classes={{ root: 'key' }} />
- </div>
- ) : null}
- {f.is_partition_key ? (
- <Chip
- className={classes.chip}
- size="small"
- label="Partition key"
- variant="outlined"
- />
- ) : null}
- {f.autoID ? (
- <Chip
- className={classes.chip}
- size="small"
- label="auto id"
- variant="outlined"
- />
- ) : null}
- </div>
- );
- },
- label: collectionTrans('fieldName'),
- sortBy: 'name',
- },
- {
- id: 'data_type',
- align: 'left',
- disablePadding: false,
- formatter(f) {
- return formatFieldType(f);
- },
- label: collectionTrans('fieldType'),
- },
- {
- id: 'name',
- align: 'left',
- disablePadding: true,
- label: indexTrans('indexName'),
- formatter(f) {
- return f.index?.index_name;
- },
- },
- {
- id: 'name',
- align: 'left',
- disablePadding: true,
- label: indexTrans('type'),
- notSort: true,
- formatter(f) {
- return (
- <IndexTypeElement
- field={f}
- collectionName={collectionName}
- cb={async () => {
- await fetchCollection(collectionName);
- }}
- />
- );
- },
- },
- {
- id: 'name',
- align: 'left',
- disablePadding: false,
- label: indexTrans('param'),
- notSort: true,
- formatter(f) {
- return f.index ? (
- <div className={classes.paramWrapper}>
- {f.index.indexParameterPairs.length > 0 ? (
- f.index.indexParameterPairs.map((p: any) =>
- p.value ? (
- <span key={p.key + p.value}>
- <span className="param">
- <Typography variant="body1" className="key">
- {`${p.key}:`}
- </Typography>
- <Typography variant="body1" className="value">
- {p.value}
- </Typography>
- </span>
- </span>
- ) : (
- ''
- )
- )
- ) : (
- <>--</>
- )}
- </div>
- ) : (
- <>--</>
- );
- },
- },
- {
- id: 'description',
- align: 'left',
- disablePadding: false,
- label: indexTrans('desc'),
- },
- ];
- // only show create index element when there is only one vector field
- let CreateIndexElement = null;
- if (
- collection &&
- collection.schema &&
- collection.schema.vectorFields.length === 1
- ) {
- CreateIndexElement = (
- <IndexTypeElement
- field={
- (collection.schema && collection.schema.vectorFields[0]) ||
- ({} as FieldObject)
- }
- collectionName={collectionName}
- cb={async () => {
- await fetchCollection(collectionName);
- }}
- />
- );
- }
- // get loading state label
- return (
- <section className={classes.wrapper}>
- {collection && (
- <section className={classes.infoWrapper}>
- <div className={classes.block}>
- <Typography variant="h5">
- {collectionTrans('description')}
- </Typography>
- <Typography variant="h6">
- {collection?.description || '--'}
- </Typography>
- </div>
- <section className={classes.horizonalBlock}>
- <div className={classes.block}>
- <Typography variant="h5">{collectionTrans('status')}</Typography>
- <StatusAction
- status={collection.status}
- percentage={collection.loadedPercentage}
- collection={collection}
- showExtraAction={true}
- createIndexElement={CreateIndexElement}
- />
- </div>
- </section>
- <div className={classes.block}>
- <Typography variant="h5">
- {collectionTrans('rowCount')}
- <CustomToolTip title={collectionTrans('entityCountInfo')}>
- <Icons.question classes={{ root: classes.questionIcon }} />
- </CustomToolTip>
- </Typography>
- <Typography variant="h6">{collection?.rowCount || '0'}</Typography>
- </div>
- <div className={classes.block}>
- <Typography variant="h5">
- {collectionTrans('createdTime')}
- </Typography>
- <Typography variant="h6">
- {new Date(collection.createdTime).toLocaleString()}
- </Typography>
- </div>
- <div className={classes.block}>
- <Typography variant="h5">
- {collectionTrans('consistency')}
- <CustomToolTip title={collectionTrans('consistencyLevelInfo')}>
- <Icons.question classes={{ root: classes.questionIcon }} />
- </CustomToolTip>
- </Typography>
- <Typography variant="h6">
- <Tooltip
- title={
- consistencyTooltipsMap[collection.consistency_level!] || ''
- }
- placement="top"
- arrow
- >
- <Chip
- className={`${classes.chip} ${classes.featureChip}`}
- label={collection.consistency_level}
- variant="outlined"
- size="small"
- />
- </Tooltip>
- </Typography>
- </div>
- </section>
- )}
- <section className={classes.gridWrapper}>
- <Typography variant="h5">
- {collectionTrans('schema')}
- {collection &&
- collection.schema &&
- collection.schema.enable_dynamic_field ? (
- <Tooltip
- title={collectionTrans('dynamicSchemaTooltip')}
- placement="top"
- arrow
- >
- <Chip
- className={`${classes.chip}`}
- label={collectionTrans('dynamicSchema')}
- size="small"
- icon={<Icons.check />}
- />
- </Tooltip>
- ) : null}
- </Typography>
- <AttuGrid
- toolbarConfigs={[]}
- colDefinitions={colDefinitions}
- rows={fields}
- rowCount={fields.length}
- primaryKey="fieldID"
- showHoverStyle={false}
- isLoading={loading}
- openCheckBox={false}
- showPagination={false}
- labelDisplayedRows={getLabelDisplayedRows(
- gridTrans[fields.length > 1 ? 'fields' : 'field']
- )}
- />
- </section>
- </section>
- );
- };
- export default Overview;
|