-
Notifications
You must be signed in to change notification settings - Fork 605
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(marker): 修复折线图 marker 交互在 tooltip hide 时,没有取消 & 丰富demo (#2895)
- Loading branch information
Showing
4 changed files
with
185 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
import { Line, G2 } from '@antv/g2plot'; | ||
import { each, findIndex } from '@antv/util'; | ||
|
||
const { InteractionAction, registerInteraction, registerAction } = G2; | ||
|
||
const data = [ | ||
{ year: '1991', value: 3 }, | ||
{ year: '1992', value: 4 }, | ||
{ year: '1993', value: 3.5 }, | ||
{ year: '1994', value: 5 }, | ||
{ year: '1995', value: 4.9 }, | ||
{ year: '1996', value: 6 }, | ||
{ year: '1997', value: 7 }, | ||
{ year: '1998', value: 9 }, | ||
{ year: '1999', value: 13 }, | ||
]; | ||
|
||
G2.registerShape('point', 'custom-point', { | ||
draw(cfg, container) { | ||
const point = { x: cfg.x, y: cfg.y }; | ||
const group = container.addGroup(); | ||
group.addShape('circle', { | ||
name: 'outer-point', | ||
attrs: { | ||
x: point.x, | ||
y: point.y, | ||
fill: cfg.color || 'red', | ||
opacity: 0.5, | ||
r: 6, | ||
}, | ||
}); | ||
group.addShape('circle', { | ||
name: 'inner-point', | ||
attrs: { | ||
x: point.x, | ||
y: point.y, | ||
fill: cfg.color || 'red', | ||
opacity: 1, | ||
r: 2, | ||
}, | ||
}); | ||
return group; | ||
}, | ||
}); | ||
|
||
export class CustomMarkerAction extends InteractionAction { | ||
active() { | ||
const view = this.getView(); | ||
const evt = this.context.event; | ||
if (evt.data) { | ||
// items: 数组对象,当前 tooltip 显示的每条内容 | ||
const { items } = evt.data; | ||
const pointGeometries = view.geometries.filter((geom) => geom.type === 'point'); | ||
each(pointGeometries, (pointGeometry) => { | ||
each(pointGeometry.elements, (pointElement, idx) => { | ||
const active = findIndex(items, (item) => item.data === pointElement.data) !== -1; | ||
const [point0, point1] = pointElement.shape.getChildren(); | ||
|
||
if (active) { | ||
// outer-circle | ||
point0.animate( | ||
{ | ||
r: 10, | ||
opacity: 0.2, | ||
}, | ||
{ | ||
duration: 1800, | ||
easing: 'easeLinear', | ||
repeat: true, | ||
} | ||
); | ||
// inner-circle | ||
point1.animate( | ||
{ | ||
r: 6, | ||
opacity: 0.4, | ||
}, | ||
{ | ||
duration: 800, | ||
easing: 'easeLinear', | ||
repeat: true, | ||
} | ||
); | ||
} else { | ||
this.resetElementState(pointElement); | ||
} | ||
}); | ||
}); | ||
} | ||
} | ||
|
||
reset() { | ||
const view = this.getView(); | ||
const points = view.geometries.filter((geom) => geom.type === 'point'); | ||
each(points, (point) => { | ||
each(point.elements, (pointElement) => { | ||
this.resetElementState(pointElement); | ||
}); | ||
}); | ||
} | ||
|
||
resetElementState(element) { | ||
const [point0, point1] = element.shape.getChildren(); | ||
point0.stopAnimate(); | ||
point1.stopAnimate(); | ||
const { r, opacity } = point0.get('attrs'); | ||
point0.attr({ r, opacity }); | ||
const { r: r1, opacity: opacity1 } = point1.get('attrs'); | ||
point1.attr({ r: r1, opacity: opacity1 }); | ||
} | ||
|
||
getView() { | ||
return this.context.view; | ||
} | ||
} | ||
|
||
registerAction('custom-marker-action', CustomMarkerAction); | ||
registerInteraction('custom-marker-interaction', { | ||
start: [ | ||
{ | ||
trigger: 'tooltip:show', | ||
action: 'custom-marker-action:active', | ||
}, | ||
], | ||
end: [ | ||
{ | ||
trigger: 'tooltip:hide', | ||
action: 'custom-marker-action:reset', | ||
}, | ||
], | ||
}); | ||
|
||
const line = new Line('container', { | ||
data, | ||
xField: 'year', | ||
yField: 'value', | ||
label: {}, | ||
point: { | ||
size: 5, | ||
shape: 'custom-point', | ||
style: { | ||
fill: 'white', | ||
stroke: '#5B8FF9', | ||
lineWidth: 2, | ||
}, | ||
}, | ||
tooltip: { showMarkers: false }, | ||
state: { | ||
active: { | ||
style: { | ||
shadowBlur: 4, | ||
stroke: '#000', | ||
fill: 'red', | ||
}, | ||
}, | ||
}, | ||
interactions: [{ type: 'custom-marker-interaction' }], | ||
}); | ||
|
||
line.render(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters