File tree 2 files changed +11
-6
lines changed
packages/ui/src/components
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export const DModal: {
136
136
} else if ( modalContentRef . current ) {
137
137
const left = `${ ( ROOT_DATA . pageSize . width - modalContentRef . current . offsetWidth ) / 2 } px` ;
138
138
const top = dTop === 'center' ? `${ ( ROOT_DATA . pageSize . height - modalContentRef . current . offsetHeight ) / 2 } px` : topStyle ;
139
- dataRef . current . transformOrigin = `calc(${ ROOT_DATA . clickEvent . e . clientX } px - ${ left } ) calc(${ ROOT_DATA . clickEvent . e . clientY } px - ${ top } )` ;
139
+ dataRef . current . transformOrigin = `calc(${ ROOT_DATA . clickEvent . x } px - ${ left } ) calc(${ ROOT_DATA . clickEvent . y } px - ${ top } )` ;
140
140
}
141
141
} }
142
142
afterEnter = { ( ) => {
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ const ROOT = new DConfigContextManager({
29
29
export const ROOT_DATA : {
30
30
clickEvent ?: {
31
31
time : number ;
32
- e : MouseEvent ;
32
+ x : number ;
33
+ y : number ;
33
34
} ;
34
35
pageSize : { width : number ; height : number } ;
35
36
} = {
@@ -96,10 +97,14 @@ export function DRoot(props: DRootProps): JSX.Element | null {
96
97
( e ) => {
97
98
// Check if click by keydown.
98
99
if ( ! ( e . clientX === 0 && e . clientY === 0 ) ) {
99
- ROOT_DATA . clickEvent = {
100
- time : performance . now ( ) ,
101
- e,
102
- } ;
100
+ const rect = e . target instanceof Element ? e . target . getBoundingClientRect ( ) : null ;
101
+ if ( rect ) {
102
+ ROOT_DATA . clickEvent = {
103
+ time : performance . now ( ) ,
104
+ x : e . offsetX + rect . x ,
105
+ y : e . offsetX + rect . y ,
106
+ } ;
107
+ }
103
108
}
104
109
} ,
105
110
{ capture : true }
You can’t perform that action at this time.
0 commit comments