-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathevent_options_tests.ts
More file actions
337 lines (245 loc) · 11.5 KB
/
event_options_tests.ts
File metadata and controls
337 lines (245 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
import type { Controller } from "src/core"
import { LogControllerTestCase } from "../../cases/log_controller_test_case"
export default class EventOptionsTests extends LogControllerTestCase {
identifier = ["c", "d"]
fixtureHTML = `
<div data-controller="c d">
<button></button>
<details></details>
<input>
</div>
<div id="outside"></div>
`
async "test different syntaxes for once action"() {
await this.setAction(this.buttonElement, "click->c#log:once d#log2:once c#log3:once")
await this.triggerEvent(this.buttonElement, "click")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions(
{ name: "log", identifier: "c", eventType: "click", currentTarget: this.buttonElement },
{ name: "log2", identifier: "d", eventType: "click", currentTarget: this.buttonElement },
{ name: "log3", identifier: "c", eventType: "click", currentTarget: this.buttonElement }
)
}
async "test mix once and standard actions"() {
await this.setAction(this.buttonElement, "c#log:once d#log2 c#log3")
await this.triggerEvent(this.buttonElement, "click")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions(
{ name: "log", identifier: "c", eventType: "click", currentTarget: this.buttonElement },
{ name: "log2", identifier: "d", eventType: "click", currentTarget: this.buttonElement },
{ name: "log3", identifier: "c", eventType: "click", currentTarget: this.buttonElement },
{ name: "log2", identifier: "d", eventType: "click", currentTarget: this.buttonElement },
{ name: "log3", identifier: "c", eventType: "click", currentTarget: this.buttonElement }
)
}
async "test stop propagation with once"() {
await this.setAction(this.buttonElement, "c#stop:once c#log")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions({ name: "stop", identifier: "c", eventType: "click", currentTarget: this.buttonElement })
await this.nextFrame
await this.triggerEvent(this.buttonElement, "click")
this.assertActions(
{ name: "stop", identifier: "c", eventType: "click", currentTarget: this.buttonElement },
{ name: "log", identifier: "c", eventType: "click", currentTarget: this.buttonElement }
)
}
async "test global once actions"() {
await this.setAction(this.buttonElement, "keydown@window->c#log:once")
await this.triggerEvent("#outside", "keydown")
await this.triggerEvent("#outside", "keydown")
this.assertActions({ name: "log", eventType: "keydown" })
}
async "test edge case when updating action list with setAttribute preserves once history"() {
await this.setAction(this.buttonElement, "c#log:once")
await this.triggerEvent(this.buttonElement, "click")
await this.triggerEvent(this.buttonElement, "click")
//modify with a setAttribute and c#log should not be called anyhow
await this.setAction(this.buttonElement, "c#log2 c#log:once d#log")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions(
{ name: "log", identifier: "c" },
{ name: "log2", identifier: "c" },
{ name: "log", identifier: "d" }
)
}
async "test default passive action"() {
await this.setAction(this.buttonElement, "scroll->c#logPassive:passive")
await this.triggerEvent(this.buttonElement, "scroll", { setDefaultPrevented: false })
this.assertActions({ name: "logPassive", eventType: "scroll", passive: true })
}
async "test global passive actions"() {
await this.setAction(this.buttonElement, "mouseup@window->c#logPassive:passive")
await this.triggerEvent("#outside", "mouseup", { setDefaultPrevented: false })
this.assertActions({ name: "logPassive", eventType: "mouseup", passive: true })
}
async "test passive false actions"() {
// by default touchmove is true in chrome
await this.setAction(this.buttonElement, "touchmove@window->c#logPassive:!passive")
await this.triggerEvent("#outside", "touchmove", { setDefaultPrevented: false })
this.assertActions({ name: "logPassive", eventType: "touchmove", passive: false })
}
async "test multiple options"() {
// by default touchmove is true in chrome
await this.setAction(this.buttonElement, "touchmove@window->c#logPassive:once:!passive")
await this.triggerEvent("#outside", "touchmove", { setDefaultPrevented: false })
await this.triggerEvent("#outside", "touchmove", { setDefaultPrevented: false })
this.assertActions({ name: "logPassive", eventType: "touchmove", passive: false })
}
async "test wrong options are silently ignored"() {
await this.setAction(this.buttonElement, "c#log:wrong:verywrong")
await this.triggerEvent(this.buttonElement, "click")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions({ name: "log", identifier: "c" }, { name: "log", identifier: "c" })
}
async "test stop option with implicit event"() {
await this.setAction(this.element, "click->c#log")
await this.setAction(this.buttonElement, "c#log2:stop")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions({ name: "log2", eventType: "click" })
}
async "test stop option with explicit event"() {
await this.setAction(this.element, "keydown->c#log")
await this.setAction(this.buttonElement, "keydown->c#log2:stop")
await this.triggerEvent(this.buttonElement, "keydown")
this.assertActions({ name: "log2", eventType: "keydown" })
}
async "test event propagation without stop option"() {
await this.setAction(this.element, "click->c#log")
await this.setAction(this.buttonElement, "c#log2")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions({ name: "log2", eventType: "click" }, { name: "log", eventType: "click" })
}
async "test prevent option with implicit event"() {
await this.setAction(this.buttonElement, "c#log:prevent")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions({ name: "log", eventType: "click", defaultPrevented: true })
}
async "test prevent option with explicit event"() {
await this.setAction(this.buttonElement, "keyup->c#log:prevent")
await this.triggerEvent(this.buttonElement, "keyup")
this.assertActions({ name: "log", eventType: "keyup", defaultPrevented: true })
}
async "test self option"() {
await this.setAction(this.buttonElement, "click->c#log:self")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions({ name: "log", eventType: "click" })
}
async "test self option on parent"() {
await this.setAction(this.element, "click->c#log:self")
await this.triggerEvent(this.buttonElement, "click")
this.assertNoActions()
}
async "test true input option"() {
await this.setAction(this.inputElement, "keydown@window->c#log:input")
await this.triggerEvent(this.inputElement, "keydown")
this.assertActions({ name: "log", eventType: "keydown" })
}
async "test false input option"() {
await this.setAction(this.inputElement, "keydown@window->c#log:!input")
await this.triggerEvent(this.inputElement, "keydown")
this.assertNoActions()
}
async "test custom action option callback params contain the controller instance"() {
let lastActionOptions: { controller?: Controller<Element> } = {}
const mockCallback = (options: Object) => {
lastActionOptions = options
}
this.application.registerActionOption("all", (options: Object) => {
mockCallback(options)
return true
})
await this.setAction(this.buttonElement, "click->c#log:all")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions({ name: "log", identifier: "c", eventType: "click", currentTarget: this.buttonElement })
this.assert.deepEqual(["name", "value", "event", "element", "controller"], Object.keys(lastActionOptions))
this.assert.equal(
lastActionOptions.controller,
this.application.getControllerForElementAndIdentifier(this.element, "c")
)
this.controllerConstructor.actionLog = [] // clear actions
await this.setAction(this.buttonElement, "click->d#log:all")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions({ name: "log", identifier: "d", eventType: "click", currentTarget: this.buttonElement })
this.assert.deepEqual(["name", "value", "event", "element", "controller"], Object.keys(lastActionOptions))
this.assert.equal(
lastActionOptions.controller,
this.application.getControllerForElementAndIdentifier(this.element, "d")
)
}
async "test custom option"() {
this.application.registerActionOption("open", ({ value, event: { type, target } }) => {
switch (type) {
case "toggle":
return target instanceof HTMLDetailsElement && target.open == value
default:
return true
}
})
await this.setAction(this.detailsElement, "toggle->c#log:open")
await this.toggleElement(this.detailsElement)
await this.toggleElement(this.detailsElement)
await this.toggleElement(this.detailsElement)
this.assertActions({ name: "log", eventType: "toggle" }, { name: "log", eventType: "toggle" })
}
async "test inverted custom option"() {
this.application.registerActionOption("open", ({ value, event: { type, target } }) => {
switch (type) {
case "toggle":
return target instanceof HTMLDetailsElement && target.open == value
default:
return true
}
})
await this.setAction(this.detailsElement, "toggle->c#log:!open")
await this.toggleElement(this.detailsElement)
await this.toggleElement(this.detailsElement)
await this.toggleElement(this.detailsElement)
this.assertActions({ name: "log", eventType: "toggle" })
}
async "test custom action option callback event contains params"() {
let lastActionEventParams: Object = {}
// clone the params to ensure we check the value as the callback receives it
// not the event after all actions have resolved
const mockCallback = ({ event: { params = {} } = {} }) => {
lastActionEventParams = { ...params }
}
this.application.registerActionOption("all", (options: Object) => {
mockCallback(options)
return true
})
this.buttonElement.setAttribute("data-c-custom-number-param", "41")
this.buttonElement.setAttribute("data-c-custom-string-param", "validation")
this.buttonElement.setAttribute("data-c-custom-boolean-param", "true")
this.buttonElement.setAttribute("data-d-should-ignore-param", "_IGNORED_")
await this.setAction(this.buttonElement, "click->c#log:all")
await this.triggerEvent(this.buttonElement, "click")
this.assertActions({ name: "log", identifier: "c", eventType: "click", currentTarget: this.buttonElement })
const expectedEventParams = {
customBoolean: true,
customNumber: 41,
customString: "validation",
}
this.assert.deepEqual(this.controllerConstructor.actionLog[0].params, expectedEventParams)
this.assert.deepEqual(lastActionEventParams, expectedEventParams)
}
setAction(element: Element, value: string) {
element.setAttribute("data-action", value)
return this.nextFrame
}
toggleElement(details: Element) {
details.toggleAttribute("open")
return this.nextFrame
}
get element() {
return this.findElement("div")
}
get buttonElement() {
return this.findElement("button")
}
get detailsElement() {
return this.findElement("details")
}
get inputElement() {
return this.findElement("input")
}
}