-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathFtInput.vue
More file actions
522 lines (458 loc) · 13 KB
/
Copy pathFtInput.vue
File metadata and controls
522 lines (458 loc) · 13 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
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
<!-- eslint-disable vuejs-accessibility/mouse-events-have-key-events -->
<template>
<div
class="ft-input-component"
:class="{
search: isSearch,
forceTextColor,
showActionButton,
showClearTextButton,
clearTextButtonVisible: inputDataPresent || showOptions,
inputDataPresent,
showOptions
}"
>
<label
v-if="showLabel"
:for="id"
class="selectLabel"
:class="{ disabled }"
>
{{ label || placeholder }}
<FtTooltip
v-if="tooltip !== ''"
class="selectTooltip"
position="bottom"
:tooltip="tooltip"
/>
</label>
<button
v-if="showClearTextButton"
class="clearInputTextButton"
:class="{
visible: inputDataPresent || showOptions
}"
:aria-label="t('Search Bar.Clear Input')"
:title="t('Search Bar.Clear Input')"
@click="handleClearTextClick"
>
<FontAwesomeIcon
class="buttonIcon"
:icon="['fas', 'times-circle']"
/>
</button>
<span class="inputWrapper">
<input
:id="id"
ref="inputRef"
:value="inputDataDisplayed"
class="ft-input"
:class="{ disabled }"
:maxlength="maxlength"
:type="inputType"
:placeholder="placeholder"
:disabled="disabled"
:spellcheck="false"
:aria-label="showLabel ? null : placeholder"
@input="handleInput"
@focus="handleFocus"
@blur="handleInputBlur"
@keydown="handleKeyDown"
>
<button
v-if="showActionButton"
class="inputAction"
:class="{
enabled: inputDataPresent,
withLabel: showLabel
}"
@click="handleClick"
>
<FontAwesomeIcon
class="buttonIcon"
:icon="actionButtonIconName"
/>
</button>
</span>
<div class="options">
<ul
v-if="showOptions"
class="list"
@mouseenter="searchState.isPointerInList = true"
@mouseleave="searchState.isPointerInList = false"
>
<!-- eslint-disable vuejs-accessibility/click-events-have-key-events -->
<li
v-for="(entry, index) in visibleDataList"
:key="index"
:class="{ hover: searchState.selectedOption === index }"
@click="handleOptionClick(index)"
@mouseenter="searchState.selectedOption = index"
@mouseleave="resetSelectedOption"
>
<div class="optionWrapper">
<FontAwesomeIcon
v-if="dataListProperties[index]?.iconName"
:icon="['fas', dataListProperties[index].iconName]"
class="searchResultIcon"
/>
<bdi>{{ entry }}</bdi>
</div>
<a
v-if="dataListProperties[index]?.isRemoveable"
class="removeButton"
:class="{ removeButtonSelected: removeButtonSelectedIndex === index }"
role="button"
:aria-label="t('Search Bar.Remove')"
href="javascript:void(0)"
@click.prevent.stop="handleRemoveClick(index)"
>
{{ t('Search Bar.Remove') }}
</a>
</li>
<!-- skipped -->
</ul>
</div>
</div>
</template>
<script setup>
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import { computed, reactive, ref, shallowRef, useId, useTemplateRef, watch } from 'vue'
import { useI18n } from '../../composables/use-i18n-polyfill'
import FtTooltip from '../FtTooltip/FtTooltip.vue'
import store from '../../store/index'
import { isKeyboardEventKeyPrintableChar, isNullOrEmpty } from '../../helpers/strings'
const { t } = useI18n()
const props = defineProps({
inputType: {
type: String,
default: 'text'
},
placeholder: {
type: String,
required: true
},
label: {
type: String,
default: null
},
maxlength: {
type: Number,
default: null
},
value: {
type: String,
default: ''
},
showActionButton: {
type: Boolean,
default: true
},
forceActionButtonIconName: {
type: Array,
default: null
},
showClearTextButton: {
type: Boolean,
default: false
},
showLabel: {
type: Boolean,
default: false
},
isSearch: {
type: Boolean,
default: false
},
disabled: {
type: Boolean,
default: false
},
dataList: {
type: Array,
default: () => []
},
dataListProperties: {
type: Array,
default: () => []
},
searchResultIconNames: {
type: Array,
default: null
},
showDataWhenEmpty: {
type: Boolean,
default: false
},
tooltip: {
type: String,
default: ''
}
})
const emit = defineEmits(['clear', 'click', 'input', 'remove', 'blur'])
const id = useId()
const inputRef = useTemplateRef('inputRef')
const inputData = ref(props.value)
const searchState = reactive({
showOptions: false,
selectedOption: -1,
isPointerInList: false,
keyboardSelectedOptionIndex: -1
})
const visibleDataList = ref(props.dataList)
const removeButtonSelectedIndex = ref(-1)
const removalMade = ref(false)
const actionButtonIconName = shallowRef(props.forceActionButtonIconName ?? ['fas', 'search'])
const showOptions = computed(() => {
return (inputData.value !== '' || props.showDataWhenEmpty) && visibleDataList.value.length > 0 && searchState.showOptions
})
const forceTextColor = computed(() => props.isSearch && store.getters.getBarColor)
const searchStateKeyboardSelectedOptionValue = computed(() => {
return searchState.keyboardSelectedOptionIndex === -1
? null
: visibleDataList.value[searchState.keyboardSelectedOptionIndex]
})
const inputDataDisplayed = computed(() => {
if (!props.isSearch) { return inputData.value }
/** @type {string | null | undefined} */
const selectedOptionValue = searchStateKeyboardSelectedOptionValue.value
if (selectedOptionValue != null && selectedOptionValue !== '') {
return selectedOptionValue
}
return inputData.value
})
const inputDataPresent = computed(() => inputDataDisplayed.value.length > 0)
watch(() => props.dataList, updateVisibleDataList, { deep: true })
watch(inputData, updateVisibleDataList)
watch(() => props.value, (value) => {
inputData.value = value
})
updateVisibleDataList()
/**
* @param {KeyboardEvent | MouseEvent} [event]
*/
function handleClick(event) {
const selectedValue = searchStateKeyboardSelectedOptionValue.value
const query = (selectedValue != null && selectedValue !== '') ? selectedValue : inputData.value
inputData.value = query
// No action if no input text
if (!inputDataPresent.value) {
return
}
searchState.showOptions = false
searchState.selectedOption = -1
searchState.keyboardSelectedOptionIndex = -1
removeButtonSelectedIndex.value = -1
emit('input', query)
emit('click', query, { event })
}
/**
* @param {string | InputEvent} data
*/
function handleInput(data) {
const text = typeof data === 'string' ? data : inputRef.value.value
inputData.value = text
if (
props.isSearch &&
searchState.selectedOption !== -1 &&
inputData.value === visibleDataList.value[searchState.selectedOption]
) {
return
}
handleActionIconChange()
emit('input', text)
}
function handleClearTextClick() {
// No action if no input text
if (!inputDataPresent.value) { return }
inputData.value = ''
handleActionIconChange()
updateVisibleDataList()
searchState.isPointerInList = false
inputRef.value.value = ''
// Focus on input element after text is clear for better UX
inputRef.value.focus()
emit('clear')
}
async function handleActionIconChange() {
// Only need to update icon if visible
if (!props.showActionButton) { return }
if (!inputDataPresent.value && props.forceActionButtonIconName === null) {
// Change back to default icon if text is blank
actionButtonIconName.value = ['fas', 'search']
return
}
// Update action button icon according to input
try {
const result = await store.dispatch('getYoutubeUrlInfo', inputData.value)
let isYoutubeLink = false
switch (result.urlType) {
case 'video':
case 'playlist':
case 'search':
case 'channel':
case 'hashtag':
case 'post':
case 'trending':
case 'subscriptions':
case 'history':
case 'userplaylists':
isYoutubeLink = true
break
case 'invalid_url':
default: {
// isYoutubeLink is already `false`
}
}
if (props.forceActionButtonIconName === null) {
if (isYoutubeLink) {
// Go to URL (i.e. Video/Playlist/Channel
actionButtonIconName.value = ['fas', 'arrow-right']
} else {
// Search with text
actionButtonIconName.value = ['fas', 'search']
}
}
} catch (ex) {
// On exception, consider text as invalid URL
if (props.forceActionButtonIconName === null) {
actionButtonIconName.value = ['fas', 'search']
}
// Rethrow exception
throw ex
}
}
/**
* @param {number} index
*/
function handleOptionClick(index) {
if (removeButtonSelectedIndex.value !== -1) {
handleRemoveClick(index)
return
}
searchState.showOptions = false
searchState.isPointerInList = false
inputData.value = visibleDataList.value[index]
emit('input', inputData.value)
handleClick()
}
function resetSelectedOption() {
searchState.selectedOption = -1
removeButtonSelectedIndex.value = -1
}
/**
* @param {number} index
*/
function handleRemoveClick(index) {
if (!props.dataListProperties[index]?.isRemoveable) { return }
// keep input in focus even when the to-be-removed "Remove" button was clicked
inputRef.value.focus()
removalMade.value = true
emit('remove', visibleDataList.value[index])
}
/**
* @param {KeyboardEvent} event
*/
function handleKeyDown(event) {
// Update Input box value if enter key was pressed and option selected
if (event.key === 'Enter' && !event.isComposing) {
if (removeButtonSelectedIndex.value !== -1) {
handleRemoveClick(removeButtonSelectedIndex.value)
} else if (searchState.selectedOption !== -1) {
searchState.showOptions = false
event.preventDefault()
inputData.value = visibleDataList.value[searchState.selectedOption]
handleOptionClick(searchState.selectedOption)
} else {
handleClick(event)
}
return
}
if (visibleDataList.value.length === 0) { return }
searchState.showOptions = true
// "select" the Remove button through right arrow navigation, and unselect it with the left arrow
if (event.key === 'ArrowRight') {
removeButtonSelectedIndex.value = searchState.selectedOption
} else if (event.key === 'ArrowLeft') {
removeButtonSelectedIndex.value = -1
} else if (event.key === 'ArrowUp' || event.key === 'ArrowDown') {
event.preventDefault()
const newIndex = searchState.selectedOption + (event.key === 'ArrowDown' ? 1 : -1)
updateSelectedOptionIndex(newIndex)
} else {
const selectedOptionValue = searchStateKeyboardSelectedOptionValue.value
// Keyboard selected & is char
if (!isNullOrEmpty(selectedOptionValue) && isKeyboardEventKeyPrintableChar(event.key)) {
// Update input based on KB selected suggestion value instead of current input value
event.preventDefault()
handleInput(`${selectedOptionValue}${event.key}`)
}
}
}
/**
* Updates the selected dropdown option index and handles the under/over-flow behavior
* @param {number} index
*/
function updateSelectedOptionIndex(index) {
searchState.selectedOption = index
// unset selection of "Remove" button
removeButtonSelectedIndex.value = -1
// Allow deselecting suggestion
if (searchState.selectedOption < -1) {
searchState.selectedOption = visibleDataList.value.length - 1
} else if (searchState.selectedOption > visibleDataList.value.length - 1) {
searchState.selectedOption = -1
}
// Update displayed value
searchState.keyboardSelectedOptionIndex = searchState.selectedOption
}
function handleInputBlur() {
if (!searchState.isPointerInList) {
searchState.showOptions = false
}
emit('blur', inputData.value)
}
function handleFocus() {
searchState.showOptions = true
}
function updateVisibleDataList() {
// Reset selected option before it's updated
// Block resetting if it was just the "Remove" button that was pressed
if (!removalMade.value || searchState.selectedOption >= props.dataList.length) {
searchState.selectedOption = -1
searchState.keyboardSelectedOptionIndex = -1
removeButtonSelectedIndex.value = -1
}
removalMade.value = false
if (inputData.value.trim() === '') {
visibleDataList.value = props.dataList
return
}
// get list of items that match input
const lowerCaseInputData = inputData.value.toLowerCase()
visibleDataList.value = props.dataList.filter(x => {
return x.toLowerCase().includes(lowerCaseInputData)
})
}
defineExpose({
focus: () => {
inputRef.value?.focus()
},
blur: () => {
inputRef.value?.blur()
},
select: () => {
inputRef.value?.select()
},
/**
* @param {string} text
*/
setText: (text) => {
inputData.value = text
},
clear: () => {
handleClearTextClick()
}
})
</script>
<style scoped src="./FtInput.css" />