fix: fix issue with hidden elements being displayed in optimize-viewport-transform

This commit is contained in:
yvonneyx 2024-10-25 16:03:38 +08:00
parent 80c1bca893
commit 7ba4eb1cff
2 changed files with 45 additions and 19 deletions

View File

@ -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();

View File

@ -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,14 +66,26 @@ 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) => {
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);
});
});
return !!excludedClassnames?.includes(shape.className);
};
};
private hideShapes = (event: IViewportEvent) => {
@ -77,9 +93,9 @@ export class OptimizeViewportTransform extends BaseBehavior<OptimizeViewportTran
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;
};