-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathauto-check-element.ts
368 lines (308 loc) · 9.83 KB
/
auto-check-element.ts
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
import {debounce} from '@github/mini-throttle'
type Controller =
| AbortController
| {
signal: AbortSignal | null
abort: () => void
}
type State = {
check: (event: Event) => unknown
controller: Controller | null
}
enum AllowedHttpMethods {
GET = 'GET',
POST = 'POST',
}
const states = new WeakMap<AutoCheckElement, State>()
class AutoCheckEvent extends Event {
constructor(public readonly phase: string) {
super(`auto-check-${phase}`, {bubbles: true})
}
// Backwards compatibility with `CustomEvent`
get detail() {
return this
}
}
class AutoCheckValidationEvent extends AutoCheckEvent {
constructor(public readonly phase: string, public message = '') {
super(phase)
}
setValidity = (message: string) => {
this.message = message
}
}
// eslint-disable-next-line custom-elements/no-exports-with-element
export class AutoCheckCompleteEvent extends AutoCheckEvent {
constructor() {
super('complete')
}
}
// eslint-disable-next-line custom-elements/no-exports-with-element
export class AutoCheckSuccessEvent extends AutoCheckEvent {
constructor(public readonly response: Response) {
super('success')
}
}
// eslint-disable-next-line custom-elements/no-exports-with-element
export class AutoCheckStartEvent extends AutoCheckValidationEvent {
constructor() {
super('start', 'Verifying…')
}
}
// eslint-disable-next-line custom-elements/no-exports-with-element
export class AutoCheckErrorEvent extends AutoCheckValidationEvent {
constructor(public readonly response: Response) {
// eslint-disable-next-line i18n-text/no-en
super('error', 'Validation failed')
}
}
// eslint-disable-next-line custom-elements/no-exports-with-element
export class AutoCheckSendEvent extends AutoCheckEvent {
constructor(public readonly body: FormData) {
super('send')
}
}
export class AutoCheckElement extends HTMLElement {
static define(tag = 'auto-check', registry = customElements) {
registry.define(tag, this)
return this
}
#onloadend: ((event: Event) => void) | null = null
get onloadend() {
return this.#onloadend
}
set onloadend(listener: ((event: Event) => void) | null) {
if (this.#onloadend) {
this.removeEventListener('loadend', this.#onloadend as unknown as EventListenerOrEventListenerObject)
}
this.#onloadend = typeof listener === 'object' || typeof listener === 'function' ? listener : null
if (typeof listener === 'function') {
this.addEventListener('loadend', listener as unknown as EventListenerOrEventListenerObject)
}
}
connectedCallback(): void {
const input = this.input
if (!input) return
const checker = debounce(check.bind(null, this), 300)
const state = {check: checker, controller: null}
states.set(this, state)
const changeHandler = handleChange.bind(null, checker)
input.addEventListener('blur', changeHandler)
input.addEventListener('input', changeHandler)
input.autocomplete = 'off'
input.spellcheck = false
}
disconnectedCallback(): void {
const input = this.input
if (!input) return
const state = states.get(this)
if (!state) return
states.delete(this)
input.removeEventListener('input', setLoadingState)
input.removeEventListener('input', state.check)
input.setCustomValidity('')
}
attributeChangedCallback(name: string): void {
if (name === 'required') {
const input = this.input
if (!input) return
input.required = this.required
}
}
static get observedAttributes(): string[] {
return ['required']
}
get input(): HTMLInputElement | null {
return this.querySelector('input')
}
get src(): string {
const src = this.getAttribute('src')
if (!src) return ''
const link = this.ownerDocument!.createElement('a')
link.href = src
return link.href
}
set src(value: string) {
this.setAttribute('src', value)
}
get csrf(): string {
const csrfElement = this.querySelector('[data-csrf]')
return this.getAttribute('csrf') || (csrfElement instanceof HTMLInputElement && csrfElement.value) || ''
}
set csrf(value: string) {
this.setAttribute('csrf', value)
}
get required(): boolean {
return this.hasAttribute('required')
}
set required(required: boolean) {
if (required) {
this.setAttribute('required', '')
} else {
this.removeAttribute('required')
}
}
get csrfField(): string {
return this.getAttribute('csrf-field') || 'authenticity_token'
}
set csrfField(value: string) {
this.setAttribute('csrf-field', value)
}
get httpMethod(): string {
return AllowedHttpMethods[this.getAttribute('http-method') as keyof typeof AllowedHttpMethods] || 'POST'
}
set validateOnKeystroke(enabled: boolean) {
if (enabled) {
this.setAttribute('validate-on-keystroke', '')
} else {
this.removeAttribute('validate-on-keystroke')
}
}
get validateOnKeystroke(): boolean {
const value = this.getAttribute('validate-on-keystroke')
return value === 'true' || value === ''
}
get onlyValidateOnBlur(): boolean {
const value = this.getAttribute('only-validate-on-blur')
return value === 'true' || value === ''
}
}
function handleChange(checker: () => void, event: Event) {
const input = event.currentTarget
if (!(input instanceof HTMLInputElement)) return
const autoCheckElement = input.closest('auto-check')
if (!(autoCheckElement instanceof AutoCheckElement)) return
if (input.value.length === 0) return
if (
(event.type !== 'blur' && !autoCheckElement.onlyValidateOnBlur) || // Existing default behavior
(event.type === 'blur' && autoCheckElement.onlyValidateOnBlur) || // Only validate on blur if only-validate-on-blur is set
(autoCheckElement.onlyValidateOnBlur && autoCheckElement.validateOnKeystroke) // Only validate on key inputs in only-validate-on-blur mode if validate-on-keystroke is set (when input is invalid)
) {
checker()
setLoadingState(event)
}
}
function setLoadingState(event: Event) {
const input = event.currentTarget
if (!(input instanceof HTMLInputElement)) return
const autoCheckElement = input.closest('auto-check')
if (!(autoCheckElement instanceof AutoCheckElement)) return
const src = autoCheckElement.src
const csrf = autoCheckElement.csrf
const httpMethod = autoCheckElement.httpMethod
const state = states.get(autoCheckElement)
// If some attributes are missing we want to exit early and make sure that the element is valid.
if (!src || (httpMethod === 'POST' && !csrf) || !state) {
return
}
const startEvent = new AutoCheckStartEvent()
input.dispatchEvent(startEvent)
if (autoCheckElement.required) {
input.setCustomValidity(startEvent.message)
}
}
function makeAbortController() {
if ('AbortController' in window) {
return new AbortController()
}
return {
signal: null,
abort() {
// Do nothing
},
}
}
async function fetchWithNetworkEvents(el: Element, url: string, options: RequestInit): Promise<Response> {
if (options.method === 'GET') {
delete options.body
}
try {
const response = await fetch(url, options)
el.dispatchEvent(new Event('load'))
el.dispatchEvent(new Event('loadend'))
return response
} catch (error) {
if ((error as Error).name !== 'AbortError') {
el.dispatchEvent(new Event('error'))
el.dispatchEvent(new Event('loadend'))
}
throw error
}
}
async function check(autoCheckElement: AutoCheckElement) {
const input = autoCheckElement.input
if (!input) {
return
}
const csrfField = autoCheckElement.csrfField
const src = autoCheckElement.src
const csrf = autoCheckElement.csrf
const state = states.get(autoCheckElement)
const httpMethod = autoCheckElement.httpMethod
// If some attributes are missing we want to exit early and make sure that the element is valid.
if (!src || (httpMethod === 'POST' && !csrf) || !state) {
if (autoCheckElement.required) {
input.setCustomValidity('')
}
return
}
if (!input.value.trim()) {
if (autoCheckElement.required) {
input.setCustomValidity('')
}
return
}
const body = new FormData()
const url = new URL(src, window.location.origin)
if (httpMethod === 'POST') {
body.append(csrfField, csrf)
body.append('value', input.value)
} else {
url.search = new URLSearchParams({value: input.value}).toString()
}
input.dispatchEvent(new AutoCheckSendEvent(body))
if (state.controller) {
state.controller.abort()
} else {
autoCheckElement.dispatchEvent(new Event('loadstart'))
}
state.controller = makeAbortController()
try {
const response = await fetchWithNetworkEvents(autoCheckElement, url.toString(), {
credentials: 'same-origin',
signal: state.controller.signal,
method: httpMethod,
body,
})
if (response.ok) {
if (autoCheckElement.required) {
input.setCustomValidity('')
}
// We do not have good test coverage for this code path.
// To test, ensure that the input only validates on blur
// once it has been "healed" by a valid input after
// previously being in an invalid state.
if (autoCheckElement.onlyValidateOnBlur) {
autoCheckElement.validateOnKeystroke = false
}
input.dispatchEvent(new AutoCheckSuccessEvent(response.clone()))
} else {
if (autoCheckElement.onlyValidateOnBlur) {
autoCheckElement.validateOnKeystroke = true
}
const event = new AutoCheckErrorEvent(response.clone())
input.dispatchEvent(event)
if (autoCheckElement.required) {
input.setCustomValidity(event.message)
}
}
state.controller = null
input.dispatchEvent(new AutoCheckCompleteEvent())
} catch (error) {
if ((error as Error).name !== 'AbortError') {
state.controller = null
input.dispatchEvent(new AutoCheckCompleteEvent())
}
}
}
export default AutoCheckElement