Skip to content

Commit

Permalink
fix: restore focused attribute behavior (#3577) (#3582)
Browse files Browse the repository at this point in the history
* fix: restore focused attribute behavior

* add test for shift-tabbing out of component

* update test to move focus from focusElement

Co-authored-by: Sascha Ißbrücker <sissbruecker@vaadin.com>
  • Loading branch information
vaadin-bot and sissbruecker committed Mar 18, 2022
1 parent 004325f commit 56f2f34
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 39 deletions.
17 changes: 6 additions & 11 deletions packages/field-base/src/shadow-focus-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,18 @@ export const ShadowFocusMixin = (superClass) =>

/**
* Override an event listener from `KeyboardMixin`
* to prevent setting `focused` on Shift Tab.
* to prevent focusing the host element on Shift Tab.
* @param {KeyboardEvent} event
* @protected
* @override
*/
_onKeyDown(event) {
super._onKeyDown(event);

// When focus moves with Shift + Tab, do not mark host as focused.
// The flag set here will be later used in focusin event listener.
// When focus moves with Shift + Tab, skip focusing the host element
// by focusing it before the default browser focus handling runs
if (!event.defaultPrevented && event.keyCode === 9 && event.shiftKey) {
this._isShiftTabbing = true;
HTMLElement.prototype.focus.apply(this);
this._setFocused(false);
setTimeout(() => (this._isShiftTabbing = false), 0);
}
}

Expand All @@ -61,15 +58,13 @@ export const ShadowFocusMixin = (superClass) =>
if (!this.disabled && this.focusElement) {
const path = event.composedPath();

// When focus moves from outside and not with Shift + Tab, delegate it to focusElement.
// When focus moves to the host element itself, then delegate it to the focusElement
// This should only move focus when using keyboard navigation, for clicks we don't want to interfere,
// for example when the user tries to select some text
if (this._keyboardActive && path[0] === this && !this.contains(event.relatedTarget) && !this._isShiftTabbing) {
if (path[0] === this && this._keyboardActive) {
this.focusElement.focus();
return true;
}

if (path.includes(this.focusElement)) {
if (path[0] === this || path.includes(this.focusElement)) {
return true;
}
}
Expand Down
74 changes: 46 additions & 28 deletions packages/field-base/test/shadow-focus-mixin.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect } from '@esm-bundle/chai';
import { aTimeout, fixtureSync, focusin, focusout, keyboardEventFor, keyDownOn } from '@vaadin/testing-helpers';
import { aTimeout, fixtureSync, focusin, focusout, keyDownOn } from '@vaadin/testing-helpers';
import { resetMouse, sendKeys, sendMouse } from '@web/test-runner-commands';
import sinon from 'sinon';
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
Expand All @@ -12,6 +12,7 @@ customElements.define(
return html`
<input id="input" />
<input id="secondInput" />
<input id="thirdInput" />
<slot></slot>
`;
}
Expand All @@ -35,6 +36,13 @@ customElements.define(
}
);

async function click(element) {
const rect = element.getBoundingClientRect();
const middleX = Math.floor(rect.x + rect.width / 2);
const middleY = Math.floor(rect.y + rect.height / 2);
await sendMouse({ type: 'click', position: [middleX, middleY] });
}

describe('shadow-focus-mixin', () => {
let customElement, focusElement;

Expand Down Expand Up @@ -97,19 +105,6 @@ describe('shadow-focus-mixin', () => {
});

describe('focus-ring', () => {
it('should set _isShiftTabbing when pressing shift-tab', () => {
const event = keyboardEventFor('keydown', 9, 'shift');
customElement.dispatchEvent(event);
expect(customElement._isShiftTabbing).to.be.true;
});

it('should skip setting _isShiftTabbing if event is defaultPrevented', () => {
const evt = keyboardEventFor('keydown', 9, 'shift');
evt.preventDefault();
customElement.dispatchEvent(evt);
expect(customElement._isShiftTabbing).not.to.be.ok;
});

it('should set the focus-ring attribute when TAB is pressed and focus is received', () => {
keyDownOn(document.body, 9);
focusin(focusElement);
Expand Down Expand Up @@ -198,11 +193,6 @@ describe('shadow-focus-mixin', () => {
expect(spy.calledOnce).to.be.true;
});

it('should not set focused attribute on host click', () => {
customElement.click();
expect(customElement.hasAttribute('focused')).to.be.false;
});

it('should set focused attribute on focusin event', () => {
focusin(focusElement);
expect(customElement.hasAttribute('focused')).to.be.true;
Expand All @@ -213,6 +203,7 @@ describe('shadow-focus-mixin', () => {
const spy = sinon.spy(focusElement, 'focus');
await sendKeys({ press: 'Tab' });
expect(spy.called).to.be.true;
expect(customElement.hasAttribute('focused')).to.be.true;
});

it('should not delegate focus when clicking on non-focusable child', async () => {
Expand All @@ -221,21 +212,48 @@ describe('shadow-focus-mixin', () => {
customElement.appendChild(span);

const spy = sinon.spy(focusElement, 'focus');
// Click center of span child element
const rect = span.getBoundingClientRect();
const middleX = Math.floor(rect.x + rect.width / 2);
const middleY = Math.floor(rect.y + rect.height / 2);
await sendMouse({ type: 'click', position: [middleX, middleY] });
// Clicking on some text content should not move focus
await click(span);
// Clicking on some text content should not move focus to focus element
expect(spy.called).to.be.false;
});

it('should not delegate focus if the focus is not received from outside', () => {
const child = document.createElement('div');
customElement.appendChild(child);
customElement.focusElement.focus();
const spy = sinon.spy(focusElement, 'focus');
customElement.$.secondInput.focus();
customElement.$.thirdInput.focus();
customElement.$.secondInput.focus();
expect(spy.called).to.be.false;
});

focusin(customElement, child);
it('should skip host element in tab order when shift-tabbing', async () => {
const siblingInput = document.createElement('input');
customElement.parentElement.insertBefore(siblingInput, customElement);

customElement.focusElement.focus();
// Move focus back to body
await sendKeys({ down: 'Shift' });
await sendKeys({ press: 'Tab' });
await sendKeys({ up: 'Shift' });
expect(document.activeElement).to.equal(siblingInput);
});

it('should set focused attribute when clicking on non-focusable slotted element', async () => {
const span = document.createElement('span');
span.textContent = 'test';
customElement.appendChild(span);

await click(span);
expect(customElement.hasAttribute('focused')).to.be.true;
});

it('should remove focused attribute when moving to focusable slotted element', async () => {
const input = document.createElement('input');
customElement.appendChild(input);

customElement.focus();
expect(customElement.hasAttribute('focused')).to.be.true;
input.focus();
expect(customElement.hasAttribute('focused')).to.be.false;
});

Expand Down

0 comments on commit 56f2f34

Please sign in to comment.