import { filter, isArray, isObject } from '@antv/util'; import { animation, annotation, interaction, pattern, scale, state, theme, tooltip } from '../../adaptor/common'; import { interval } from '../../adaptor/geometries'; import { Params } from '../../core/adaptor'; import { deepAssign, findGeometry, flow, LEVEL, log, transformLabel } from '../../utils'; import { RoseOptions } from './types'; /** * geometry 配置处理 * @param params */ function geometry(params: Params): Params { const { chart, options } = params; const { data, sectorStyle, shape, color } = options; // 装载数据 chart.data(data); flow(interval)( deepAssign({}, params, { options: { marginRatio: 1, interval: { style: sectorStyle, color, shape: shape, }, }, }) ); return params; } /** * label 配置 * @param params */ function label(params: Params): Params { const { chart, options } = params; const { label, xField } = options; const geometry = findGeometry(chart, 'interval'); // label 为 false 不显示 label if (label === false) { geometry.label(false); } else if (isObject(label)) { const { callback, fields, ...cfg } = label; const { offset } = cfg; let layout = cfg.layout; // 当 label 在 shape 外部显示时,设置 'limit-in-shape' 会 // 造成 label 不显示。 if (offset === undefined || offset >= 0) { layout = layout ? (isArray(layout) ? layout : [layout]) : []; cfg.layout = filter(layout, (v) => v.type !== 'limit-in-shape'); cfg.layout.length || delete cfg.layout; } geometry.label({ fields: fields || [xField], callback, cfg: transformLabel(cfg), }); } else { log(LEVEL.WARN, label === null, 'the label option must be an Object.'); geometry.label({ fields: [xField] }); } return params; } /** * legend 配置 * @param params */ export function legend(params: Params): Params { const { chart, options } = params; const { legend, seriesField } = options; if (legend === false) { chart.legend(false); } else if (seriesField) { chart.legend(seriesField, legend); } return params; } /** * coord 配置 * @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, }, }); return params; } /** * meta 配置 * @param params */ function meta(params: Params): Params { const { options } = params; const { xAxis, yAxis, xField, yField } = options; return flow( scale({ [xField]: xAxis, [yField]: yAxis, }) )(params); } /** * axis 配置 * @param params */ function axis(params: Params): Params { const { chart, options } = params; const { xAxis, yAxis, xField, yField } = options; // 为 falsy 则是不显示轴 if (!xAxis) { chart.axis(xField, false); } else { chart.axis(xField, xAxis); } if (!yAxis) { chart.axis(yField, false); } else { chart.axis(yField, yAxis); } return params; } /** * 玫瑰图适配器 * @param chart * @param options */ export function adaptor(params: Params) { // flow 的方式处理所有的配置到 G2 API flow( pattern('sectorStyle'), geometry, meta, label, coordinate, axis, legend, tooltip, interaction, animation, theme, annotation(), state )(params); }