import { animation, annotation, interaction, legend, scale, theme, tooltip } from '../../adaptor/common'; import { interval, point } from '../../adaptor/geometries'; import { pattern } from '../../adaptor/pattern'; import { Params } from '../../core/adaptor'; import { deepAssign, findGeometry, flow, processIllegalData, transformLabel } from '../../utils'; import { RadialBarOptions } from './types'; import { getScaleMax, getStackedData } from './utils'; /** * geometry 处理 * @param params */ function geometry(params: Params): Params { const { chart, options } = params; const { barStyle: style, color, tooltip, colorField, type, xField, yField, data, shape } = options; // 处理不合法的数据 const processData = processIllegalData(data, yField); chart.data(processData); const p = deepAssign({}, params, { options: { tooltip, seriesField: colorField, interval: { style, color, shape: shape || (type === 'line' ? 'line' : 'intervel'), }, // 柱子的一些样式设置:柱子最小宽度、柱子最大宽度、柱子背景 minColumnWidth: options.minBarWidth, maxColumnWidth: options.maxBarWidth, columnBackground: options.barBackground, }, }); interval(p); if (type === 'line') { point({ chart, options: { xField, yField, seriesField: colorField, point: { shape: 'circle', color } }, }); } return params; } /** * meta 配置 * @param params */ export function meta(params: Params): Params { const { options } = params; const { yField, xField, data, isStack, isGroup, colorField, maxAngle } = options; const actualData = isStack && !isGroup && colorField ? getStackedData(data, xField, yField) : data; const processData = processIllegalData(actualData, yField); return flow( scale({ [yField]: { min: 0, max: getScaleMax(maxAngle, yField, processData), }, }) )(params); } /** * coordinate 配置 * @param params */ function coordinate(params: Params): Params { const { chart, options } = params; const { radius, innerRadius, startAngle, endAngle } = options; chart .coordinate({ type: 'polar', cfg: { radius, innerRadius, startAngle, endAngle, }, }) .transpose(); return params; } /** * axis 配置 * @param params */ export function axis(params: Params): Params { const { chart, options } = params; const { xField, xAxis } = options; chart.axis(xField, xAxis); return params; } /** * 数据标签 * @param params */ function label(params: Params): Params { const { chart, options } = params; const { label, yField } = options; const intervalGeometry = findGeometry(chart, 'interval'); // label 为 false, 空 则不显示 label if (!label) { intervalGeometry.label(false); } else { const { callback, ...cfg } = label; intervalGeometry.label({ fields: [yField], callback, cfg: { ...transformLabel(cfg), type: 'polar', }, }); } return params; } /** * 图适配器 * @param chart * @param options */ export function adaptor(params: Params) { return flow( pattern('barStyle'), geometry, meta, axis, coordinate, interaction, animation, theme, tooltip, legend, annotation(), label )(params); }