mirror of
https://github.com/apache/superset.git
synced 2026-04-23 01:55:09 +00:00
* feat: Adds drill to detail context menu for ECharts visualizations * Rebases and adds time grain * Fixes selected gauge values * Fixes Treemap edge click * Adds right click to big number trendline * Address some comments
350 lines
8.6 KiB
TypeScript
350 lines
8.6 KiB
TypeScript
/**
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
import {
|
|
CategoricalColorNamespace,
|
|
DataRecordValue,
|
|
getColumnLabel,
|
|
getMetricLabel,
|
|
getNumberFormatter,
|
|
getTimeFormatter,
|
|
NumberFormats,
|
|
NumberFormatter,
|
|
t,
|
|
} from '@superset-ui/core';
|
|
import { CallbackDataParams } from 'echarts/types/src/util/types';
|
|
import { EChartsCoreOption, PieSeriesOption } from 'echarts';
|
|
import {
|
|
DEFAULT_FORM_DATA as DEFAULT_PIE_FORM_DATA,
|
|
EchartsPieChartProps,
|
|
EchartsPieFormData,
|
|
EchartsPieLabelType,
|
|
PieChartTransformedProps,
|
|
} from './types';
|
|
import { DEFAULT_LEGEND_FORM_DATA, OpacityEnum } from '../constants';
|
|
import {
|
|
extractGroupbyLabel,
|
|
getChartPadding,
|
|
getColtypesMapping,
|
|
getLegendProps,
|
|
sanitizeHtml,
|
|
} from '../utils/series';
|
|
import { defaultGrid, defaultTooltip } from '../defaults';
|
|
import { convertInteger } from '../utils/convertInteger';
|
|
|
|
const percentFormatter = getNumberFormatter(NumberFormats.PERCENT_2_POINT);
|
|
|
|
export function formatPieLabel({
|
|
params,
|
|
labelType,
|
|
numberFormatter,
|
|
sanitizeName = false,
|
|
}: {
|
|
params: Pick<CallbackDataParams, 'name' | 'value' | 'percent'>;
|
|
labelType: EchartsPieLabelType;
|
|
numberFormatter: NumberFormatter;
|
|
sanitizeName?: boolean;
|
|
}): string {
|
|
const { name: rawName = '', value, percent } = params;
|
|
const name = sanitizeName ? sanitizeHtml(rawName) : rawName;
|
|
const formattedValue = numberFormatter(value as number);
|
|
const formattedPercent = percentFormatter((percent as number) / 100);
|
|
|
|
switch (labelType) {
|
|
case EchartsPieLabelType.Key:
|
|
return name;
|
|
case EchartsPieLabelType.Value:
|
|
return formattedValue;
|
|
case EchartsPieLabelType.Percent:
|
|
return formattedPercent;
|
|
case EchartsPieLabelType.KeyValue:
|
|
return `${name}: ${formattedValue}`;
|
|
case EchartsPieLabelType.KeyValuePercent:
|
|
return `${name}: ${formattedValue} (${formattedPercent})`;
|
|
case EchartsPieLabelType.KeyPercent:
|
|
return `${name}: ${formattedPercent}`;
|
|
default:
|
|
return name;
|
|
}
|
|
}
|
|
|
|
function getTotalValuePadding({
|
|
chartPadding,
|
|
donut,
|
|
width,
|
|
height,
|
|
}: {
|
|
chartPadding: {
|
|
bottom: number;
|
|
left: number;
|
|
right: number;
|
|
top: number;
|
|
};
|
|
donut: boolean;
|
|
width: number;
|
|
height: number;
|
|
}) {
|
|
const padding: {
|
|
left?: string;
|
|
top?: string;
|
|
} = {
|
|
top: donut ? 'middle' : '0',
|
|
left: 'center',
|
|
};
|
|
const LEGEND_HEIGHT = 15;
|
|
const LEGEND_WIDTH = 215;
|
|
if (chartPadding.top) {
|
|
padding.top = donut
|
|
? `${50 + ((chartPadding.top - LEGEND_HEIGHT) / height / 2) * 100}%`
|
|
: `${((chartPadding.top + LEGEND_HEIGHT) / height) * 100}%`;
|
|
}
|
|
if (chartPadding.bottom) {
|
|
padding.top = donut
|
|
? `${50 - ((chartPadding.bottom + LEGEND_HEIGHT) / height / 2) * 100}%`
|
|
: '0';
|
|
}
|
|
if (chartPadding.left) {
|
|
padding.left = `${
|
|
50 + ((chartPadding.left - LEGEND_WIDTH) / width / 2) * 100
|
|
}%`;
|
|
}
|
|
if (chartPadding.right) {
|
|
padding.left = `${
|
|
50 - ((chartPadding.right + LEGEND_WIDTH) / width / 2) * 100
|
|
}%`;
|
|
}
|
|
return padding;
|
|
}
|
|
|
|
export default function transformProps(
|
|
chartProps: EchartsPieChartProps,
|
|
): PieChartTransformedProps {
|
|
const {
|
|
formData,
|
|
height,
|
|
hooks,
|
|
filterState,
|
|
queriesData,
|
|
width,
|
|
theme,
|
|
inContextMenu,
|
|
} = chartProps;
|
|
const { data = [] } = queriesData[0];
|
|
const coltypeMapping = getColtypesMapping(queriesData[0]);
|
|
|
|
const {
|
|
colorScheme,
|
|
donut,
|
|
groupby,
|
|
innerRadius,
|
|
labelsOutside,
|
|
labelLine,
|
|
labelType,
|
|
legendMargin,
|
|
legendOrientation,
|
|
legendType,
|
|
metric = '',
|
|
numberFormat,
|
|
dateFormat,
|
|
outerRadius,
|
|
showLabels,
|
|
showLegend,
|
|
showLabelsThreshold,
|
|
emitFilter,
|
|
sliceId,
|
|
showTotal,
|
|
}: EchartsPieFormData = {
|
|
...DEFAULT_LEGEND_FORM_DATA,
|
|
...DEFAULT_PIE_FORM_DATA,
|
|
...formData,
|
|
};
|
|
const metricLabel = getMetricLabel(metric);
|
|
const groupbyLabels = groupby.map(getColumnLabel);
|
|
const minShowLabelAngle = (showLabelsThreshold || 0) * 3.6;
|
|
|
|
const keys = data.map(datum =>
|
|
extractGroupbyLabel({
|
|
datum,
|
|
groupby: groupbyLabels,
|
|
coltypeMapping,
|
|
timeFormatter: getTimeFormatter(dateFormat),
|
|
}),
|
|
);
|
|
const labelMap = data.reduce(
|
|
(acc: Record<string, DataRecordValue[]>, datum) => {
|
|
const label = extractGroupbyLabel({
|
|
datum,
|
|
groupby: groupbyLabels,
|
|
coltypeMapping,
|
|
timeFormatter: getTimeFormatter(dateFormat),
|
|
});
|
|
return {
|
|
...acc,
|
|
[label]: groupbyLabels.map(col => datum[col]),
|
|
};
|
|
},
|
|
{},
|
|
);
|
|
|
|
const { setDataMask = () => {}, onContextMenu } = hooks;
|
|
|
|
const colorFn = CategoricalColorNamespace.getScale(colorScheme as string);
|
|
const numberFormatter = getNumberFormatter(numberFormat);
|
|
let totalValue = 0;
|
|
|
|
const transformedData: PieSeriesOption[] = data.map(datum => {
|
|
const name = extractGroupbyLabel({
|
|
datum,
|
|
groupby: groupbyLabels,
|
|
coltypeMapping,
|
|
timeFormatter: getTimeFormatter(dateFormat),
|
|
});
|
|
|
|
const isFiltered =
|
|
filterState.selectedValues && !filterState.selectedValues.includes(name);
|
|
const value = datum[metricLabel];
|
|
|
|
if (typeof value === 'number' || typeof value === 'string') {
|
|
totalValue += convertInteger(value);
|
|
}
|
|
|
|
return {
|
|
value,
|
|
name,
|
|
itemStyle: {
|
|
color: colorFn(name, sliceId),
|
|
opacity: isFiltered
|
|
? OpacityEnum.SemiTransparent
|
|
: OpacityEnum.NonTransparent,
|
|
},
|
|
};
|
|
});
|
|
|
|
const selectedValues = (filterState.selectedValues || []).reduce(
|
|
(acc: Record<string, number>, selectedValue: string) => {
|
|
const index = transformedData.findIndex(
|
|
({ name }) => name === selectedValue,
|
|
);
|
|
return {
|
|
...acc,
|
|
[index]: selectedValue,
|
|
};
|
|
},
|
|
{},
|
|
);
|
|
|
|
const formatter = (params: CallbackDataParams) =>
|
|
formatPieLabel({
|
|
params,
|
|
numberFormatter,
|
|
labelType,
|
|
});
|
|
|
|
const defaultLabel = {
|
|
formatter,
|
|
show: showLabels,
|
|
color: theme.colors.grayscale.dark2,
|
|
};
|
|
|
|
const chartPadding = getChartPadding(
|
|
showLegend,
|
|
legendOrientation,
|
|
legendMargin,
|
|
);
|
|
|
|
const series: PieSeriesOption[] = [
|
|
{
|
|
type: 'pie',
|
|
...chartPadding,
|
|
animation: false,
|
|
radius: [`${donut ? innerRadius : 0}%`, `${outerRadius}%`],
|
|
center: ['50%', '50%'],
|
|
avoidLabelOverlap: true,
|
|
labelLine: labelsOutside && labelLine ? { show: true } : { show: false },
|
|
minShowLabelAngle,
|
|
label: labelsOutside
|
|
? {
|
|
...defaultLabel,
|
|
position: 'outer',
|
|
alignTo: 'none',
|
|
bleedMargin: 5,
|
|
}
|
|
: {
|
|
...defaultLabel,
|
|
position: 'inner',
|
|
},
|
|
emphasis: {
|
|
label: {
|
|
show: true,
|
|
fontWeight: 'bold',
|
|
backgroundColor: theme.colors.grayscale.light5,
|
|
},
|
|
},
|
|
data: transformedData,
|
|
},
|
|
];
|
|
|
|
const echartOptions: EChartsCoreOption = {
|
|
grid: {
|
|
...defaultGrid,
|
|
},
|
|
tooltip: {
|
|
show: !inContextMenu,
|
|
...defaultTooltip,
|
|
trigger: 'item',
|
|
formatter: (params: any) =>
|
|
formatPieLabel({
|
|
params,
|
|
numberFormatter,
|
|
labelType: EchartsPieLabelType.KeyValuePercent,
|
|
sanitizeName: true,
|
|
}),
|
|
},
|
|
legend: {
|
|
...getLegendProps(legendType, legendOrientation, showLegend),
|
|
data: keys,
|
|
},
|
|
graphic: showTotal
|
|
? {
|
|
type: 'text',
|
|
...getTotalValuePadding({ chartPadding, donut, width, height }),
|
|
style: {
|
|
text: t('Total: %s', numberFormatter(totalValue)),
|
|
fontSize: 16,
|
|
fontWeight: 'bold',
|
|
},
|
|
z: 10,
|
|
}
|
|
: null,
|
|
series,
|
|
};
|
|
|
|
return {
|
|
formData,
|
|
width,
|
|
height,
|
|
echartOptions,
|
|
setDataMask,
|
|
emitFilter,
|
|
labelMap,
|
|
groupby,
|
|
selectedValues,
|
|
onContextMenu,
|
|
};
|
|
}
|