mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-12 20:51:48 +00:00
514 lines
15 KiB
TypeScript
514 lines
15 KiB
TypeScript
import type { ActionType, ProColumns } from '@ant-design/pro-components';
|
|
import { ProTable } from '@ant-design/pro-components';
|
|
import { message, Button, Space, Popconfirm, Input, Tag, Select } from 'antd';
|
|
import React, { useRef, useState, useEffect } from 'react';
|
|
import { useModel, history } from '@umijs/max';
|
|
import { StatusEnum, SemanticNodeType } from '../enum';
|
|
import { SENSITIVE_LEVEL_ENUM, SENSITIVE_LEVEL_OPTIONS, TAG_DEFINE_TYPE } from '../constant';
|
|
import {
|
|
getModelList,
|
|
getDimensionList,
|
|
deleteDimension,
|
|
batchUpdateDimensionStatus,
|
|
batchCreateTag,
|
|
} from '../service';
|
|
import DimensionInfoModal from './DimensionInfoModal';
|
|
import DimensionValueSettingModal from './DimensionValueSettingModal';
|
|
import { ISemantic, IDataSource } from '../data';
|
|
import TableHeaderFilter from '@/components/TableHeaderFilter';
|
|
import BatchCtrlDropDownButton from '@/components/BatchCtrlDropDownButton';
|
|
import { ColumnsConfig } from './TableColumnRender';
|
|
import BatchSensitiveLevelModal from '@/components/BatchCtrlDropDownButton/BatchSensitiveLevelModal';
|
|
import { toDimensionEditPage } from '@/pages/SemanticModel/utils';
|
|
import styles from './style.less';
|
|
|
|
type Props = {};
|
|
|
|
const ClassDimensionTable: React.FC<Props> = ({}) => {
|
|
const domainModel = useModel('SemanticModel.domainData');
|
|
const modelModel = useModel('SemanticModel.modelData');
|
|
const dimensionModel = useModel('SemanticModel.dimensionData');
|
|
const { selectDomainId: domainId } = domainModel;
|
|
const { selectModelId: modelId } = modelModel;
|
|
const { MrefreshDimensionList } = dimensionModel;
|
|
const [createModalVisible, setCreateModalVisible] = useState<boolean>(false);
|
|
const [dimensionItem, setDimensionItem] = useState<ISemantic.IDimensionItem>();
|
|
const [dataSourceList, setDataSourceList] = useState<IDataSource.IDataSourceItem[]>([]);
|
|
const [tableData, setTableData] = useState<ISemantic.IMetricItem[]>([]);
|
|
const [filterParams, setFilterParams] = useState<Record<string, any>>({});
|
|
const [loading, setLoading] = useState<boolean>(false);
|
|
const [selectedRowKeys, setSelectedRowKeys] = useState<React.Key[]>([]);
|
|
const [batchSensitiveLevelOpenState, setBatchSensitiveLevelOpenState] = useState<boolean>(false);
|
|
const [dimensionValueSettingList, setDimensionValueSettingList] = useState<
|
|
ISemantic.IDimensionValueSettingItem[]
|
|
>([]);
|
|
const [dimensionValueSettingModalVisible, setDimensionValueSettingModalVisible] =
|
|
useState<boolean>(false);
|
|
|
|
const defaultPagination = {
|
|
current: 1,
|
|
pageSize: 20,
|
|
total: 0,
|
|
};
|
|
const [pagination, setPagination] = useState(defaultPagination);
|
|
|
|
const actionRef = useRef<ActionType>();
|
|
|
|
const queryDimensionList = async (params: any) => {
|
|
if (!modelId) {
|
|
return;
|
|
}
|
|
setLoading(true);
|
|
const { code, data, msg } = await getDimensionList({
|
|
...pagination,
|
|
...params,
|
|
modelId,
|
|
});
|
|
setLoading(false);
|
|
const { list, pageSize, pageNum, total } = data || {};
|
|
if (code === 200) {
|
|
setPagination({
|
|
...pagination,
|
|
pageSize: Math.min(pageSize, 100),
|
|
current: pageNum,
|
|
total,
|
|
});
|
|
setTableData(list);
|
|
} else {
|
|
message.error(msg);
|
|
setTableData([]);
|
|
}
|
|
};
|
|
|
|
const queryDataSourceList = async () => {
|
|
if (!domainId) {
|
|
return;
|
|
}
|
|
const { code, data, msg } = await getModelList(domainId);
|
|
if (code === 200) {
|
|
setDataSourceList(data);
|
|
} else {
|
|
message.error(msg);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
queryDimensionList({ ...filterParams, ...defaultPagination });
|
|
}, [filterParams, modelId]);
|
|
|
|
useEffect(() => {
|
|
queryDataSourceList();
|
|
}, [domainId]);
|
|
|
|
const queryBatchUpdateStatus = async (ids: React.Key[], status: StatusEnum) => {
|
|
if (Array.isArray(ids) && ids.length === 0) {
|
|
return;
|
|
}
|
|
setLoading(true);
|
|
const { code, msg } = await batchUpdateDimensionStatus({
|
|
ids,
|
|
status,
|
|
});
|
|
setLoading(false);
|
|
if (code === 200) {
|
|
queryDimensionList({ ...filterParams, ...pagination });
|
|
MrefreshDimensionList({ modelId });
|
|
return;
|
|
}
|
|
message.error(msg);
|
|
};
|
|
|
|
const queryBatchExportTag = async (ids: React.Key[]) => {
|
|
if (Array.isArray(ids) && ids.length === 0) {
|
|
return;
|
|
}
|
|
setLoading(true);
|
|
const { code, msg } = await batchCreateTag(
|
|
ids.map((id) => {
|
|
return {
|
|
itemId: id,
|
|
tagDefineType: TAG_DEFINE_TYPE.DIMENSION,
|
|
};
|
|
}),
|
|
);
|
|
|
|
setLoading(false);
|
|
if (code === 200) {
|
|
queryDimensionList({ ...filterParams, ...pagination });
|
|
MrefreshDimensionList({ modelId });
|
|
return;
|
|
}
|
|
message.error(msg);
|
|
};
|
|
|
|
// const columnsConfig = ColumnsConfig();
|
|
const columnsConfig = ColumnsConfig({
|
|
indicatorInfo: {
|
|
url: '/model/dimension/:domainId/:modelId/:indicatorId',
|
|
onNameClick: (record) => {
|
|
const { id } = record;
|
|
toDimensionEditPage(domainId, modelId!, id);
|
|
return false;
|
|
},
|
|
},
|
|
});
|
|
|
|
const columns: ProColumns[] = [
|
|
{
|
|
dataIndex: 'id',
|
|
title: 'ID',
|
|
fixed: 'left',
|
|
width: 80,
|
|
order: 100,
|
|
search: false,
|
|
},
|
|
{
|
|
dataIndex: 'key',
|
|
title: '维度搜索',
|
|
hideInTable: true,
|
|
},
|
|
{
|
|
dataIndex: 'name',
|
|
title: '维度',
|
|
fixed: 'left',
|
|
// width: 280,
|
|
render: columnsConfig.dimensionInfo.render,
|
|
search: false,
|
|
},
|
|
{
|
|
dataIndex: 'sensitiveLevel',
|
|
title: '敏感度',
|
|
// width: 100,
|
|
valueEnum: SENSITIVE_LEVEL_ENUM,
|
|
render: columnsConfig.sensitiveLevel.render,
|
|
},
|
|
{
|
|
dataIndex: 'isTag',
|
|
title: '是否标签',
|
|
// width: 90,
|
|
hideInTable: !!!process.env.SHOW_TAG,
|
|
render: (isTag) => {
|
|
switch (isTag) {
|
|
case 0:
|
|
return '否';
|
|
case 1:
|
|
return <span style={{ color: '#1677ff' }}>是</span>;
|
|
default:
|
|
return <Tag color="default">未知</Tag>;
|
|
}
|
|
},
|
|
},
|
|
{
|
|
dataIndex: 'status',
|
|
title: '状态',
|
|
// width: 100,
|
|
search: false,
|
|
render: columnsConfig.state.render,
|
|
},
|
|
|
|
{
|
|
dataIndex: 'description',
|
|
title: '描述',
|
|
width: 300,
|
|
search: false,
|
|
render: columnsConfig.description.render,
|
|
},
|
|
|
|
{
|
|
...columnsConfig.createInfo,
|
|
},
|
|
{
|
|
title: '操作',
|
|
dataIndex: 'x',
|
|
valueType: 'option',
|
|
fixed: 'right',
|
|
width: 250,
|
|
render: (_, record) => {
|
|
return (
|
|
<Space className={styles.ctrlBtnContainer}>
|
|
<Button
|
|
key="dimensionEditBtn"
|
|
type="link"
|
|
onClick={() => {
|
|
// setDimensionItem(record);
|
|
// setCreateModalVisible(true);
|
|
const { id } = record;
|
|
toDimensionEditPage(domainId, modelId!, id);
|
|
}}
|
|
>
|
|
编辑
|
|
</Button>
|
|
<Button
|
|
key="dimensionValueEditBtn"
|
|
type="link"
|
|
onClick={() => {
|
|
setDimensionItem(record);
|
|
setDimensionValueSettingModalVisible(true);
|
|
if (Array.isArray(record.dimValueMaps)) {
|
|
setDimensionValueSettingList(record.dimValueMaps);
|
|
} else {
|
|
setDimensionValueSettingList([]);
|
|
}
|
|
}}
|
|
>
|
|
维度值设置
|
|
</Button>
|
|
{record.status === StatusEnum.ONLINE ? (
|
|
<Button
|
|
type="link"
|
|
key="editStatusOfflineBtn"
|
|
onClick={() => {
|
|
queryBatchUpdateStatus([record.id], StatusEnum.OFFLINE);
|
|
}}
|
|
>
|
|
停用
|
|
</Button>
|
|
) : (
|
|
<Button
|
|
type="link"
|
|
key="editStatusOnlineBtn"
|
|
onClick={() => {
|
|
queryBatchUpdateStatus([record.id], StatusEnum.ONLINE);
|
|
}}
|
|
>
|
|
启用
|
|
</Button>
|
|
)}
|
|
<Popconfirm
|
|
title="确认删除?"
|
|
okText="是"
|
|
cancelText="否"
|
|
placement="left"
|
|
onConfirm={async () => {
|
|
const { code, msg } = await deleteDimension(record.id);
|
|
if (code === 200) {
|
|
setDimensionItem(undefined);
|
|
queryDimensionList({ ...filterParams, ...defaultPagination });
|
|
} else {
|
|
message.error(msg);
|
|
}
|
|
}}
|
|
>
|
|
<Button
|
|
type="link"
|
|
key="dimensionDeleteEditBtn"
|
|
onClick={() => {
|
|
setDimensionItem(record);
|
|
}}
|
|
>
|
|
删除
|
|
</Button>
|
|
</Popconfirm>
|
|
</Space>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
|
|
const rowSelection = {
|
|
onChange: (selectedRowKeys: React.Key[]) => {
|
|
setSelectedRowKeys(selectedRowKeys);
|
|
},
|
|
};
|
|
|
|
const onMenuClick = (key: string) => {
|
|
switch (key) {
|
|
case 'batchStart':
|
|
queryBatchUpdateStatus(selectedRowKeys, StatusEnum.ONLINE);
|
|
break;
|
|
case 'batchStop':
|
|
queryBatchUpdateStatus(selectedRowKeys, StatusEnum.OFFLINE);
|
|
break;
|
|
case 'exportTagButton':
|
|
queryBatchExportTag(selectedRowKeys);
|
|
break;
|
|
case 'batchSensitiveLevel':
|
|
setBatchSensitiveLevelOpenState(true);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<ProTable
|
|
className={`${styles.classTable} ${styles.classTableSelectColumnAlignLeft} ${styles.disabledSearchTable}`}
|
|
actionRef={actionRef}
|
|
rowKey="id"
|
|
columns={columns}
|
|
loading={loading}
|
|
headerTitle={
|
|
<div style={{ marginLeft: 15 }}>
|
|
<TableHeaderFilter
|
|
components={
|
|
[
|
|
{
|
|
label: '维度搜索',
|
|
component: (
|
|
<Input.Search
|
|
style={{ width: 280 }}
|
|
placeholder="请输入ID/维度名称/英文名称"
|
|
onSearch={(value) => {
|
|
setFilterParams((preState) => {
|
|
return {
|
|
...preState,
|
|
key: value,
|
|
};
|
|
});
|
|
}}
|
|
/>
|
|
),
|
|
},
|
|
{
|
|
label: '敏感度',
|
|
component: (
|
|
<Select
|
|
style={{ width: 140 }}
|
|
options={SENSITIVE_LEVEL_OPTIONS}
|
|
placeholder="请选择敏感度"
|
|
allowClear
|
|
onChange={(value) => {
|
|
setFilterParams((preState) => {
|
|
return {
|
|
...preState,
|
|
sensitiveLevel: value,
|
|
};
|
|
});
|
|
}}
|
|
/>
|
|
),
|
|
},
|
|
{
|
|
label: '是否为标签',
|
|
hidden: !!!process.env.SHOW_TAG,
|
|
component: (
|
|
<Select
|
|
style={{ width: 145 }}
|
|
placeholder="请选择标签状态"
|
|
allowClear
|
|
onChange={(value) => {
|
|
setFilterParams((preState) => {
|
|
return {
|
|
...preState,
|
|
isTag: value,
|
|
};
|
|
});
|
|
}}
|
|
options={[
|
|
{ value: 1, label: '是' },
|
|
{ value: 0, label: '否' },
|
|
]}
|
|
/>
|
|
),
|
|
},
|
|
].filter((item) => !!!item.hidden) as any
|
|
}
|
|
/>
|
|
</div>
|
|
}
|
|
search={false}
|
|
// search={{
|
|
// optionRender: false,
|
|
// collapsed: false,
|
|
// }}
|
|
rowSelection={{
|
|
type: 'checkbox',
|
|
...rowSelection,
|
|
}}
|
|
dataSource={tableData}
|
|
pagination={pagination}
|
|
tableAlertRender={() => {
|
|
return false;
|
|
}}
|
|
size="large"
|
|
scroll={{ x: 1500 }}
|
|
options={{ reload: false, density: false, fullScreen: false }}
|
|
onChange={(data: any) => {
|
|
const { current, pageSize, total } = data;
|
|
const currentPagin = {
|
|
current,
|
|
pageSize,
|
|
total,
|
|
};
|
|
setPagination(currentPagin);
|
|
queryDimensionList({ ...filterParams, ...currentPagin });
|
|
}}
|
|
toolBarRender={() => [
|
|
<Button
|
|
key="create"
|
|
type="primary"
|
|
onClick={() => {
|
|
toDimensionEditPage(domainId, modelId!, 0);
|
|
// setDimensionItem(undefined);
|
|
// setCreateModalVisible(true);
|
|
}}
|
|
>
|
|
创建维度
|
|
</Button>,
|
|
<BatchCtrlDropDownButton
|
|
key="ctrlBtnList"
|
|
extenderList={['batchSensitiveLevel', 'exportTagButton']}
|
|
onDeleteConfirm={() => {
|
|
queryBatchUpdateStatus(selectedRowKeys, StatusEnum.DELETED);
|
|
}}
|
|
hiddenList={['batchDownload']}
|
|
onMenuClick={onMenuClick}
|
|
/>,
|
|
]}
|
|
/>
|
|
|
|
{createModalVisible && (
|
|
<DimensionInfoModal
|
|
modelId={modelId}
|
|
domainId={domainId}
|
|
bindModalVisible={createModalVisible}
|
|
dimensionItem={dimensionItem}
|
|
dataSourceList={dataSourceList}
|
|
onSubmit={() => {
|
|
setCreateModalVisible(false);
|
|
queryDimensionList({ ...filterParams, ...defaultPagination });
|
|
MrefreshDimensionList({ modelId });
|
|
return;
|
|
}}
|
|
onCancel={() => {
|
|
setCreateModalVisible(false);
|
|
}}
|
|
/>
|
|
)}
|
|
{dimensionValueSettingModalVisible && (
|
|
<DimensionValueSettingModal
|
|
dimensionValueSettingList={dimensionValueSettingList}
|
|
open={dimensionValueSettingModalVisible}
|
|
dimensionItem={dimensionItem}
|
|
onCancel={() => {
|
|
MrefreshDimensionList({ modelId });
|
|
|
|
setDimensionValueSettingModalVisible(false);
|
|
}}
|
|
onSubmit={() => {
|
|
queryDimensionList({ ...filterParams, ...defaultPagination });
|
|
MrefreshDimensionList({ modelId });
|
|
setDimensionValueSettingModalVisible(false);
|
|
}}
|
|
/>
|
|
)}
|
|
{batchSensitiveLevelOpenState && (
|
|
<BatchSensitiveLevelModal
|
|
ids={selectedRowKeys as number[]}
|
|
open={batchSensitiveLevelOpenState}
|
|
type={SemanticNodeType.DIMENSION}
|
|
onCancel={() => {
|
|
setBatchSensitiveLevelOpenState(false);
|
|
}}
|
|
onSubmit={() => {
|
|
queryDimensionList({ ...filterParams, ...pagination });
|
|
setBatchSensitiveLevelOpenState(false);
|
|
}}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
export default ClassDimensionTable;
|