mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-10 11:07:06 +00:00
928 lines
29 KiB
TypeScript
928 lines
29 KiB
TypeScript
import React, { useEffect, useRef, useState } from 'react';
|
||
import {
|
||
Form,
|
||
Button,
|
||
Modal,
|
||
Steps,
|
||
Input,
|
||
Select,
|
||
Radio,
|
||
Switch,
|
||
InputNumber,
|
||
message,
|
||
Result,
|
||
Row,
|
||
Col,
|
||
Space,
|
||
Tooltip,
|
||
Tag,
|
||
} from 'antd';
|
||
import { InfoCircleOutlined } from '@ant-design/icons';
|
||
import MetricMeasuresFormTable from './MetricMeasuresFormTable';
|
||
import { SENSITIVE_LEVEL_OPTIONS, METRIC_DEFINE_TYPE, TAG_DEFINE_TYPE } from '../constant';
|
||
import { formLayout } from '@/components/FormHelper/utils';
|
||
import FormItemTitle from '@/components/FormHelper/FormItemTitle';
|
||
import styles from './style.less';
|
||
import {
|
||
getMetricsToCreateNewMetric,
|
||
getModelDetail,
|
||
getDrillDownDimension,
|
||
batchCreateTag,
|
||
batchDeleteTag,
|
||
} from '../service';
|
||
import MetricMetricFormTable from './MetricMetricFormTable';
|
||
import MetricFieldFormTable from './MetricFieldFormTable';
|
||
import DimensionAndMetricRelationModal from './DimensionAndMetricRelationModal';
|
||
import TableTitleTooltips from '../components/TableTitleTooltips';
|
||
import { createMetric, updateMetric, mockMetricAlias, getMetricTags } from '../service';
|
||
import { ISemantic } from '../data';
|
||
import { history } from '@umijs/max';
|
||
|
||
export type CreateFormProps = {
|
||
datasourceId?: number;
|
||
domainId?: number;
|
||
modelId?: number;
|
||
createModalVisible: boolean;
|
||
metricItem?: ISemantic.IMetricItem;
|
||
onCancel?: () => void;
|
||
onSubmit?: (values: any) => void;
|
||
};
|
||
|
||
const { Step } = Steps;
|
||
const FormItem = Form.Item;
|
||
const { TextArea } = Input;
|
||
const { Option } = Select;
|
||
|
||
const queryParamsTypeParamsKey = {
|
||
[METRIC_DEFINE_TYPE.MEASURE]: 'metricDefineByMeasureParams',
|
||
[METRIC_DEFINE_TYPE.METRIC]: 'metricDefineByMetricParams',
|
||
[METRIC_DEFINE_TYPE.FIELD]: 'metricDefineByFieldParams',
|
||
};
|
||
|
||
const MetricInfoCreateForm: React.FC<CreateFormProps> = ({
|
||
datasourceId,
|
||
domainId,
|
||
modelId,
|
||
onCancel,
|
||
createModalVisible,
|
||
metricItem,
|
||
onSubmit,
|
||
}) => {
|
||
const isEdit = !!metricItem?.id;
|
||
const [currentStep, setCurrentStep] = useState(0);
|
||
const formValRef = useRef({} as any);
|
||
const [form] = Form.useForm();
|
||
const updateFormVal = (val: any) => {
|
||
const formVal = {
|
||
...formValRef.current,
|
||
...val,
|
||
};
|
||
formValRef.current = formVal;
|
||
};
|
||
|
||
const [classMeasureList, setClassMeasureList] = useState<ISemantic.IMeasure[]>([]);
|
||
|
||
const [exprTypeParamsState, setExprTypeParamsState] = useState<{
|
||
[METRIC_DEFINE_TYPE.MEASURE]: ISemantic.IMeasureTypeParams;
|
||
[METRIC_DEFINE_TYPE.METRIC]: ISemantic.IMetricTypeParams;
|
||
[METRIC_DEFINE_TYPE.FIELD]: ISemantic.IFieldTypeParams;
|
||
}>({
|
||
[METRIC_DEFINE_TYPE.MEASURE]: {
|
||
measures: [],
|
||
expr: '',
|
||
},
|
||
[METRIC_DEFINE_TYPE.METRIC]: {
|
||
metrics: [],
|
||
expr: '',
|
||
},
|
||
[METRIC_DEFINE_TYPE.FIELD]: {
|
||
fields: [],
|
||
expr: '',
|
||
},
|
||
} as any);
|
||
|
||
// const [exprTypeParamsState, setExprTypeParamsState] = useState<ISemantic.IMeasure[]>([]);
|
||
|
||
const [defineType, setDefineType] = useState(METRIC_DEFINE_TYPE.MEASURE);
|
||
|
||
const [createNewMetricList, setCreateNewMetricList] = useState<ISemantic.IMetricItem[]>([]);
|
||
const [fieldList, setFieldList] = useState<ISemantic.IFieldTypeParamsItem[]>([]);
|
||
const [isPercentState, setIsPercentState] = useState<boolean>(false);
|
||
const [isDecimalState, setIsDecimalState] = useState<boolean>(false);
|
||
const [hasMeasuresState, setHasMeasuresState] = useState<boolean>(true);
|
||
const [llmLoading, setLlmLoading] = useState<boolean>(false);
|
||
|
||
const [tagOptions, setTagOptions] = useState<{ label: string; value: string }[]>([]);
|
||
|
||
const [metricRelationModalOpenState, setMetricRelationModalOpenState] = useState<boolean>(false);
|
||
|
||
const [drillDownDimensions, setDrillDownDimensions] = useState<
|
||
ISemantic.IDrillDownDimensionItem[]
|
||
>([]);
|
||
|
||
const [drillDownDimensionsConfig, setDrillDownDimensionsConfig] = useState<
|
||
ISemantic.IDrillDownDimensionItem[]
|
||
>([]);
|
||
|
||
const forward = () => setCurrentStep(currentStep + 1);
|
||
const backward = () => setCurrentStep(currentStep - 1);
|
||
|
||
const queryModelDetail = async () => {
|
||
const { code, data } = await getModelDetail({ modelId: modelId || metricItem?.modelId });
|
||
if (code === 200) {
|
||
if (Array.isArray(data?.modelDetail?.fields)) {
|
||
if (Array.isArray(metricItem?.metricDefineByFieldParams?.fields)) {
|
||
const fieldList = data.modelDetail.fields.map((item: ISemantic.IFieldTypeParamsItem) => {
|
||
const { fieldName } = item;
|
||
if (
|
||
metricItem?.metricDefineByFieldParams?.fields.find(
|
||
(measureParamsItem: ISemantic.IFieldTypeParamsItem) =>
|
||
measureParamsItem.fieldName === fieldName,
|
||
)
|
||
) {
|
||
return {
|
||
...item,
|
||
orderNumber: 9999,
|
||
};
|
||
}
|
||
return {
|
||
...item,
|
||
orderNumber: 0,
|
||
};
|
||
});
|
||
|
||
const sortList = fieldList.sort(
|
||
(
|
||
a: ISemantic.IFieldTypeParamsItem & { orderNumber: number },
|
||
b: ISemantic.IFieldTypeParamsItem & { orderNumber: number },
|
||
) => b.orderNumber - a.orderNumber,
|
||
);
|
||
setFieldList(sortList);
|
||
} else {
|
||
setFieldList(data.modelDetail.fields);
|
||
}
|
||
}
|
||
if (Array.isArray(data?.modelDetail?.measures)) {
|
||
if (Array.isArray(metricItem?.metricDefineByMeasureParams?.measures)) {
|
||
const measureList = data.modelDetail.measures.map((item: ISemantic.IMeasure) => {
|
||
const { bizName } = item;
|
||
if (
|
||
metricItem?.metricDefineByMeasureParams?.measures.find(
|
||
(measureParamsItem: ISemantic.IMeasure) => measureParamsItem.bizName === bizName,
|
||
)
|
||
) {
|
||
return {
|
||
...item,
|
||
orderNumber: 9999,
|
||
};
|
||
}
|
||
return {
|
||
...item,
|
||
orderNumber: 0,
|
||
};
|
||
});
|
||
const sortMeasureList = measureList.sort(
|
||
(
|
||
a: ISemantic.IMeasure & { orderNumber: number },
|
||
b: ISemantic.IMeasure & { orderNumber: number },
|
||
) => b.orderNumber - a.orderNumber,
|
||
);
|
||
setClassMeasureList(sortMeasureList);
|
||
} else {
|
||
setClassMeasureList(data.modelDetail.measures);
|
||
}
|
||
|
||
if (datasourceId) {
|
||
const hasMeasures = data.some(
|
||
(item: ISemantic.IMeasure) => item.datasourceId === datasourceId,
|
||
);
|
||
setHasMeasuresState(hasMeasures);
|
||
}
|
||
return;
|
||
}
|
||
}
|
||
setClassMeasureList([]);
|
||
};
|
||
|
||
const queryDrillDownDimension = async (metricId: number) => {
|
||
const { code, data, msg } = await getDrillDownDimension(metricId);
|
||
if (code === 200 && Array.isArray(data)) {
|
||
setDrillDownDimensionsConfig(data);
|
||
}
|
||
if (code !== 200) {
|
||
message.error(msg);
|
||
}
|
||
return [];
|
||
};
|
||
|
||
useEffect(() => {
|
||
queryModelDetail();
|
||
queryMetricsToCreateNewMetric();
|
||
queryMetricTags();
|
||
}, []);
|
||
|
||
const handleNext = async () => {
|
||
const fieldsValue = await form.validateFields();
|
||
const submitForm = {
|
||
...formValRef.current,
|
||
...fieldsValue,
|
||
metricDefineType: defineType,
|
||
[queryParamsTypeParamsKey[defineType]]: exprTypeParamsState[defineType],
|
||
};
|
||
updateFormVal(submitForm);
|
||
if (currentStep < 1) {
|
||
forward();
|
||
} else {
|
||
await saveMetric(submitForm);
|
||
}
|
||
};
|
||
|
||
const initData = () => {
|
||
const {
|
||
id,
|
||
name,
|
||
bizName,
|
||
description,
|
||
sensitiveLevel,
|
||
typeParams,
|
||
isTag,
|
||
dataFormat,
|
||
dataFormatType,
|
||
alias,
|
||
classifications,
|
||
metricDefineType,
|
||
metricDefineByMeasureParams,
|
||
metricDefineByMetricParams,
|
||
metricDefineByFieldParams,
|
||
} = metricItem;
|
||
const isPercent = dataFormatType === 'percent';
|
||
const isDecimal = dataFormatType === 'decimal';
|
||
const initValue = {
|
||
id,
|
||
name,
|
||
bizName,
|
||
sensitiveLevel,
|
||
description,
|
||
classifications,
|
||
isTag,
|
||
// isPercent,
|
||
dataFormatType: dataFormatType || '',
|
||
alias: alias && alias.trim() ? alias.split(',') : [],
|
||
dataFormat: dataFormat || {
|
||
decimalPlaces: 2,
|
||
needMultiply100: false,
|
||
},
|
||
};
|
||
const editInitFormVal = {
|
||
...formValRef.current,
|
||
...initValue,
|
||
};
|
||
if (metricDefineType === METRIC_DEFINE_TYPE.MEASURE) {
|
||
const { measures, expr } = metricDefineByMeasureParams || {};
|
||
setExprTypeParamsState({
|
||
...exprTypeParamsState,
|
||
[METRIC_DEFINE_TYPE.MEASURE]: {
|
||
measures: measures || [],
|
||
expr: expr || '',
|
||
},
|
||
});
|
||
}
|
||
if (metricDefineType === METRIC_DEFINE_TYPE.METRIC) {
|
||
const { metrics, expr } = metricDefineByMetricParams || {};
|
||
setExprTypeParamsState({
|
||
...exprTypeParamsState,
|
||
[METRIC_DEFINE_TYPE.METRIC]: {
|
||
metrics: metrics || [],
|
||
expr: expr || '',
|
||
},
|
||
});
|
||
}
|
||
if (metricDefineType === METRIC_DEFINE_TYPE.FIELD) {
|
||
const { fields, expr } = metricDefineByFieldParams || {};
|
||
setExprTypeParamsState({
|
||
...exprTypeParamsState,
|
||
[METRIC_DEFINE_TYPE.FIELD]: {
|
||
fields: fields || [],
|
||
expr: expr || '',
|
||
},
|
||
});
|
||
}
|
||
updateFormVal(editInitFormVal);
|
||
form.setFieldsValue(initValue);
|
||
setDefineType(metricDefineType);
|
||
setIsPercentState(isPercent);
|
||
setIsDecimalState(isDecimal);
|
||
queryDrillDownDimension(metricItem?.id);
|
||
};
|
||
|
||
useEffect(() => {
|
||
if (isEdit) {
|
||
initData();
|
||
}
|
||
}, [metricItem]);
|
||
|
||
const isEmptyConditions = (
|
||
metricDefineType: METRIC_DEFINE_TYPE,
|
||
metricDefineParams:
|
||
| ISemantic.IMeasureTypeParams
|
||
| ISemantic.IMetricTypeParams
|
||
| ISemantic.IFieldTypeParams,
|
||
) => {
|
||
if (metricDefineType === METRIC_DEFINE_TYPE.MEASURE) {
|
||
const { measures } = (metricDefineParams as ISemantic.IMeasureTypeParams) || {};
|
||
if (!(Array.isArray(measures) && measures.length > 0)) {
|
||
message.error('请添加一个度量');
|
||
return true;
|
||
}
|
||
}
|
||
if (metricDefineType === METRIC_DEFINE_TYPE.METRIC) {
|
||
const { metrics } = (metricDefineParams as ISemantic.IMetricTypeParams) || {};
|
||
if (!(Array.isArray(metrics) && metrics.length > 0)) {
|
||
message.error('请添加一个指标');
|
||
return true;
|
||
}
|
||
}
|
||
if (metricDefineType === METRIC_DEFINE_TYPE.FIELD) {
|
||
const { fields } = (metricDefineParams as ISemantic.IFieldTypeParams) || {};
|
||
if (!(Array.isArray(fields) && fields.length > 0)) {
|
||
message.error('请添加一个字段');
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
};
|
||
|
||
const saveMetric = async (fieldsValue: any) => {
|
||
const queryParams = {
|
||
modelId: isEdit ? metricItem.modelId : modelId,
|
||
relateDimension: {
|
||
...(metricItem?.relateDimension || {}),
|
||
drillDownDimensions,
|
||
},
|
||
...fieldsValue,
|
||
};
|
||
const { alias, dataFormatType } = queryParams;
|
||
queryParams.alias = Array.isArray(alias) ? alias.join(',') : '';
|
||
if (!queryParams[queryParamsTypeParamsKey[defineType]]?.expr) {
|
||
message.error('请输入度量表达式');
|
||
return;
|
||
}
|
||
|
||
if (defineType === METRIC_DEFINE_TYPE.MEASURE) {
|
||
const { bizName, name, metricDefineByMeasureParams } = queryParams;
|
||
queryParams[queryParamsTypeParamsKey[METRIC_DEFINE_TYPE.MEASURE]].measures =
|
||
metricDefineByMeasureParams.measures.map((item: ISemantic.IMeasure) => {
|
||
return item.bizName === bizName && name ? { ...item, name } : item;
|
||
});
|
||
}
|
||
|
||
if (!dataFormatType) {
|
||
delete queryParams.dataFormat;
|
||
}
|
||
if (isEmptyConditions(defineType, queryParams[queryParamsTypeParamsKey[defineType]])) {
|
||
return;
|
||
}
|
||
|
||
let saveMetricQuery = createMetric;
|
||
if (queryParams.id) {
|
||
saveMetricQuery = updateMetric;
|
||
}
|
||
const { code, msg, data } = await saveMetricQuery(queryParams);
|
||
if (code === 200) {
|
||
if (queryParams.isTag) {
|
||
queryBatchExportTag(data.id || metricItem?.id);
|
||
}
|
||
|
||
if (metricItem?.id && !queryParams.isTag) {
|
||
queryBatchDelete(metricItem);
|
||
}
|
||
message.success('编辑指标成功');
|
||
onSubmit?.(queryParams);
|
||
return;
|
||
}
|
||
message.error(msg);
|
||
};
|
||
|
||
const queryBatchDelete = async (metricItem: ISemantic.IMetricItem) => {
|
||
const { code, msg } = await batchDeleteTag([
|
||
{
|
||
itemIds: [metricItem.id],
|
||
tagDefineType: TAG_DEFINE_TYPE.METRIC,
|
||
},
|
||
]);
|
||
if (code === 200) {
|
||
return;
|
||
}
|
||
message.error(msg);
|
||
};
|
||
|
||
const queryBatchExportTag = async (id: number) => {
|
||
const { code, msg } = await batchCreateTag([
|
||
{ itemId: id, tagDefineType: TAG_DEFINE_TYPE.METRIC },
|
||
]);
|
||
|
||
if (code === 200) {
|
||
return;
|
||
}
|
||
message.error(msg);
|
||
};
|
||
|
||
const generatorMetricAlias = async () => {
|
||
setLlmLoading(true);
|
||
const { code, data } = await mockMetricAlias({ ...metricItem });
|
||
const formAlias = form.getFieldValue('alias');
|
||
setLlmLoading(false);
|
||
if (code === 200) {
|
||
form.setFieldValue('alias', Array.from(new Set([...formAlias, ...data])));
|
||
} else {
|
||
message.error('大语言模型解析异常');
|
||
}
|
||
};
|
||
|
||
const queryMetricTags = async () => {
|
||
const { code, data } = await getMetricTags();
|
||
if (code === 200) {
|
||
setTagOptions(
|
||
Array.isArray(data)
|
||
? data.map((tag: string) => {
|
||
return { label: tag, value: tag };
|
||
})
|
||
: [],
|
||
);
|
||
} else {
|
||
message.error('获取指标标签失败');
|
||
}
|
||
};
|
||
const queryMetricsToCreateNewMetric = async () => {
|
||
const { code, data } = await getMetricsToCreateNewMetric({
|
||
modelId: modelId || metricItem?.modelId,
|
||
});
|
||
if (code === 200) {
|
||
if (Array.isArray(metricItem?.metricDefineByMetricParams?.metrics)) {
|
||
const fieldList = data.map((item: ISemantic.IMetricTypeParamsItem) => {
|
||
const { bizName } = item;
|
||
if (
|
||
metricItem?.metricDefineByMetricParams?.metrics.find(
|
||
(measureParamsItem: ISemantic.IMetricTypeParamsItem) =>
|
||
measureParamsItem.bizName === bizName,
|
||
)
|
||
) {
|
||
return {
|
||
...item,
|
||
orderNumber: 9999,
|
||
};
|
||
}
|
||
return {
|
||
...item,
|
||
orderNumber: 0,
|
||
};
|
||
});
|
||
|
||
const sortList = fieldList.sort(
|
||
(
|
||
a: ISemantic.IMetricTypeParamsItem & { orderNumber: number },
|
||
b: ISemantic.IMetricTypeParamsItem & { orderNumber: number },
|
||
) => b.orderNumber - a.orderNumber,
|
||
);
|
||
setCreateNewMetricList(sortList);
|
||
} else {
|
||
setCreateNewMetricList(data);
|
||
}
|
||
} else {
|
||
message.error('获取指标标签失败');
|
||
}
|
||
};
|
||
|
||
const renderContent = () => {
|
||
if (currentStep === 1) {
|
||
return (
|
||
<div>
|
||
<div
|
||
style={{
|
||
padding: '0 0 20px 24px',
|
||
// borderBottom: '1px solid #eee',
|
||
}}
|
||
>
|
||
<Radio.Group
|
||
buttonStyle="solid"
|
||
value={defineType}
|
||
onChange={(e) => {
|
||
setDefineType(e.target.value);
|
||
}}
|
||
>
|
||
<Radio.Button value={METRIC_DEFINE_TYPE.MEASURE}>按度量</Radio.Button>
|
||
<Radio.Button value={METRIC_DEFINE_TYPE.METRIC}>按指标</Radio.Button>
|
||
<Radio.Button value={METRIC_DEFINE_TYPE.FIELD}>按字段</Radio.Button>
|
||
</Radio.Group>
|
||
</div>
|
||
{defineType === METRIC_DEFINE_TYPE.MEASURE && (
|
||
<>
|
||
<MetricMeasuresFormTable
|
||
datasourceId={datasourceId}
|
||
typeParams={exprTypeParamsState[METRIC_DEFINE_TYPE.MEASURE]}
|
||
measuresList={classMeasureList}
|
||
onFieldChange={(measures: ISemantic.IMeasure[]) => {
|
||
// setClassMeasureList(measures);
|
||
setExprTypeParamsState((prevState) => {
|
||
return {
|
||
...prevState,
|
||
[METRIC_DEFINE_TYPE.MEASURE]: {
|
||
...prevState[METRIC_DEFINE_TYPE.MEASURE],
|
||
measures,
|
||
},
|
||
};
|
||
});
|
||
}}
|
||
onSqlChange={(expr: string) => {
|
||
setExprTypeParamsState((prevState) => {
|
||
return {
|
||
...prevState,
|
||
[METRIC_DEFINE_TYPE.MEASURE]: {
|
||
...prevState[METRIC_DEFINE_TYPE.MEASURE],
|
||
expr,
|
||
},
|
||
};
|
||
});
|
||
}}
|
||
/>
|
||
</>
|
||
)}
|
||
{defineType === METRIC_DEFINE_TYPE.METRIC && (
|
||
<>
|
||
<p className={styles.desc}>
|
||
基于
|
||
<Tag color="#2499ef14" className={styles.markerTag}>
|
||
已有
|
||
</Tag>
|
||
指标来衍生新的指标
|
||
</p>
|
||
|
||
<MetricMetricFormTable
|
||
typeParams={exprTypeParamsState[METRIC_DEFINE_TYPE.METRIC]}
|
||
metricList={createNewMetricList}
|
||
onFieldChange={(metrics: ISemantic.IMetricTypeParamsItem[]) => {
|
||
setExprTypeParamsState((prevState) => {
|
||
return {
|
||
...prevState,
|
||
[METRIC_DEFINE_TYPE.METRIC]: {
|
||
...prevState[METRIC_DEFINE_TYPE.METRIC],
|
||
metrics,
|
||
},
|
||
};
|
||
});
|
||
}}
|
||
onSqlChange={(expr: string) => {
|
||
setExprTypeParamsState((prevState) => {
|
||
return {
|
||
...prevState,
|
||
[METRIC_DEFINE_TYPE.METRIC]: {
|
||
...prevState[METRIC_DEFINE_TYPE.METRIC],
|
||
expr,
|
||
},
|
||
};
|
||
});
|
||
}}
|
||
/>
|
||
</>
|
||
)}
|
||
{defineType === METRIC_DEFINE_TYPE.FIELD && (
|
||
<>
|
||
<MetricFieldFormTable
|
||
typeParams={exprTypeParamsState[METRIC_DEFINE_TYPE.FIELD]}
|
||
fieldList={fieldList}
|
||
onFieldChange={(fields: ISemantic.IFieldTypeParamsItem[]) => {
|
||
setExprTypeParamsState((prevState) => {
|
||
return {
|
||
...prevState,
|
||
[METRIC_DEFINE_TYPE.FIELD]: {
|
||
...prevState[METRIC_DEFINE_TYPE.FIELD],
|
||
fields,
|
||
},
|
||
};
|
||
});
|
||
}}
|
||
onSqlChange={(expr: string) => {
|
||
setExprTypeParamsState((prevState) => {
|
||
return {
|
||
...prevState,
|
||
[METRIC_DEFINE_TYPE.FIELD]: {
|
||
...prevState[METRIC_DEFINE_TYPE.FIELD],
|
||
expr,
|
||
},
|
||
};
|
||
});
|
||
}}
|
||
/>
|
||
</>
|
||
)}
|
||
</div>
|
||
);
|
||
}
|
||
|
||
return (
|
||
<>
|
||
<FormItem hidden={true} name="id" label="ID">
|
||
<Input placeholder="id" />
|
||
</FormItem>
|
||
<FormItem
|
||
name="name"
|
||
label="指标名称"
|
||
rules={[{ required: true, message: '请输入指标名称' }]}
|
||
>
|
||
<Input placeholder="名称不可重复" />
|
||
</FormItem>
|
||
<FormItem
|
||
name="bizName"
|
||
label="英文名称"
|
||
rules={[{ required: true, message: '请输入英文名称' }]}
|
||
>
|
||
<Input placeholder="名称不可重复" disabled={isEdit} />
|
||
</FormItem>
|
||
<FormItem label="别名">
|
||
<Row>
|
||
<Col flex="1 1 200px">
|
||
<FormItem name="alias" noStyle>
|
||
<Select
|
||
mode="tags"
|
||
placeholder="输入别名后回车确认,多别名输入、复制粘贴支持英文逗号自动分隔"
|
||
tokenSeparators={[',']}
|
||
maxTagCount={9}
|
||
/>
|
||
</FormItem>
|
||
</Col>
|
||
{isEdit && (
|
||
<Col flex="0 1 75px">
|
||
<Button
|
||
type="link"
|
||
loading={llmLoading}
|
||
size="small"
|
||
style={{ top: '2px' }}
|
||
onClick={() => {
|
||
generatorMetricAlias();
|
||
}}
|
||
>
|
||
<Space>
|
||
智能填充
|
||
<Tooltip title="智能填充将根据指标相关信息,使用大语言模型获取指标别名">
|
||
<InfoCircleOutlined />
|
||
</Tooltip>
|
||
</Space>
|
||
</Button>
|
||
</Col>
|
||
)}
|
||
</Row>
|
||
</FormItem>
|
||
<FormItem name="classifications" label="分类">
|
||
<Select
|
||
mode="tags"
|
||
placeholder="输入分类名后回车确认,多别名输入、复制粘贴支持英文逗号自动分隔"
|
||
tokenSeparators={[',']}
|
||
maxTagCount={9}
|
||
options={tagOptions}
|
||
/>
|
||
</FormItem>
|
||
<FormItem
|
||
name="sensitiveLevel"
|
||
label="敏感度"
|
||
rules={[{ required: true, message: '请选择敏感度' }]}
|
||
>
|
||
<Select placeholder="请选择敏感度">
|
||
{SENSITIVE_LEVEL_OPTIONS.map((item) => (
|
||
<Option key={item.value} value={item.value}>
|
||
{item.label}
|
||
</Option>
|
||
))}
|
||
</Select>
|
||
</FormItem>
|
||
<FormItem
|
||
name="description"
|
||
label={
|
||
<TableTitleTooltips
|
||
title="业务口径"
|
||
overlayInnerStyle={{ width: 600 }}
|
||
tooltips={
|
||
<>
|
||
<p>
|
||
在录入指标时,请务必详细填写指标口径。口径描述对于理解指标的含义、计算方法和使用场景至关重要。一个清晰、准确的口径描述可以帮助其他用户更好地理解和使用该指标,避免因为误解而导致错误的数据分析和决策。在填写口径时,建议包括以下信息:
|
||
</p>
|
||
<p>1. 指标的计算方法:详细说明指标是如何计算的,包括涉及的公式、计算步骤等。</p>
|
||
<p>2. 数据来源:描述指标所依赖的数据来源,包括数据表、字段等信息。</p>
|
||
<p>3. 使用场景:说明该指标适用于哪些业务场景,以及如何在这些场景中使用该指标。</p>
|
||
<p>4. 任何其他相关信息:例如数据更新频率、数据质量要求等。</p>
|
||
<p>
|
||
请确保口径描述清晰、简洁且易于理解,以便其他用户能够快速掌握指标的核心要点。
|
||
</p>
|
||
</>
|
||
}
|
||
/>
|
||
}
|
||
rules={[{ required: true, message: '请输入业务口径' }]}
|
||
>
|
||
<TextArea placeholder="请输入业务口径" />
|
||
</FormItem>
|
||
|
||
<Form.Item
|
||
hidden={!!!process.env.SHOW_TAG}
|
||
label={
|
||
<FormItemTitle
|
||
title={`设为标签`}
|
||
subTitle={`如果勾选,代表取值都是一种'标签',可用作对实体的圈选`}
|
||
/>
|
||
}
|
||
name="isTag"
|
||
valuePropName="checked"
|
||
getValueFromEvent={(value) => {
|
||
return value === true ? 1 : 0;
|
||
}}
|
||
getValueProps={(value) => {
|
||
return {
|
||
checked: value === 1,
|
||
};
|
||
}}
|
||
>
|
||
<Switch />
|
||
</Form.Item>
|
||
|
||
<FormItem
|
||
label={
|
||
<FormItemTitle
|
||
title={'下钻维度配置'}
|
||
subTitle={'配置下钻维度后,将可以在指标卡中进行下钻'}
|
||
/>
|
||
}
|
||
>
|
||
<Button
|
||
type="primary"
|
||
onClick={() => {
|
||
setMetricRelationModalOpenState(true);
|
||
}}
|
||
>
|
||
设 置
|
||
</Button>
|
||
</FormItem>
|
||
<FormItem
|
||
label={
|
||
<FormItemTitle
|
||
title={'数据格式化'}
|
||
// subTitle={'开启后,指标数据展示时会根据配置进行格式化,如0.02 -> 2%'}
|
||
/>
|
||
}
|
||
name="dataFormatType"
|
||
>
|
||
<Radio.Group buttonStyle="solid" size="middle">
|
||
<Radio.Button value="">默认</Radio.Button>
|
||
<Radio.Button value="decimal">小数</Radio.Button>
|
||
<Radio.Button value="percent">百分比</Radio.Button>
|
||
</Radio.Group>
|
||
</FormItem>
|
||
|
||
{(isPercentState || isDecimalState) && (
|
||
<FormItem
|
||
label={
|
||
<FormItemTitle
|
||
title={'小数位数'}
|
||
subTitle={`对小数位数进行设置,如保留两位,0.021252 -> 0.02${
|
||
isPercentState ? '%' : ''
|
||
}`}
|
||
/>
|
||
}
|
||
name={['dataFormat', 'decimalPlaces']}
|
||
>
|
||
<InputNumber placeholder="请输入需要保留小数位数" style={{ width: '300px' }} />
|
||
</FormItem>
|
||
)}
|
||
{isPercentState && (
|
||
<>
|
||
<FormItem
|
||
label={
|
||
<FormItemTitle
|
||
title={'原始值是否乘以100'}
|
||
subTitle={'如 原始值0.001 ->展示值0.1% '}
|
||
/>
|
||
}
|
||
name={['dataFormat', 'needMultiply100']}
|
||
valuePropName="checked"
|
||
>
|
||
<Switch />
|
||
</FormItem>
|
||
</>
|
||
)}
|
||
</>
|
||
);
|
||
};
|
||
const renderFooter = () => {
|
||
if (!hasMeasuresState) {
|
||
return <Button onClick={onCancel}>取消</Button>;
|
||
}
|
||
if (currentStep === 1) {
|
||
return (
|
||
<>
|
||
<Button style={{ float: 'left' }} onClick={backward}>
|
||
上一步
|
||
</Button>
|
||
<Button onClick={onCancel}>取消</Button>
|
||
<Button type="primary" onClick={handleNext}>
|
||
完成
|
||
</Button>
|
||
</>
|
||
);
|
||
}
|
||
return (
|
||
<>
|
||
<Button onClick={onCancel}>取消</Button>
|
||
<Button type="primary" onClick={handleNext}>
|
||
下一步
|
||
</Button>
|
||
</>
|
||
);
|
||
};
|
||
return (
|
||
<Modal
|
||
forceRender
|
||
width={800}
|
||
style={{ top: 48 }}
|
||
// styles={{ padding: '32px 40px 48px' }}
|
||
destroyOnClose
|
||
title={`${isEdit ? '编辑' : '新建'}指标`}
|
||
maskClosable={false}
|
||
open={createModalVisible}
|
||
footer={renderFooter()}
|
||
onCancel={onCancel}
|
||
>
|
||
{hasMeasuresState ? (
|
||
<>
|
||
<Steps style={{ marginBottom: 28 }} size="small" current={currentStep}>
|
||
<Step title="基本信息" />
|
||
<Step title="表达式" />
|
||
</Steps>
|
||
<Form
|
||
{...formLayout}
|
||
form={form}
|
||
initialValues={{
|
||
...formValRef.current,
|
||
dataFormatType: '',
|
||
}}
|
||
onValuesChange={(value, values: any) => {
|
||
const { isPercent, dataFormatType } = values;
|
||
// if (isPercent !== undefined) {
|
||
// setIsPercentState(isPercent);
|
||
// }
|
||
if (dataFormatType === 'percent') {
|
||
setIsPercentState(true);
|
||
setIsDecimalState(false);
|
||
}
|
||
if (dataFormatType === 'decimal') {
|
||
setIsPercentState(false);
|
||
setIsDecimalState(true);
|
||
}
|
||
if (!dataFormatType) {
|
||
setIsPercentState(false);
|
||
setIsDecimalState(false);
|
||
}
|
||
}}
|
||
className={styles.form}
|
||
>
|
||
{renderContent()}
|
||
</Form>
|
||
<DimensionAndMetricRelationModal
|
||
metricItem={metricItem}
|
||
relationsInitialValue={drillDownDimensionsConfig}
|
||
open={metricRelationModalOpenState}
|
||
onCancel={() => {
|
||
setMetricRelationModalOpenState(false);
|
||
}}
|
||
onSubmit={(relations) => {
|
||
setDrillDownDimensions(relations);
|
||
setMetricRelationModalOpenState(false);
|
||
}}
|
||
onRefreshRelationData={() => {
|
||
queryDrillDownDimension(metricItem?.id);
|
||
}}
|
||
/>
|
||
</>
|
||
) : (
|
||
<Result
|
||
status="warning"
|
||
subTitle="当前数据源缺少度量,无法创建指标。请前往数据源配置中,将字段设置为度量"
|
||
extra={
|
||
<Button
|
||
type="primary"
|
||
key="console"
|
||
onClick={() => {
|
||
history.replace(
|
||
`/model/domain/manager/${domainId}/${modelId || metricItem?.modelId}/dataSource`,
|
||
);
|
||
onCancel?.();
|
||
}}
|
||
>
|
||
去创建
|
||
</Button>
|
||
}
|
||
/>
|
||
)}
|
||
</Modal>
|
||
);
|
||
};
|
||
|
||
export default MetricInfoCreateForm;
|