Skip to content

Commit 2edcb7f

Browse files
committed
[WIP] Add keyboard focus border for dropdown options
Signed-off-by: Christopher Ng <[email protected]>
1 parent 8577536 commit 2edcb7f

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

src/components/Select.vue

+20-1
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,12 @@
107107
isOptionDeselectable(option) && index === typeAheadPointer,
108108
'vs__dropdown-option--selected': isOptionSelected(option),
109109
'vs__dropdown-option--highlight': index === typeAheadPointer,
110+
'vs__dropdown-option--kb-focus':
111+
isKeyboardNavigation && index === typeAheadPointer,
110112
'vs__dropdown-option--disabled': !selectable(option),
111113
}"
112114
:aria-selected="index === typeAheadPointer ? true : null"
113-
@mouseover="selectable(option) ? (typeAheadPointer = index) : null"
115+
@mouseover="onMouseOver(option, index)"
114116
@click.prevent.stop="selectable(option) ? select(option) : null"
115117
>
116118
<slot name="option" v-bind="normalizeOptionForSlot(option)">
@@ -675,6 +677,7 @@ export default {
675677
search: '',
676678
open: false,
677679
isComposing: false,
680+
isKeyboardNavigation: false,
678681
pushedTags: [],
679682
// eslint-disable-next-line vue/no-reserved-keys
680683
_value: [], // Internal value managed by Vue Select if no `value` prop is passed
@@ -1309,6 +1312,20 @@ export default {
13091312
this.mousedown = false
13101313
},
13111314
1315+
/**
1316+
* Event-Handler for option mouseover
1317+
* @param {Object|String} option
1318+
* @param {Number} index
1319+
* @return {void}
1320+
*/
1321+
onMouseOver(option, index) {
1322+
this.isKeyboardNavigation = false
1323+
if (!this.selectable(option)) {
1324+
return
1325+
}
1326+
this.typeAheadPointer = index
1327+
},
1328+
13121329
/**
13131330
* Search <input> KeyBoardEvent handler.
13141331
* @param {KeyboardEvent} e
@@ -1330,6 +1347,7 @@ export default {
13301347
// up.prevent
13311348
38: (e) => {
13321349
e.preventDefault()
1350+
this.isKeyboardNavigation = true
13331351
if (!this.open) {
13341352
this.open = true
13351353
return
@@ -1339,6 +1357,7 @@ export default {
13391357
// down.prevent
13401358
40: (e) => {
13411359
e.preventDefault()
1360+
this.isKeyboardNavigation = true
13421361
if (!this.open) {
13431362
this.open = true
13441363
return

src/css/global/variables.css

+4-1
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,12 @@
5454
--vs-dropdown-option-padding: 3px 20px;
5555

5656
/* Active State */
57-
--vs-dropdown-option--active-bg: #5897fb;
57+
--vs-dropdown-option--active-bg: #136CFB;
5858
--vs-dropdown-option--active-color: #fff;
5959

60+
/* Keyboard Focus State */
61+
--vs-dropdown-option--kb-focus-box-shadow: inset 0px 0px 0px 2px #2B2B2B;
62+
6063
/* Deselect State */
6164
--vs-dropdown-option--deselect-bg: #fb5858;
6265
--vs-dropdown-option--deselect-color: #fff;

src/css/modules/dropdown-option.css

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
color: var(--vs-dropdown-option--active-color);
1515
}
1616

17+
.vs__dropdown-option--kb-focus {
18+
box-shadow: var(--vs-dropdown-option--kb-focus-box-shadow);
19+
}
20+
1721
.vs__dropdown-option--deselect {
1822
background: var(--vs-dropdown-option--deselect-bg);
1923
color: var(--vs-dropdown-option--deselect-color);

0 commit comments

Comments
 (0)