mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
# Conflicts: # addons/a11y/README.md # addons/storyshots/storyshots-puppeteer/README.md # addons/storyshots/storyshots-puppeteer/package.json # addons/storyshots/storyshots-puppeteer/src/imageSnapshot.ts # examples/official-storybook/package.json # lib/api/src/version.ts
96 lines
2.3 KiB
Markdown
Executable File
96 lines
2.3 KiB
Markdown
Executable File
# storybook-addon-a11y
|
|
|
|
This storybook addon can be helpful to make your UI components more accessible.
|
|
|
|
[Framework Support](https://github.com/storybookjs/storybook/blob/master/ADDONS_SUPPORT.md)
|
|
|
|

|
|
|
|
## Getting started
|
|
|
|
First, install the addon.
|
|
|
|
```sh
|
|
$ yarn add @storybook/addon-a11y --dev
|
|
```
|
|
|
|
Add this line to your `main.js` file (create this file inside your storybook config directory if needed).
|
|
|
|
```js
|
|
module.exports = {
|
|
addons: ['@storybook/addon-a11y/register']
|
|
}
|
|
```
|
|
|
|
import the `withA11y` decorator to check your stories for violations within your components.
|
|
|
|
```js
|
|
import React from 'react';
|
|
|
|
import { withA11y } from '@storybook/addon-a11y';
|
|
|
|
export default {
|
|
title: 'button',
|
|
decorators: [withA11y],
|
|
};
|
|
|
|
export const accessible = () => (
|
|
<button>
|
|
Accessible button
|
|
</button>
|
|
);
|
|
|
|
export const inaccessible = () => (
|
|
<button style={{ backgroundColor: 'red', color: 'darkRed', }}>
|
|
Inaccessible button
|
|
</button>
|
|
);
|
|
```
|
|
|
|
## Parameters
|
|
|
|
For more customizability use parameters to configure [aXe options](https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#api-name-axeconfigure).
|
|
You can override these options [at story level too](https://storybook.js.org/docs/configurations/options-parameter/#per-story-options).
|
|
|
|
```js
|
|
import React from 'react';
|
|
import { storiesOf, addDecorator, addParameters } from '@storybook/react';
|
|
|
|
import { withA11y } from '@storybook/addon-a11y';
|
|
|
|
export default {
|
|
title: 'button',
|
|
decorators: [withA11y],
|
|
parameters: {
|
|
a11y: {
|
|
// optional selector which element to inspect
|
|
element: '#root',
|
|
// axe-core configurationOptions (https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#parameters-1)
|
|
config: {},
|
|
// axe-core optionsParameter (https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#options-parameter)
|
|
options: {},
|
|
},
|
|
},
|
|
};
|
|
|
|
export const accessible = () => (
|
|
<button>
|
|
Accessible button
|
|
</button>
|
|
);
|
|
|
|
export const inaccessible = () => (
|
|
<button style={{ backgroundColor: 'red', color: 'darkRed', }}>
|
|
Inaccessible button
|
|
</button>
|
|
);
|
|
```
|
|
|
|
## Roadmap
|
|
|
|
* Make UI accessible
|
|
* Show in story where violations are.
|
|
* Add more example tests
|
|
* Add tests
|
|
* Make CI integration possible
|