1
1
import { Coords , firePointerEvent } from '../utils'
2
- import type { pointerKey , pointerState , PointerTarget } from './types'
2
+ import type {
3
+ inputDeviceState ,
4
+ pointerKey ,
5
+ pointerState ,
6
+ PointerTarget ,
7
+ } from './types'
3
8
4
9
export interface PointerPressAction extends PointerTarget {
5
10
keyDef : pointerKey
@@ -9,9 +14,9 @@ export interface PointerPressAction extends PointerTarget {
9
14
10
15
export async function pointerPress (
11
16
{ keyDef, releasePrevious, releaseSelf, target, coords} : PointerPressAction ,
12
- state : pointerState ,
17
+ state : inputDeviceState ,
13
18
) : Promise < void > {
14
- const previous = state . pressed . find ( p => p . keyDef === keyDef )
19
+ const previous = state . pointerState . pressed . find ( p => p . keyDef === keyDef )
15
20
16
21
const pointerName =
17
22
keyDef . pointerType === 'touch' ? keyDef . name : keyDef . pointerType
@@ -39,12 +44,12 @@ function down(
39
44
keyDef : pointerKey ,
40
45
target : Element ,
41
46
coords : Coords ,
42
- state : pointerState ,
47
+ { pointerState , keyboardState } : inputDeviceState ,
43
48
) {
44
49
const { name, pointerType, button} = keyDef
45
- const pointerId = pointerType === 'mouse' ? 1 : getNextPointerId ( state )
50
+ const pointerId = pointerType === 'mouse' ? 1 : getNextPointerId ( pointerState )
46
51
47
- state . position [ pointerName ] = {
52
+ pointerState . position [ pointerName ] = {
48
53
pointerId,
49
54
pointerType,
50
55
target,
@@ -54,7 +59,7 @@ function down(
54
59
let isMultiTouch = false
55
60
let isPrimary = true
56
61
if ( pointerType !== 'mouse' ) {
57
- for ( const obj of state . pressed ) {
62
+ for ( const obj of pointerState . pressed ) {
58
63
// TODO: test multi device input across browsers
59
64
// istanbul ignore else
60
65
if ( obj . keyDef . pointerType === pointerType ) {
@@ -65,11 +70,11 @@ function down(
65
70
}
66
71
}
67
72
68
- if ( state . activeClickCount ?. [ 0 ] !== name ) {
69
- delete state . activeClickCount
73
+ if ( pointerState . activeClickCount ?. [ 0 ] !== name ) {
74
+ delete pointerState . activeClickCount
70
75
}
71
- const clickCount = Number ( state . activeClickCount ?. [ 1 ] ?? 0 ) + 1
72
- state . activeClickCount = [ name , clickCount ]
76
+ const clickCount = Number ( pointerState . activeClickCount ?. [ 1 ] ?? 0 ) + 1
77
+ pointerState . activeClickCount = [ name , clickCount ]
73
78
74
79
const pressObj = {
75
80
keyDef,
@@ -80,15 +85,15 @@ function down(
80
85
isPrimary,
81
86
clickCount,
82
87
}
83
- state . pressed . push ( pressObj )
88
+ pointerState . pressed . push ( pressObj )
84
89
85
90
if ( pointerType !== 'mouse' ) {
86
91
fire ( 'pointerover' )
87
92
fire ( 'pointerenter' )
88
93
}
89
94
if (
90
95
pointerType !== 'mouse' ||
91
- ! state . pressed . some (
96
+ ! pointerState . pressed . some (
92
97
p => p . keyDef !== keyDef && p . keyDef . pointerType === pointerType ,
93
98
)
94
99
) {
@@ -104,10 +109,9 @@ function down(
104
109
105
110
function fire ( type : string ) {
106
111
return firePointerEvent ( target , type , {
112
+ pointerState,
113
+ keyboardState,
107
114
button,
108
- buttons : state . pressed
109
- . filter ( p => p . keyDef . pointerType === pointerType )
110
- . map ( p => p . keyDef . button ?? 0 ) ,
111
115
clickCount,
112
116
coords,
113
117
isPrimary,
@@ -122,15 +126,15 @@ function up(
122
126
{ pointerType, button} : pointerKey ,
123
127
target : Element ,
124
128
coords : Coords ,
125
- state : pointerState ,
129
+ { pointerState , keyboardState } : inputDeviceState ,
126
130
pressed : pointerState [ 'pressed' ] [ number ] ,
127
131
) {
128
- state . pressed = state . pressed . filter ( p => p !== pressed )
132
+ pointerState . pressed = pointerState . pressed . filter ( p => p !== pressed )
129
133
130
134
const { isMultiTouch, isPrimary, pointerId, clickCount} = pressed
131
135
let { unpreventedDefault} = pressed
132
136
133
- state . position [ pointerName ] = {
137
+ pointerState . position [ pointerName ] = {
134
138
pointerId,
135
139
pointerType,
136
140
target,
@@ -141,7 +145,8 @@ function up(
141
145
142
146
if (
143
147
pointerType !== 'mouse' ||
144
- ! state . pressed . filter ( p => p . keyDef . pointerType === pointerType ) . length
148
+ ! pointerState . pressed . filter ( p => p . keyDef . pointerType === pointerType )
149
+ . length
145
150
) {
146
151
fire ( 'pointerup' )
147
152
}
@@ -169,10 +174,9 @@ function up(
169
174
170
175
function fire ( type : string ) {
171
176
return firePointerEvent ( target , type , {
177
+ pointerState,
178
+ keyboardState,
172
179
button,
173
- buttons : state . pressed
174
- . filter ( p => p . keyDef . pointerType === pointerType )
175
- . map ( p => p . keyDef . button ?? 0 ) ,
176
180
clickCount,
177
181
coords,
178
182
isPrimary,
0 commit comments