Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: reset tabindex to -1 when initializing menu item #339

Merged
merged 1 commit into from Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions src/vaadin-contextmenu-items-mixin.html
Expand Up @@ -225,6 +225,7 @@

if (component instanceof Vaadin.ItemElement) {
component.setAttribute('role', 'menuitem');
component.tabIndex = -1;
component.classList.add('vaadin-menu-item');
} else if (component.localName === 'hr') {
component.setAttribute('role', 'separator');
Expand Down
44 changes: 43 additions & 1 deletion test/items.html
Expand Up @@ -32,6 +32,12 @@
describe('items', () => {
let rootMenu, subMenu, target;

const createComponent = (text) => {
const item = document.createElement('vaadin-context-menu-item');
item.textContent = text;
return item;
};

const menuComponents = (menu = rootMenu) => {
return Array.from(menu.$.overlay.content.firstElementChild.children);
};
Expand Down Expand Up @@ -84,7 +90,15 @@
]},
]
},
{text: 'foo-1'}
{text: 'foo-1'},
{
text: 'foo-2',
children: [
{component: createComponent('foo-2-0')},
{component: createComponent('foo-2-1')},
{component: createComponent('foo-2-2')}
]
}
];
open();
flush(() => {
Expand Down Expand Up @@ -396,6 +410,34 @@
expect(spy).to.be.calledOnce;
});

it('should focus first item after re-opening when using components', async() => {
subMenu.close();
rootMenu.$.overlay.focus();

const rootItem = getMenuItems(rootMenu)[2];

// Open the sub-menu with item components
open(rootItem);
await nextRender();
const subMenu2 = getSubMenu(rootMenu);
const items = getMenuItems(subMenu2);

// Arrow Down to focus next item
items[0].focus();
fire(items[0], 'keydown', {}, {keyCode: 40, key: 'ArrowDown'});
expect(items[1].hasAttribute('focus-ring')).to.be.true;

// Arrow Left to close the sub-menu
fire(items[1], 'keydown', {}, {keyCode: 37, key: 'ArrowLeft'});
await nextRender();
expect(rootItem.hasAttribute('focus-ring')).to.be.true;

// Re-open sub-menu and check focus
open(rootItem);
await nextRender();
expect(items[0].hasAttribute('focus-ring')).to.be.true;
});

// elementFromPoint doesn't work properly with shadydom on ios 10.3
if (!window.ShadyDOM) {
it('should have modeless sub menus', () => {
Expand Down