mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-20 06:34:55 +00:00
76 lines
2.1 KiB
TypeScript
76 lines
2.1 KiB
TypeScript
import { CLS_PREFIX } from '../../common/constants';
|
||
import { FieldType } from '../../common/type';
|
||
import classNames from 'classnames';
|
||
import { isMobile } from '../../utils/utils';
|
||
|
||
type Props = {
|
||
metrics: FieldType[];
|
||
defaultMetric?: FieldType;
|
||
currentMetric?: FieldType;
|
||
isMetricCard?: boolean;
|
||
onSelectMetric: (metric?: FieldType) => void;
|
||
};
|
||
|
||
const MetricOptions: React.FC<Props> = ({
|
||
metrics,
|
||
defaultMetric,
|
||
currentMetric,
|
||
isMetricCard,
|
||
onSelectMetric,
|
||
}) => {
|
||
const DEFAULT_DIMENSION_COUNT = isMobile ? 2 : 5;
|
||
const prefixCls = `${CLS_PREFIX}-metric-options`;
|
||
|
||
const defaultMetrics = metrics
|
||
.filter(metric => metric.id !== defaultMetric?.id)
|
||
.slice(0, DEFAULT_DIMENSION_COUNT);
|
||
|
||
const sectionClass = classNames(`${prefixCls}-section`, {
|
||
[`${prefixCls}-metric-card`]: isMetricCard,
|
||
});
|
||
|
||
if (!defaultMetrics.length) {
|
||
return null;
|
||
}
|
||
|
||
return (
|
||
<div className={prefixCls}>
|
||
<div className={sectionClass}>
|
||
<div className={`${prefixCls}-title`}>推荐相关指标:</div>
|
||
<div className={`${prefixCls}-content`}>
|
||
{defaultMetrics.map((metric, index) => {
|
||
const itemNameClass = classNames(`${prefixCls}-content-item-name`, {
|
||
[`${prefixCls}-content-item-active`]: currentMetric?.id === metric.id,
|
||
});
|
||
return (
|
||
<div>
|
||
<span
|
||
className={itemNameClass}
|
||
onClick={() => {
|
||
onSelectMetric(currentMetric?.id === metric.id ? defaultMetric : metric);
|
||
}}
|
||
>
|
||
{metric.name}
|
||
</span>
|
||
{index !== defaultMetrics.length - 1 && <span>、</span>}
|
||
</div>
|
||
);
|
||
})}
|
||
</div>
|
||
{currentMetric?.id !== defaultMetric?.id && (
|
||
<div
|
||
className={`${prefixCls}-cancel-select`}
|
||
onClick={() => {
|
||
onSelectMetric(defaultMetric);
|
||
}}
|
||
>
|
||
取消
|
||
</div>
|
||
)}
|
||
</div>
|
||
</div>
|
||
);
|
||
};
|
||
|
||
export default MetricOptions;
|