Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
react-aria-menubutton
Advanced tools
A React component that helps you build accessible menu buttons by providing keyboard interactions and ARIA attributes aligned with the WAI-ARIA Menu Button Design Pattern.
Please check out the demo.
If you like this kind of module (accessible, flexible, unstyled) you should also check out these projects:
The project started as an effort to build a React component that follows every detail of the WAI-ARIA Menu Button Design Pattern for maximum accessibility.
Just hiding and showing a menu is easy; but the required keyboard interactions are kind of tricky, the required ARIA attributes are easy to forget, and some other aspects of opening and closing the menu based on behaviors and managing focus are unpleasant. So I decided to try to abstract the component enough that it would be worth sharing with others.
Follow the link and read about the keyboard interactions and ARIA attributes. The demo also lists all of the interactions that are built in.
If you think that this component does not satisfy the spec or if you know of other ways to make it even more accessible, please file an issue.
Instead of providing a pre-fabricated, fully styled component, this module's goal is to provide a component that others can build their own stuff on top of.
It does not provide any classes or a stylesheet you'll have to figure out how to include; and it does not include inline styles that would be hard to override. It only provides "smart" components to wrap your (dumb styled) components. The library's components take care of keyboard interaction and ARIA attributes, while your components just do whatever you want your components to do.
npm install react-aria-menubutton
There are dependencies: React 0.13.x and tap.js.
tap.js is very small and included in the builds (React is not). It is included only to accurately detect "taps" (mouse click and touch taps) outside an open menu that should close it — which is important enough that it's worth doing right.
Basically IE9+. See .zuul.yml
for more details.
Automated testing is done with zuul and Open Suace.
There are two ways to consume this module:
Using CommonJS, for example, you can simply require()
the module to get the function ariaMenuButton([options])
, which you use like this:
var ariaMenuButton = require('react-aria-menubutton');
var myAmb = ariaMenuButton({
onSelection: mySelectionHandler
});
Using globals/UMD, you must do the following:
dist/
directory<script src="react.min.js"></script>
<script src="node_modules/react-aria-menu-button/dist/ariaMenuButton.min.js"></script>
<script>
var myAmb = ariaMenuButton({
onSelection: mySelectionHandler
});
</script>
You get to (have to) write your own CSS, your own way, based on your own components.
Returns an object with three components: Button
, Menu
, and MenuItem
. Each of these is documented below.
var myAmb = ariaMenuButton({
onSelection: mySelectionHandler
});
var MyAmbButton = myAmb.Button;
var MyAmbMenu = myAmb.Menu;
var MyAmbMenuItem = myAmb.MenuItem;
Type: Function
, required
A callback to run when the user makes a selection (i.e. clicks or presses Enter or Space on a MenuItem
). It will be passed the value
of the selected MenuItem
and the React SyntheticEvent.
var myAmb = ariaMenuButton({
onSelection: function(value, event) {
event.stopPropagation;
console.log(value);
}
});
Type: Boolean
, Default: true
If false
, the menu will not automatically close when a selection is made. By default, it does automatically close.
For details about why the examples work, read the component API documentation below.
You can see more examples by looking in demo/
.
// Very simple ES6 example
import React from 'react';
import ariaMenuButton from 'react-aria-menubutton';
const menuItemWords = ['foo', 'bar', 'baz'];
class MyMenuButton extends React.Component {
componentWillMount() {
this.amb = ariaMenuButton({
onSelection: handleSelection
});
}
render() {
const { Button, Menu, MenuItem } = this.amb;
const menuItems = menuItemWords.map((word, i) => {
return (
<li key={i}>
<MenuItem className='MyMenuButton-menuItem'>
{word}
</MenuItem>
</li>
);
});
return (
<div className='MyMenuButton'>
<Button className='MyMenuButton-button'>
click me
</Button>
<Menu className='MyMenuButton-menu'>
<ul>{menuItems}</ul>
</Menu>
</div>
);
}
}
function handleSelection(value, event) { .. }
// Slightly more complex, ES5 example:
// - MenuItems have hidden values that are passed
// to the selection handler
// - User can navigate the MenuItems by typing the
// first letter of a person's name, even though
// each MenuItem's child is not simple text
// - Menu has a function for a child
// - React's CSSTransitionGroup is used for open-close animation
var React = require('react/addons');
var ariaMenuButton = require('react-aria-menubutton');
var CSSTransitionGroup = React.addons.CSSTransitionGroup;
var people = [{
name: 'Charles Choo-Choo',
id: 1242
}, {
name: 'Mina Meowmers',
id: 8372
}, {
name: 'Susan Sailor',
id: 2435
}];
var MyMenuButton = React.createClass({
componentWillMount: function() {
this.amb = ariaMenuButton({
onSelection: handleSelection
});
},
render: function() {
var MyButton = this.amb.Button;
var MyMenu = this.amb.Menu;
var MyMenuItem = this.amb.MenuItem;
var peopleMenuItems = people.map(function(person, i) {
return (
<MyMenuItem
key={i}
tag='li'
value={person.id}
text={person.name}
className='PeopleMenu-person'
>
<div className='PeopleMenu-personPhoto'>
<img src={'/people/pictures/' + person.id + '.jpg'}/ >
</div>
<div className='PeopleMenu-personName'>
{person.name}
</div>
</MyMenuItem>
);
});
var peopleMenuInnards = function(menuState) {
var menu = (!menuState.isOpen) ? false : (
<div
className='PeopleMenu-menu'
key='menu'
>
{peopleMenuItems}
</div>
);
return (
<CSSTransitionGroup transitionName='people'>
{menu}
</CSSTransitionGroup>
);
};
return (
<div className='PeopleMenu'>
<MyButton className='PeopleMenu-trigger'>
<span className='PeopleMenu-triggerText'>
Select a person
</span>
<span className='PeopleMenu-triggerIcon' />
</MyButton>
<MyMenu>
{peopleMenuInnards}
</MyMenu>
</div>
);
}
});
function handleSelection(value, event) { .. }
Button
A React component to wrap the content of your menu-button-pattern's button.
A Button
's child can be a string or a React element.
All props are optional.
Type: String
Default: 'span'
The HTML tag for this element.
Type: String
An id value.
Type: String
A class value.
Menu
A React component to wrap the content of your menu-button-pattern's menu.
A Menu
's child may be one of the following:
a React element, which will mount when the menu is open and unmount when the menu closes
a function accepting the following menu-state object
{
isOpen: Boolean // whether or not the menu is open
}
All props are optional.
Type: String
Default: 'span'
The HTML tag for this element.
Type: String
An id value.
Type: String
A class value.
MenuItem
A React component to wrap the content of one of your menu-button-pattern's menu items.
When a MenuItem
is selected (by clicking or focusing and hitting Enter or Space), it calls the onSelection
handler you passed ariaMenuButton
when creating this set of components.
It passes that handler a value and the event. The value it passes is determined as follows:
MenuItem
has a value
prop, that is passed.MenuItem
has no value
prop, the component's child is passed (so it better be simple text!).When the menu is open and the user hits a letter key, focus moves to the next MenuItem
whose "text" starts with that letter. The MenuItem
's relevant "text" is determined as follows:
MenuItem
has a text
prop, that is used.MenuItem
has no text
prop, the component's child is used (so it better be simple text!).All props are optional.
Type: String
Required if child is an element
If text
has a value, its first letter will be the letter a user can type to navigate to that item.
Type: String|Boolean|Number
Required if child is an element
If value
has a value, it will be passed to the onSelection
handler when the MenuItem
is selected.
Type: String
Default: 'span'
The HTML tag for this element.
Type: String
An id value.
Type: String
A class value.
Lint with npm run lint
.
Test with npm run test-dev
, which will give you a URL to open in your browser. Look at the console log for TAP output.
2.0.4 and 2.0.5
FAQs
A fully accessible and flexible React-powered menu button
The npm package react-aria-menubutton receives a total of 9,972 weekly downloads. As such, react-aria-menubutton popularity was classified as popular.
We found that react-aria-menubutton demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.