Skip to content

Commit

Permalink
feat(tooltip): tooltip support get content async
Browse files Browse the repository at this point in the history
  • Loading branch information
TZZack committed Dec 20, 2024
1 parent 59267bf commit 6f742db
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 8 deletions.
1 change: 1 addition & 0 deletions packages/g6/__tests__/demos/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export { pluginToolbarIconfont } from './plugin-toolbar-iconfont';
export { pluginTooltip } from './plugin-tooltip';
export { pluginTooltipDual } from './plugin-tooltip-dual';
export { pluginTooltipEnable } from './plugin-tooltip-enable';
export { pluginTooltipAsync } from './plugin-tooltip-async';
export { pluginWatermark } from './plugin-watermark';
export { pluginWatermarkImage } from './plugin-watermark-image';
export { theme } from './theme';
Expand Down
34 changes: 34 additions & 0 deletions packages/g6/__tests__/demos/plugin-tooltip-async.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import type { ElementDatum, IElementEvent } from '@antv/g6';
import { Graph } from '@antv/g6';

export const pluginTooltipAsync: TestCase = async (context) => {
const graph = new Graph({
...context,
data: {
nodes: [
{ id: 'node1', style: { x: 150, y: 100 }, data: { desc: 'get content async test' } },
],
},
node: {
style: {
labelText: (d) => d.id,
},
},
plugins: [
{
key: 'tooltip',
type: 'tooltip',
trigger: 'click',
getContent: (evt: IElementEvent, items: ElementDatum[]) => {
return new Promise((resolve) => {
resolve(items[0].data?.desc || '');
})
},
},
],
});

await graph.render();

return graph;
};
25 changes: 20 additions & 5 deletions packages/g6/__tests__/unit/plugins/tooltip.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Tooltip } from '@/src';
import { ComboEvent, EdgeEvent, NodeEvent, idOf } from '@/src';
import { pluginTooltip, pluginTooltipEnable } from '@@/demos';
import { pluginTooltip, pluginTooltipEnable, pluginTooltipAsync } from '@@/demos';
import { createDemoGraph } from '@@/utils';

describe('plugin tooltip', () => {
Expand Down Expand Up @@ -46,7 +46,7 @@ describe('plugin tooltip', () => {
it('show tooltip by id', async () => {
const graph = await createDemoGraph(pluginTooltip);
const tooltip = graph.getPluginInstance<Tooltip>('tooltip');
tooltip.showById('6');
await tooltip.showById('6');
await expect(graph).toMatchSnapshot(__filename, 'show-tooltip-by-id');
graph.destroy();
});
Expand All @@ -55,11 +55,12 @@ describe('plugin tooltip', () => {
const graph = await createDemoGraph(pluginTooltipEnable);
const container = graph.getCanvas().getContainer()!;
const el = container.querySelector('.tooltip') as HTMLDivElement;
const plugin = graph.getPluginInstance<Tooltip>('tooltip');

graph.emit(NodeEvent.CLICK, { targetType: 'node', target: { id: 'node3' } });
await plugin.showById('node3');
expect(el.style.visibility).toBe('hidden');

graph.emit(NodeEvent.CLICK, { targetType: 'node', target: { id: 'node1' } });
await plugin.showById('node1');
expect(el.style.visibility).toBe('visible');

graph.destroy();
Expand All @@ -69,10 +70,24 @@ describe('plugin tooltip', () => {
const graph = await createDemoGraph(pluginTooltipEnable);
const container = graph.getCanvas().getContainer()!;
const el = container.querySelector('.tooltip') as HTMLDivElement;
const plugin = graph.getPluginInstance<Tooltip>('tooltip');

graph.emit(NodeEvent.CLICK, { targetType: 'node', target: { id: 'node2' } });
await plugin.showById('node2');
expect(el.style.visibility).toBe('hidden');

graph.destroy();
});

it('get content async', async () => {
const graph = await createDemoGraph(pluginTooltipAsync);
const container = graph.getCanvas().getContainer()!;
const el = container.querySelector('.tooltip') as HTMLDivElement;
const plugin = graph.getPluginInstance<Tooltip>('tooltip');

await plugin.showById('node1');
expect(el.style.visibility).toBe('visible');
expect(el.innerHTML).toBe('get content async test');

graph.destroy();
});
});
6 changes: 3 additions & 3 deletions packages/g6/src/plugins/tooltip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export interface TooltipOptions
*
* <en/> Function for getting tooltip content
*/
getContent?: (event: IElementEvent, items: ElementDatum[]) => HTMLElement | string;
getContent?: (event: IElementEvent, items: ElementDatum[]) => Promise<HTMLElement | string>;
/**
* <zh/> 是否启用
*
Expand Down Expand Up @@ -243,7 +243,7 @@ export class Tooltip extends BasePlugin<TooltipOptions> {
* @param event - <zh/> 目标元素 | <en/> target element
* @internal
*/
public show = (event: IElementEvent) => {
public show = async (event: IElementEvent) => {
const {
client,
target: { id },
Expand All @@ -258,7 +258,7 @@ export class Tooltip extends BasePlugin<TooltipOptions> {

let tooltipContent: { [key: string]: unknown } = {};
if (getContent) {
tooltipContent.content = getContent(event, items);
tooltipContent.content = await getContent(event, items);
if (!tooltipContent.content) return;
} else {
const style = this.context.graph.getElementRenderStyle(id);
Expand Down

0 comments on commit 6f742db

Please sign in to comment.