@@ -126,7 +126,7 @@ export class SelectionImpl extends View<SelectionImpl.EventArgs> {
126
126
const { ui, selection, translateBy, snapped } = options
127
127
128
128
const allowTranslating =
129
- ( showNodeSelectionBox !== true || pointerEvents === 'none' ) &&
129
+ ( showNodeSelectionBox !== true || ( pointerEvents && this . getPointerEventsValue ( pointerEvents ) === 'none' ) ) &&
130
130
! this . translating &&
131
131
! selection
132
132
@@ -807,6 +807,12 @@ export class SelectionImpl extends View<SelectionImpl.EventArgs> {
807
807
)
808
808
}
809
809
810
+ protected getPointerEventsValue ( pointerEvents : 'none' | 'auto' | ( ( cells : Cell [ ] ) => 'none' | 'auto' ) ) {
811
+ return typeof pointerEvents === 'string'
812
+ ? pointerEvents
813
+ : pointerEvents ( this . cells )
814
+ }
815
+
810
816
protected createSelectionBox ( cell : Cell ) {
811
817
this . addCellSelectedClassName ( cell )
812
818
@@ -819,6 +825,7 @@ export class SelectionImpl extends View<SelectionImpl.EventArgs> {
819
825
820
826
const className = this . boxClassName
821
827
const box = document . createElement ( 'div' )
828
+ const pointerEvents = this . options . pointerEvents
822
829
Dom . addClass ( box , className )
823
830
Dom . addClass ( box , `${ className } -${ cell . isNode ( ) ? 'node' : 'edge' } ` )
824
831
Dom . attr ( box , 'data-cell-id' , cell . id )
@@ -828,7 +835,9 @@ export class SelectionImpl extends View<SelectionImpl.EventArgs> {
828
835
top : bbox . y ,
829
836
width : bbox . width ,
830
837
height : bbox . height ,
831
- pointerEvents : this . options . pointerEvents || 'auto' ,
838
+ pointerEvents : pointerEvents
839
+ ? this . getPointerEventsValue ( pointerEvents )
840
+ : 'auto' ,
832
841
} )
833
842
Dom . appendTo ( box , this . container )
834
843
this . showSelected ( )
@@ -978,7 +987,7 @@ export namespace SelectionImpl {
978
987
rubberEdge ?: boolean
979
988
980
989
// Whether to respond event on the selectionBox
981
- pointerEvents ?: 'none' | 'auto'
990
+ pointerEvents ?: 'none' | 'auto' | ( ( cells : Cell [ ] ) => 'none' | 'auto' )
982
991
983
992
// with which mouse button the selection can be started
984
993
eventTypes ?: SelectionEventType [ ]
0 commit comments