Download the PHP package ucomm/a11y-menu without Composer
On this page you can find all versions of the php package ucomm/a11y-menu. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ucomm/a11y-menu
More information about ucomm/a11y-menu
Files in ucomm/a11y-menu
Package a11y-menu
Short Description A package to generate accessible main navigation menus. It includes: a js script for the browser as an npm package, WordPress walker for theme development, and WordPress plugin.
License MIT
Informations about the package a11y-menu
a11y Menu
This project aims to create a re-useable and accessible main navigation module. There are a few goals...
- Be able to include this package as a standalone or in a WordPress plugin/theme
- Allow for quick implementation of accessible menus
- Menus should allow for developer customization particularly with respect to style
- Menu functionality should take into account different modes of user input (e.g. mouse, keyboard)
Usage
Installing via NPM
This package can be installed via npm using npm install a11y-menu
. This will provide access to the JS and sass files, but not the WordPress menu walker. The intention is to give javascript developers access to the JS menu walker, navigation script, and styles in a way that can be used with webpack or other bundlers.
Creating a menu via JS
There are two functions and one stylesheet that can be used together to create an accessible menu.
displayMenu
Navigation
- main.scss
displayMenu()
takes a json file (see /mock-data below for the format). It can be imported and used as follows
This can be combined with the Navigation
class to create a working menu with submenus that display on either click or hover events.
main.scss
can be required using webpack or similar. Another option is to include in your project the transpiled css file that can be found at dist/main.css
.
Installing via Composer.
This package can be installed as a dependency via Composer. To check if you have Composer installed, run the composer
command in the terminal. If Composer's not available, install it. Then within your project run composer require ucomm/a11y-menu
.
Creating a menu with PHP
For non-WordPress PHP projects, you can use the aberkow/a11y-menu-php
composer package. The package takes the place of the javascript displayMenu
function for PHP projects. It can be installed with composer require aberkow/a11y-menu-php
and exposes a single static method which can be used like this:
Creating a WordPress menu in a theme.
In order to use the custom Walker within your theme, you'll need to do the following
Javascript Defaults
The constructor comes with the following defaults. These can be overridden as needed
menuId
- the default is'am-main-menu'
click
- the default isfalse
Most basic case
The Navigation
class is designed to be as simple to use as possible. In order to use it, create a new Navigation
constructor and assign it to a variable. Inside of an event listener, use the init
method on the the instance. This implementation will create a hover menu.
Overridding defaults
Defaults can be overridden individually or together.
This will create a nav menu with an id of main-nav
and it will use the click
functionality instead of hover.
Sass defaults
The stylesheet provided is meant to provide a skeleton on which to add additional styles (e.g. colors, padding, etc...). An example of adding icons is provided in src/scss/icon-styles.scss
. These styles will override the baseline text icons in favor of Font Awesome icons.
Overriding and changing the styles of the menu is as easy as either making the selectors more specific or placing your custom styles lower in the cascade. Greater specificity can be achieved by using the provided am-
class names.
Development
To begin developing
npm install
npm run develop
This will begin watching the js and scss files and place them in the appropriate directories. Navigation.js
and main.scss
will be transpiled and sent to /dist
. Serving /public/index.html
will read those files from the /dist
directory.
Production
To create a new production version run npm run build
.
Structure
/public
index.html
Loads two examples of the menu for testing. The first example is created via javascript. The second is hardcoded into the file. This is to test how the menu responds when javascript is not available.
/build
Built assets from /src
will be placed here and used by index.html
/css and /js
These are examples of overrides/additions for the base css and/or js can be tested here. This is especially useful for styling since the base styles that are created are largely unopinionated.
/src
/js/Navigation
The class that
- handles event listeners/handlers
- assigns icons to menu items with dropdowns
- initializes the menu interaction
/js/utils
Exports a helper function to create a menu based on a tree-like json file
/mock-data
json files to create menus. The structure of items in the test file needs to be
The sub
and classes
keys are optional.
/scss
Base styles for the menu.
gulp.js
Watches and builds js/scss files as appropriate.
webpack.config.js
Handles bundling for local testing.