mirror of
https://github.com/tencentmusic/supersonic.git
synced 2026-01-24 04:21:10 +08:00
* feat(Chat/constants.ts): rm unused code * feat(chat-sdk): extract formatByDataFormatType()
81 lines
2.9 KiB
TypeScript
81 lines
2.9 KiB
TypeScript
import { PREFIX_CLS } from '../../../common/constants';
|
|
import { formatByDataFormatType, formatMetric, formatNumberWithCN } from '../../../utils/utils';
|
|
import ApplyAuth from '../ApplyAuth';
|
|
import { MsgDataType } from '../../../common/type';
|
|
import PeriodCompareItem from './PeriodCompareItem';
|
|
import { Spin } from 'antd';
|
|
import classNames from 'classnames';
|
|
import { SwapOutlined } from '@ant-design/icons';
|
|
import { useState } from 'react';
|
|
|
|
type Props = {
|
|
data: MsgDataType;
|
|
question: string;
|
|
loading: boolean;
|
|
onApplyAuth?: (model: string) => void;
|
|
};
|
|
|
|
const MetricCard: React.FC<Props> = ({ data, question, loading, onApplyAuth }) => {
|
|
const { queryMode, queryColumns, queryResults, entityInfo, aggregateInfo } = data;
|
|
|
|
const { metricInfos } = aggregateInfo || {};
|
|
|
|
const indicatorColumn = queryColumns?.find(column => column.showType === 'NUMBER');
|
|
const indicatorColumnName = indicatorColumn?.bizName || '';
|
|
|
|
const { dataFormatType, dataFormat } = indicatorColumn || {};
|
|
const value = queryResults?.[0]?.[indicatorColumnName] || 0;
|
|
|
|
const prefixCls = `${PREFIX_CLS}-metric-card`;
|
|
|
|
const matricCardClass = classNames(prefixCls, {
|
|
[`${PREFIX_CLS}-metric-card-dsl`]: queryMode === 'LLM_S2SQL',
|
|
});
|
|
|
|
const [isNumber, setIsNumber] = useState(false);
|
|
const handleNumberClick = () => {
|
|
setIsNumber(!isNumber);
|
|
};
|
|
|
|
return (
|
|
<div className={matricCardClass}>
|
|
<div className={`${prefixCls}-top-bar`}>
|
|
<div className={`${prefixCls}-indicator-name`}>{question}</div>
|
|
</div>
|
|
<Spin spinning={loading}>
|
|
<div className={`${prefixCls}-indicator`}>
|
|
{indicatorColumn && !indicatorColumn?.authorized ? (
|
|
<ApplyAuth model={entityInfo?.dataSetInfo.name || ''} onApplyAuth={onApplyAuth} />
|
|
) : (
|
|
<div style={{ display: 'flex', alignItems: 'flex-end' }}>
|
|
<div className={`${prefixCls}-indicator-value`}>
|
|
{typeof value === 'string' && isNaN(+value)
|
|
? value
|
|
: dataFormatType === 'percent' || dataFormatType === 'decimal'
|
|
? formatByDataFormatType(value, dataFormatType, dataFormat)
|
|
: isNumber
|
|
? formatMetric(value) || '-'
|
|
: formatNumberWithCN(+value)}
|
|
</div>
|
|
{!isNaN(+value) && +value >= 10000 && (
|
|
<div className={`${prefixCls}-indicator-switch`}>
|
|
<SwapOutlined onClick={handleNumberClick} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
{metricInfos?.length > 0 && (
|
|
<div className={`${prefixCls}-period-compare`}>
|
|
{Object.keys(metricInfos[0].statistics).map((key: any) => (
|
|
<PeriodCompareItem title={key} value={metricInfos[0].statistics[key]} />
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</Spin>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default MetricCard;
|