@antv/g2
Version:
the Grammar of Graphics in Javascript
54 lines (49 loc) • 1.38 kB
text/typescript
import { MarkComponent as MC, Vector2 } from '../runtime';
import { LineMark } from '../spec';
import { MaybeIdentityX, MaybeIdentityY } from '../transform';
import { LinkArc, LinkShape, LinkSmooth, LinkVHV } from '../shape';
import {
baseGeometryChannels,
basePostInference,
basePreInference,
createBandOffset,
tooltip2d,
} from './utils';
const shape = {
link: LinkShape,
arc: LinkArc,
smooth: LinkSmooth,
vhv: LinkVHV,
};
export type LinkOptions = Omit<LineMark, 'type'>;
/**
* Connect `start` to `end` with single line.
*/
export const Link: MC<LinkOptions> = (options) => {
return (index, scale, value, coordinate) => {
const { x: X, y: Y, x1: X1 = X, y1: Y1 = Y } = value;
const offset = createBandOffset(scale, value, options);
const P = index.map((i) => [
coordinate.map(offset([+X[i], +Y[i]], i)) as Vector2,
coordinate.map(offset([+X1[i], +Y1[i]], i)) as Vector2,
]);
return [index, P];
};
};
Link.props = {
defaultShape: 'link',
defaultLabelShape: 'label',
composite: false,
shape,
channels: [
...baseGeometryChannels({ shapes: Object.keys(shape) }),
{ name: 'x', required: true },
{ name: 'y', required: true },
],
preInference: [
...basePreInference(),
{ type: MaybeIdentityY },
{ type: MaybeIdentityX },
],
postInference: [...basePostInference(), ...tooltip2d()],
};