Accessibility in Vue Menu component

16 Mar 202310 minutes to read

ARIA attributes

The web accessibility makes web content and web applications more accessible for people with disabilities. It especially helps in dynamic content change and development of advanced user interface controls with AJAX, HTML, JavaScript, and related technologies. The menu provides a built-in compliance with WAI-ARIA specifications. The WAI-ARIA support is achieved using the attributes such as aria-orientation, aria-label, aria-expanded, aria-disabled, and aria-haspopup applied for menu item in menu. It helps the people with disabilities by providing information about the widget for assistive technology in the screen readers. The menu component contains the menubar, menu, and menuItem roles.

Properties Functionality
menubar This role will be specified for root menu.
menu This role will be specified for an item that have sub menu.
menuitem This role will be specified for an item that do not have sub menus.
aria-haspopup Indicates the availability and type of interactive popup element.
aria-expanded Indicates whether the subtree can be expanded or collapsed, and indicates whether its current state can be expanded or collapsed.
aria-orientation Indicates whether the orientation is horizontal or vertical. The default orientation is horizontal.
aria-label Indicates the menu item text.
aria-disabled Indicates the state of menu item whether it is disabled.

User interaction with keyboard

Keyboard shortcuts Actions
Esc Closes the sub menu that contains focus and returns focus to the parent element.
Enter Opens the sub menu if focused menu item has sub menu, and places focus on its first item or activates the item and closes the sub menu.
Up Navigates up or to the previous menu item.
Down Navigates down or to the next menu item.
Left Closes the current sub menu and navigates to the parent menu.
Right Navigates and open the next sub menu.
Home Focuses the first item.
End Focuses the last item.
<template>
<div>
<ejs-menu :items='menuItems'></ejs-menu>
</div>
</template>

<script>
import Vue from 'vue';
import { MenuPlugin } from "@syncfusion/ej2-vue-navigations";
import { enableRipple } from '@syncfusion/ej2-base';

enableRipple(true);
Vue.use(MenuPlugin);

export default {
   data: function() {
        return {
           menuItems:  [
        {
        text: 'Fashion',
        items: [
            {
                text: 'Men Fashion',
                items: [
                    {
                        text: 'Personal Care',
                        items: [
                            { text: 'Trimmers' },
                            { text:  'Shavers' }
                        ]
                    },
                    {
                        text: 'Clothing',
                        items: [
                            { text: 'Shirts' },
                            { text: 'Jackets' },
                            { text: 'Track Suits' }
                        ]
                    },
                    { text: 'Footwear' }
                ]
            },
            {
                text: 'Women Fashion',
                items: [
                    {
                        text: 'Clothing',
                        items: [
                            { text: 'Kurtas' },
                            { text: 'Salwars' },
                            { text: 'Sarees' }
                        ]
                    },
                    {
                        text: 'Jewellery',
                        items: [
                            { text: 'Nosepins' },
                            { text:  'Anklets' }
                        ]
                    }
                ]
            }
        ]
    },
    {
        text: 'Home & Living',
        items: [
            {
                text: 'Washing Machine',
                items: [
                    { text: 'Fully Automatic' },
                    { text: 'Semi Automatic' }
                ]
            },
            {
                text: 'Air Conditioners',
                items: [
                    { text: 'Inverter ACs' },
                    { text: 'Split ACs' }
                ]
            }
        ]
    },
    { text: 'Sports' },
    { text: 'Gaming' }
    ]
    };

    }
}
</script>

<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-popups/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";

body {
    margin-top: 100px;
    text-align: center;
}
</style>