Easier to understand focus/blur events

This commit is contained in:
Josh Johnson 2016-08-18 17:25:14 +01:00
parent 2c4e86ddc0
commit df8c1bfcb0
2 changed files with 120 additions and 54 deletions

View file

@ -367,7 +367,7 @@ export default class Choices {
* @return {Object} Class instance
* @public
*/
showDropdown() {
showDropdown(focusInput) {
const body = document.body;
const html = document.documentElement;
const winHeight = Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight);
@ -387,6 +387,10 @@ export default class Choices {
this.containerOuter.classList.remove(this.config.classNames.flippedState);
}
if (focusInput && this.canSearch) {
this.input.focus();
}
return this;
}
@ -1315,27 +1319,54 @@ export default class Choices {
* @private
*/
_onFocus(e) {
const target = e.target || e.touches[0].target;
const target = e.target;
const hasActiveDropdown = this.dropdown.classList.contains(this.config.classNames.activeState);
if (target === this.input && !hasActiveDropdown) {
if (!hasActiveDropdown) {
switch (this.passedElement.type) {
case 'text': {
if (target === this.input) {
this.containerOuter.classList.add(this.config.classNames.focusState);
if (this.passedElement.type === 'select-one' || this.passedElement.type === 'select-multiple') {
this.showDropdown();
}
} else if (this.passedElement.type !== 'text' && (target === this.containerOuter || target === this.containerInner) && !hasActiveDropdown) {
break;
}
case 'select-one': {
if (target === this.containerOuter) {
// If element is a select box, the focussed element is the container and the dropdown
// isn't already open, focus and show dropdown
this.containerOuter.classList.add(this.config.classNames.focusState);
this.showDropdown();
if (this.passedElement.type === 'select-one' && target === this.containerOuter) {
if (!this.focusAndHideDropdown) {
if (!this.focusAndHideDropdown && this.canSearch) {
this.input.focus();
}
this.focusAndHideDropdown = false;
} else if (this.canSearch) {
this.input.focus();
}
if (target === this.input) {
// If element is a select box, the focussed element is the container and the dropdown
// isn't already open, focus and show dropdown
this.containerOuter.classList.add(this.config.classNames.focusState);
this.showDropdown();
}
break;
}
case 'select-multiple': {
if (target === this.input) {
// If element is a select box, the focussed element is the container and the dropdown
// isn't already open, focus and show dropdown
this.containerOuter.classList.add(this.config.classNames.focusState);
this.showDropdown(true);
}
break;
}
default:
break;
}
}
}
@ -1347,25 +1378,60 @@ export default class Choices {
* @private
*/
_onBlur(e) {
// If the blurred element is this input or the outer container
if (e.target === this.input || (e.target === this.containerOuter && this.passedElement.type === 'select-one')) {
const target = e.target;
const activeItems = this.store.getItemsFilteredByActive();
const hasActiveDropdown = this.dropdown.classList.contains(this.config.classNames.activeState);
const hasHighlightedItems = activeItems.some((item) => item.highlighted === true);
switch (this.passedElement.type) {
case 'text': {
if (target === this.input) {
// Remove the focus state
this.containerOuter.classList.remove(this.config.classNames.focusState);
// Close the dropdown if it is active, the input is the target (select-multiple, text, select-one (with search))
// or the outer container is the target with no search (select-one)
if (hasActiveDropdown && (e.target === this.input || (e.target === this.containerOuter && !this.canSearch))) {
this.hideDropdown();
}
// De-select any highlighted items
if (hasHighlightedItems) {
this.unhighlightAll();
}
if (hasActiveDropdown) {
this.hideDropdown();
}
}
break;
}
case 'select-one': {
if (target === this.containerOuter) {
if (hasActiveDropdown && (this.focusAndHideDropdown || !this.config.search)) {
this.hideDropdown();
}
this.containerOuter.classList.remove(this.config.classNames.focusState);
}
if (target === this.input) {
this.hideDropdown();
this.containerOuter.classList.remove(this.config.classNames.focusState);
}
break;
}
case 'select-multiple': {
if (target === this.input) {
// Remove the focus state
this.containerOuter.classList.remove(this.config.classNames.focusState);
if (hasActiveDropdown) {
this.hideDropdown();
}
// De-select any highlighted items
if (hasHighlightedItems) {
this.unhighlightAll();
}
}
break;
}
default:
break;
}
}