@@ -639,9 +639,9 @@ class ChartSystem extends System {
639
639
class DOMMouseDragHandler {
640
640
initializeDragListeners ( entity : Entity ) {
641
641
const domComponent = entity . getComponent ( DOMComponent ) ;
642
- const mouseDrag = entity . getComponent ( MouseDragForceComponent ) ;
642
+ const mouseDrag = entity . getComponent ( MouseDragComponent ) ;
643
643
const position = entity . getComponent ( PositionComponent ) ;
644
-
644
+
645
645
if ( ! domComponent || ! mouseDrag || ! position ) return ;
646
646
647
647
const domElement = domComponent . domElement ;
@@ -671,7 +671,7 @@ class DOMMouseDragHandler {
671
671
672
672
onMouseDown (
673
673
event : MouseEvent ,
674
- mouseDragComponent : MouseDragForceComponent ,
674
+ mouseDragComponent : MouseDragComponent ,
675
675
position : PositionComponent ,
676
676
element : HTMLElement ,
677
677
) {
@@ -688,7 +688,7 @@ class DOMMouseDragHandler {
688
688
) ; // Set initial target
689
689
}
690
690
691
- onMouseMove ( event : MouseEvent , mouseDragComponent : MouseDragForceComponent ) {
691
+ onMouseMove ( event : MouseEvent , mouseDragComponent : MouseDragComponent ) {
692
692
if ( mouseDragComponent . isDragging ) {
693
693
// Update the target, accounting for the initial offset
694
694
mouseDragComponent . setTarget (
@@ -698,15 +698,15 @@ class DOMMouseDragHandler {
698
698
}
699
699
}
700
700
701
- onMouseUp ( mouseDragComponent : MouseDragForceComponent , element : HTMLElement ) {
701
+ onMouseUp ( mouseDragComponent : MouseDragComponent , element : HTMLElement ) {
702
702
element . classList . remove ( "dragging" ) ;
703
703
mouseDragComponent . stopDrag ( ) ;
704
704
}
705
705
706
706
// Touch event equivalents
707
707
onTouchStart (
708
708
event : TouchEvent ,
709
- mouseDragComponent : MouseDragForceComponent ,
709
+ mouseDragComponent : MouseDragComponent ,
710
710
position : PositionComponent ,
711
711
element : HTMLElement ,
712
712
) {
@@ -726,7 +726,7 @@ class DOMMouseDragHandler {
726
726
) ; // Set initial target
727
727
}
728
728
729
- onTouchMove ( event : TouchEvent , mouseDragComponent : MouseDragForceComponent ) {
729
+ onTouchMove ( event : TouchEvent , mouseDragComponent : MouseDragComponent ) {
730
730
if ( mouseDragComponent . isDragging ) {
731
731
event . preventDefault ( ) ; // Prevent scrolling
732
732
const touch = event . touches [ 0 ] ; // Get the first touch point
@@ -739,7 +739,7 @@ class DOMMouseDragHandler {
739
739
}
740
740
}
741
741
742
- onTouchEnd ( mouseDragComponent : MouseDragForceComponent , element : HTMLElement ) {
742
+ onTouchEnd ( mouseDragComponent : MouseDragComponent , element : HTMLElement ) {
743
743
element . classList . remove ( "dragging" ) ;
744
744
mouseDragComponent . stopDrag ( ) ;
745
745
}
0 commit comments