mirror of
https://gitee.com/antv/g6.git
synced 2024-11-29 10:18:14 +08:00
fix: fix issue with hidden elements being displayed in optimize-viewport-transform
This commit is contained in:
parent
80c1bca893
commit
7ba4eb1cff
@ -1,4 +1,6 @@
|
||||
import data from '@@/dataset/cluster.json';
|
||||
import type { DisplayObject } from '@antv/g';
|
||||
import type { ElementType } from '@antv/g6';
|
||||
import { Graph } from '@antv/g6';
|
||||
|
||||
export const behaviorOptimizeViewportTransform: TestCase = async (context) => {
|
||||
@ -23,7 +25,15 @@ export const behaviorOptimizeViewportTransform: TestCase = async (context) => {
|
||||
startArrow: true,
|
||||
},
|
||||
},
|
||||
behaviors: ['drag-canvas', 'zoom-canvas', 'scroll-canvas', 'optimize-viewport-transform'],
|
||||
behaviors: [
|
||||
'drag-canvas',
|
||||
'zoom-canvas',
|
||||
'scroll-canvas',
|
||||
{
|
||||
type: 'optimize-viewport-transform',
|
||||
shapes: (type: ElementType, shape: DisplayObject) => type === 'node' && shape.className === 'key',
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
await graph.render();
|
||||
|
@ -2,6 +2,7 @@ import type { BaseStyleProps, DisplayObject } from '@antv/g';
|
||||
import { debounce, isFunction } from '@antv/util';
|
||||
import { GraphEvent } from '../constants';
|
||||
import type { RuntimeContext } from '../runtime/types';
|
||||
import type { ElementType } from '../types';
|
||||
import type { IViewportEvent } from '../types/event';
|
||||
import { setVisibility } from '../utils/visibility';
|
||||
import type { BaseBehaviorOptions } from './base-behavior';
|
||||
@ -21,16 +22,17 @@ export interface OptimizeViewportTransformOptions extends BaseBehaviorOptions {
|
||||
*/
|
||||
enable?: boolean | ((event: IViewportEvent) => boolean);
|
||||
/**
|
||||
* <zh/> 在画布操作过程中,元素会被隐藏以提高性能。通过设置 `shapes` 配置项,可以保留指定类名的子图形不被隐藏,从而保留整个元素的部分可见性
|
||||
* <zh/> 指定固定显示的图形元素,应用该交互后,画布操作过程中除配置项中的元素外,其余图形将被隐藏,从而提升渲染性能。默认情况下,节点始终可见,而其他图形元素在交互时会自动隐藏
|
||||
* - 指定要显示的图形元素的 classname 数组
|
||||
* - 也可以通过回调函数动态判断是否显示
|
||||
*
|
||||
* <en/> During canvas operations, elements are hidden to improve performance. By configuring the `shapes` option, specific sub-elements with designated class names can be retained, thereby maintaining partial visibility of the entire element.
|
||||
* @defaultValue { node: ['key'] }
|
||||
* <en/> Specify fixed display elements. Upon applying this behavior, all other elements on the canvas, except those in the configuration settings, will be hidden to improve rendering performance. By default, nodes remain visible, while other graphic elements will automatically hide
|
||||
* - Specify the classname array of the graphic elements to be displayed
|
||||
* - You can also use a callback function to dynamically determine whether to display
|
||||
*/
|
||||
shapes?: {
|
||||
node?: string[];
|
||||
edge?: string[];
|
||||
combo?: string[];
|
||||
};
|
||||
shapes?:
|
||||
| { node?: string[]; edge?: string[]; combo?: string[] }
|
||||
| ((type: ElementType, shape: DisplayObject) => boolean);
|
||||
/**
|
||||
* <zh/> 设置防抖时间
|
||||
*
|
||||
@ -49,9 +51,11 @@ export class OptimizeViewportTransform extends BaseBehavior<OptimizeViewportTran
|
||||
static defaultOptions: Partial<OptimizeViewportTransformOptions> = {
|
||||
enable: true,
|
||||
debounce: 200,
|
||||
shapes: { node: ['key'] },
|
||||
shapes: (type: ElementType) => type === 'node',
|
||||
};
|
||||
|
||||
private hiddenShapes: DisplayObject[] = [];
|
||||
|
||||
private isVisible: boolean = true;
|
||||
|
||||
constructor(context: RuntimeContext, options: OptimizeViewportTransformOptions) {
|
||||
@ -62,24 +66,36 @@ export class OptimizeViewportTransform extends BaseBehavior<OptimizeViewportTran
|
||||
private setElementsVisibility = (
|
||||
elements: DisplayObject[],
|
||||
visibility: BaseStyleProps['visibility'],
|
||||
excludedClassnames?: string[],
|
||||
filter?: (shape: DisplayObject) => boolean,
|
||||
) => {
|
||||
elements.forEach((element) => {
|
||||
setVisibility(element, visibility, false, (shape) => {
|
||||
if (!shape.className) return true;
|
||||
return !excludedClassnames?.includes(shape.className);
|
||||
});
|
||||
elements.filter(Boolean).forEach((element) => {
|
||||
if (visibility === 'hidden' && !element.isVisible()) {
|
||||
this.hiddenShapes.push(element);
|
||||
} else if (visibility === 'visible' && this.hiddenShapes.includes(element)) {
|
||||
this.hiddenShapes.splice(this.hiddenShapes.indexOf(element), 1);
|
||||
} else {
|
||||
setVisibility(element, visibility, false, filter);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
private filterShapes = (type: ElementType, filter: OptimizeViewportTransformOptions['shapes']) => {
|
||||
if (isFunction(filter)) return (shape: DisplayObject) => !filter(type, shape);
|
||||
const excludedClassnames = filter?.[type];
|
||||
return (shape: DisplayObject) => {
|
||||
if (!shape.className) return true;
|
||||
return !!excludedClassnames?.includes(shape.className);
|
||||
};
|
||||
};
|
||||
|
||||
private hideShapes = (event: IViewportEvent) => {
|
||||
if (!this.validate(event) || !this.isVisible) return;
|
||||
|
||||
const { element } = this.context;
|
||||
const { shapes = {} } = this.options;
|
||||
this.setElementsVisibility(element!.getNodes(), 'hidden', shapes.node);
|
||||
this.setElementsVisibility(element!.getEdges(), 'hidden', shapes.edge);
|
||||
this.setElementsVisibility(element!.getCombos(), 'hidden', shapes.combo);
|
||||
this.setElementsVisibility(element!.getNodes(), 'hidden', this.filterShapes('node', shapes));
|
||||
this.setElementsVisibility(element!.getEdges(), 'hidden', this.filterShapes('edge', shapes));
|
||||
this.setElementsVisibility(element!.getCombos(), 'hidden', this.filterShapes('combo', shapes));
|
||||
this.isVisible = false;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user