mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-10 19:51:00 +00:00
* [improvement][semantic-fe] Add model alias setting & Add view permission restrictions to the model permission management tab. [improvement][semantic-fe] Add permission control to the action buttons for the main domain; apply high sensitivity filtering to the authorization of metrics/dimensions. [improvement][semantic-fe] Optimize the editing mode in the dimension/metric/datasource components to use the modelId stored in the database for data, instead of relying on the data from the state manager. * [improvement][semantic-fe] Add time granularity setting in the data source configuration. * [improvement][semantic-fe] Dictionary import for dimension values supported in Q&A visibility
297 lines
7.7 KiB
TypeScript
297 lines
7.7 KiB
TypeScript
import type { ActionType, ProColumns } from '@ant-design/pro-table';
|
|
import ProTable from '@ant-design/pro-table';
|
|
import { message, Button, Space, Popconfirm, Input } from 'antd';
|
|
import React, { useRef, useState, useEffect } from 'react';
|
|
import type { Dispatch } from 'umi';
|
|
import { connect } from 'umi';
|
|
import type { StateType } from '../model';
|
|
import { SENSITIVE_LEVEL_ENUM } from '../constant';
|
|
import { getDatasourceList, getDimensionList, deleteDimension } from '../service';
|
|
import DimensionInfoModal from './DimensionInfoModal';
|
|
import DimensionValueSettingModal from './DimensionValueSettingModal';
|
|
import { ISemantic } from '../data';
|
|
import moment from 'moment';
|
|
import styles from './style.less';
|
|
|
|
type Props = {
|
|
dispatch: Dispatch;
|
|
domainManger: StateType;
|
|
};
|
|
|
|
const ClassDimensionTable: React.FC<Props> = ({ domainManger, dispatch }) => {
|
|
const { selectModelId: modelId } = domainManger;
|
|
const [createModalVisible, setCreateModalVisible] = useState<boolean>(false);
|
|
const [dimensionItem, setDimensionItem] = useState<ISemantic.IDimensionItem>();
|
|
const [dataSourceList, setDataSourceList] = useState<any[]>([]);
|
|
const [dimensionValueSettingList, setDimensionValueSettingList] = useState<
|
|
ISemantic.IDimensionValueSettingItem[]
|
|
>([]);
|
|
const [dimensionValueSettingModalVisible, setDimensionValueSettingModalVisible] =
|
|
useState<boolean>(false);
|
|
const [pagination, setPagination] = useState({
|
|
current: 1,
|
|
pageSize: 20,
|
|
total: 0,
|
|
});
|
|
|
|
const actionRef = useRef<ActionType>();
|
|
|
|
const queryDimensionList = async (params: any) => {
|
|
const { code, data, msg } = await getDimensionList({
|
|
...params,
|
|
...pagination,
|
|
modelId,
|
|
});
|
|
const { list, pageSize, current, total } = data || {};
|
|
let resData: any = {};
|
|
if (code === 200) {
|
|
setPagination({
|
|
pageSize: Math.min(pageSize, 100),
|
|
current,
|
|
total,
|
|
});
|
|
|
|
resData = {
|
|
data: list || [],
|
|
success: true,
|
|
};
|
|
} else {
|
|
message.error(msg);
|
|
resData = {
|
|
data: [],
|
|
total: 0,
|
|
success: false,
|
|
};
|
|
}
|
|
return resData;
|
|
};
|
|
|
|
const queryDataSourceList = async () => {
|
|
const { code, data, msg } = await getDatasourceList({ modelId });
|
|
if (code === 200) {
|
|
setDataSourceList(data);
|
|
} else {
|
|
message.error(msg);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
queryDataSourceList();
|
|
}, [modelId]);
|
|
|
|
const columns: ProColumns[] = [
|
|
{
|
|
dataIndex: 'id',
|
|
title: 'ID',
|
|
width: 80,
|
|
order: 100,
|
|
search: false,
|
|
},
|
|
{
|
|
dataIndex: 'key',
|
|
title: '维度搜索',
|
|
hideInTable: true,
|
|
renderFormItem: () => <Input placeholder="请输入ID/维度名称/字段名称" />,
|
|
},
|
|
{
|
|
dataIndex: 'name',
|
|
title: '维度名称',
|
|
search: false,
|
|
},
|
|
{
|
|
dataIndex: 'alias',
|
|
title: '别名',
|
|
width: 300,
|
|
ellipsis: true,
|
|
search: false,
|
|
},
|
|
{
|
|
dataIndex: 'bizName',
|
|
title: '字段名称',
|
|
search: false,
|
|
// order: 9,
|
|
},
|
|
{
|
|
dataIndex: 'sensitiveLevel',
|
|
title: '敏感度',
|
|
width: 80,
|
|
valueEnum: SENSITIVE_LEVEL_ENUM,
|
|
},
|
|
|
|
{
|
|
dataIndex: 'datasourceName',
|
|
title: '数据源名称',
|
|
search: false,
|
|
},
|
|
{
|
|
dataIndex: 'createdBy',
|
|
title: '创建人',
|
|
search: false,
|
|
},
|
|
|
|
{
|
|
dataIndex: 'description',
|
|
title: '描述',
|
|
search: false,
|
|
},
|
|
|
|
{
|
|
dataIndex: 'updatedAt',
|
|
title: '更新时间',
|
|
search: false,
|
|
render: (value: any) => {
|
|
return value && value !== '-' ? moment(value).format('YYYY-MM-DD HH:mm:ss') : '-';
|
|
},
|
|
},
|
|
|
|
{
|
|
title: '操作',
|
|
dataIndex: 'x',
|
|
valueType: 'option',
|
|
render: (_, record) => {
|
|
return (
|
|
<Space>
|
|
<a
|
|
key="dimensionEditBtn"
|
|
onClick={() => {
|
|
setDimensionItem(record);
|
|
setCreateModalVisible(true);
|
|
}}
|
|
>
|
|
编辑
|
|
</a>
|
|
<a
|
|
key="dimensionValueEditBtn"
|
|
onClick={() => {
|
|
setDimensionItem(record);
|
|
setDimensionValueSettingModalVisible(true);
|
|
if (Array.isArray(record.dimValueMaps)) {
|
|
setDimensionValueSettingList(record.dimValueMaps);
|
|
} else {
|
|
setDimensionValueSettingList([]);
|
|
}
|
|
}}
|
|
>
|
|
维度值设置
|
|
</a>
|
|
<Popconfirm
|
|
title="确认删除?"
|
|
okText="是"
|
|
cancelText="否"
|
|
onConfirm={async () => {
|
|
const { code, msg } = await deleteDimension(record.id);
|
|
if (code === 200) {
|
|
setDimensionItem(undefined);
|
|
actionRef.current?.reload();
|
|
} else {
|
|
message.error(msg);
|
|
}
|
|
}}
|
|
>
|
|
<a
|
|
key="dimensionDeleteEditBtn"
|
|
onClick={() => {
|
|
setDimensionItem(record);
|
|
}}
|
|
>
|
|
删除
|
|
</a>
|
|
</Popconfirm>
|
|
</Space>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
|
|
return (
|
|
<>
|
|
<ProTable
|
|
className={`${styles.classTable} ${styles.classTableSelectColumnAlignLeft}`}
|
|
actionRef={actionRef}
|
|
rowKey="id"
|
|
columns={columns}
|
|
request={queryDimensionList}
|
|
pagination={pagination}
|
|
search={{
|
|
span: 4,
|
|
defaultCollapsed: false,
|
|
collapseRender: () => {
|
|
return <></>;
|
|
},
|
|
}}
|
|
onChange={(data: any) => {
|
|
const { current, pageSize, total } = data;
|
|
setPagination({
|
|
current,
|
|
pageSize,
|
|
total,
|
|
});
|
|
}}
|
|
tableAlertRender={() => {
|
|
return false;
|
|
}}
|
|
size="small"
|
|
options={{ reload: false, density: false, fullScreen: false }}
|
|
toolBarRender={() => [
|
|
<Button
|
|
key="create"
|
|
type="primary"
|
|
onClick={() => {
|
|
setDimensionItem(undefined);
|
|
setCreateModalVisible(true);
|
|
}}
|
|
>
|
|
创建维度
|
|
</Button>,
|
|
]}
|
|
/>
|
|
|
|
{createModalVisible && (
|
|
<DimensionInfoModal
|
|
modelId={modelId}
|
|
bindModalVisible={createModalVisible}
|
|
dimensionItem={dimensionItem}
|
|
dataSourceList={dataSourceList}
|
|
onSubmit={() => {
|
|
setCreateModalVisible(false);
|
|
actionRef?.current?.reload();
|
|
dispatch({
|
|
type: 'domainManger/queryDimensionList',
|
|
payload: {
|
|
modelId,
|
|
},
|
|
});
|
|
return;
|
|
}}
|
|
onCancel={() => {
|
|
setCreateModalVisible(false);
|
|
}}
|
|
/>
|
|
)}
|
|
{dimensionValueSettingModalVisible && (
|
|
<DimensionValueSettingModal
|
|
dimensionValueSettingList={dimensionValueSettingList}
|
|
open={dimensionValueSettingModalVisible}
|
|
dimensionItem={dimensionItem}
|
|
onCancel={() => {
|
|
setDimensionValueSettingModalVisible(false);
|
|
}}
|
|
onSubmit={() => {
|
|
actionRef?.current?.reload();
|
|
dispatch({
|
|
type: 'domainManger/queryDimensionList',
|
|
payload: {
|
|
modelId,
|
|
},
|
|
});
|
|
setDimensionValueSettingModalVisible(false);
|
|
}}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
export default connect(({ domainManger }: { domainManger: StateType }) => ({
|
|
domainManger,
|
|
}))(ClassDimensionTable);
|