Skip to content

Commit 6decb75

Browse files
damnrightyuyang
and
yuyang
authored
feat: selection's pointerEvents support function type (antvis#4067)
* feat: selection's pointerEvents support function type * fix: extracting function getPointerEventsValue --------- Co-authored-by: yuyang <[email protected]>
1 parent a769284 commit 6decb75

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

packages/x6-plugin-selection/src/selection.ts

+12-3
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export class SelectionImpl extends View<SelectionImpl.EventArgs> {
126126
const { ui, selection, translateBy, snapped } = options
127127

128128
const allowTranslating =
129-
(showNodeSelectionBox !== true || pointerEvents === 'none') &&
129+
(showNodeSelectionBox !== true || (pointerEvents && this.getPointerEventsValue(pointerEvents) === 'none')) &&
130130
!this.translating &&
131131
!selection
132132

@@ -807,6 +807,12 @@ export class SelectionImpl extends View<SelectionImpl.EventArgs> {
807807
)
808808
}
809809

810+
protected getPointerEventsValue(pointerEvents: 'none' | 'auto' | ((cells: Cell[]) => 'none' | 'auto')) {
811+
return typeof pointerEvents === 'string'
812+
? pointerEvents
813+
: pointerEvents(this.cells)
814+
}
815+
810816
protected createSelectionBox(cell: Cell) {
811817
this.addCellSelectedClassName(cell)
812818

@@ -819,6 +825,7 @@ export class SelectionImpl extends View<SelectionImpl.EventArgs> {
819825

820826
const className = this.boxClassName
821827
const box = document.createElement('div')
828+
const pointerEvents = this.options.pointerEvents
822829
Dom.addClass(box, className)
823830
Dom.addClass(box, `${className}-${cell.isNode() ? 'node' : 'edge'}`)
824831
Dom.attr(box, 'data-cell-id', cell.id)
@@ -828,7 +835,9 @@ export class SelectionImpl extends View<SelectionImpl.EventArgs> {
828835
top: bbox.y,
829836
width: bbox.width,
830837
height: bbox.height,
831-
pointerEvents: this.options.pointerEvents || 'auto',
838+
pointerEvents: pointerEvents
839+
? this.getPointerEventsValue(pointerEvents)
840+
: 'auto',
832841
})
833842
Dom.appendTo(box, this.container)
834843
this.showSelected()
@@ -978,7 +987,7 @@ export namespace SelectionImpl {
978987
rubberEdge?: boolean
979988

980989
// Whether to respond event on the selectionBox
981-
pointerEvents?: 'none' | 'auto'
990+
pointerEvents?: 'none' | 'auto' | ((cells: Cell[]) => 'none' | 'auto')
982991

983992
// with which mouse button the selection can be started
984993
eventTypes?: SelectionEventType[]

0 commit comments

Comments
 (0)