feat(plugin-chart-echarts): supports sunburst chart v2 [WIP] (#21625)

Co-authored-by: Michael S. Molina <michael.s.molina@gmail.com>
This commit is contained in:
Stephen Liu
2023-01-17 05:10:28 +08:00
committed by GitHub
parent d2a355b2fb
commit b53941fb3e
14 changed files with 1266 additions and 100 deletions

View File

@@ -0,0 +1,87 @@
/**
* 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 { DataRecord } from '@superset-ui/core';
import _ from 'lodash';
export type TreeNode = {
name: string;
value: number;
secondaryValue: number;
groupBy: string;
children?: TreeNode[];
};
export function treeBuilder(
data: DataRecord[],
groupBy: string[],
metric: string,
secondaryMetric?: string,
): TreeNode[] {
const [curGroupBy, ...restGroupby] = groupBy;
const curData = _.groupBy(data, curGroupBy);
return _.transform(
curData,
(result, value, name) => {
if (!restGroupby.length) {
(value ?? []).forEach(datum => {
const metricValue = getMetricValue(datum, metric);
const secondaryValue = secondaryMetric
? getMetricValue(datum, secondaryMetric)
: metricValue;
const item = {
name,
value: metricValue,
secondaryValue,
groupBy: curGroupBy,
};
result.push(item);
});
} else {
const children = treeBuilder(
value,
restGroupby,
metric,
secondaryMetric,
);
const metricValue = children.reduce(
(prev, cur) => prev + (cur.value as number),
0,
);
const secondaryValue = secondaryMetric
? children.reduce(
(prev, cur) => prev + (cur.secondaryValue as number),
0,
)
: metricValue;
result.push({
name,
children,
value: metricValue,
secondaryValue,
groupBy: curGroupBy,
});
}
},
[] as TreeNode[],
);
}
function getMetricValue(datum: DataRecord, metric: string) {
return _.isNumber(datum[metric]) ? (datum[metric] as number) : 0;
}