mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:41:05 +08:00
Add stories for A11yPanel
This commit is contained in:
parent
a93ea7d0b1
commit
d3923d25d0
182
code/addons/a11y/template/stories/A11YPanel.stories.tsx
Normal file
182
code/addons/a11y/template/stories/A11YPanel.stories.tsx
Normal file
@ -0,0 +1,182 @@
|
||||
import React from 'react';
|
||||
|
||||
import { ThemeProvider, convert, themes } from 'storybook/internal/theming';
|
||||
|
||||
import type { Meta, StoryObj } from '@storybook/react';
|
||||
import { fn } from '@storybook/test';
|
||||
|
||||
import { A11YPanel } from '../../src/components/A11YPanel';
|
||||
import { A11yContext } from '../../src/components/A11yContext';
|
||||
import type { A11yContextStore } from '../../src/components/A11yContext';
|
||||
|
||||
const meta: Meta = {
|
||||
title: 'A11YPanel',
|
||||
component: A11YPanel,
|
||||
decorators: [
|
||||
(Story) => (
|
||||
<ThemeProvider theme={convert(themes.light)}>
|
||||
<Story />
|
||||
</ThemeProvider>
|
||||
),
|
||||
],
|
||||
} satisfies Meta<typeof A11YPanel>;
|
||||
|
||||
export default meta;
|
||||
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
const Template = (args: Pick<A11yContextStore, 'results' | 'error' | 'status'>) => (
|
||||
<A11yContext.Provider
|
||||
value={{
|
||||
handleManual: fn(),
|
||||
highlighted: [],
|
||||
toggleHighlight: fn(),
|
||||
clearHighlights: fn(),
|
||||
tab: 0,
|
||||
setTab: fn(),
|
||||
setStatus: fn(),
|
||||
...args,
|
||||
}}
|
||||
>
|
||||
<A11YPanel />
|
||||
</A11yContext.Provider>
|
||||
);
|
||||
|
||||
export const Initializing: Story = {
|
||||
render: () => {
|
||||
return (
|
||||
<Template
|
||||
results={{ passes: [], incomplete: [], violations: [] }}
|
||||
status="initial"
|
||||
error={null}
|
||||
/>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export const Manual: Story = {
|
||||
render: () => {
|
||||
return (
|
||||
<Template
|
||||
results={{ passes: [], incomplete: [], violations: [] }}
|
||||
status="manual"
|
||||
error={null}
|
||||
/>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export const Running: Story = {
|
||||
render: () => {
|
||||
return (
|
||||
<Template
|
||||
results={{ passes: [], incomplete: [], violations: [] }}
|
||||
status="running"
|
||||
error={null}
|
||||
/>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export const ReadyWithResults: Story = {
|
||||
render: () => {
|
||||
return (
|
||||
<Template
|
||||
results={{
|
||||
passes: [],
|
||||
incomplete: [],
|
||||
violations: [
|
||||
{
|
||||
id: 'aria-command-name',
|
||||
impact: 'serious',
|
||||
tags: [
|
||||
'cat.aria',
|
||||
'wcag2a',
|
||||
'wcag412',
|
||||
'TTv5',
|
||||
'TT6.a',
|
||||
'EN-301-549',
|
||||
'EN-9.4.1.2',
|
||||
'ACT',
|
||||
],
|
||||
description: 'Ensures every ARIA button, link and menuitem has an accessible name',
|
||||
help: 'ARIA commands must have an accessible name',
|
||||
helpUrl:
|
||||
'https://dequeuniversity.com/rules/axe/4.8/aria-command-name?application=axeAPI',
|
||||
nodes: [
|
||||
{
|
||||
any: [
|
||||
{
|
||||
id: 'has-visible-text',
|
||||
data: null,
|
||||
relatedNodes: [],
|
||||
impact: 'serious',
|
||||
message: 'Element does not have text that is visible to screen readers',
|
||||
},
|
||||
{
|
||||
id: 'aria-label',
|
||||
data: null,
|
||||
relatedNodes: [],
|
||||
impact: 'serious',
|
||||
message: 'aria-label attribute does not exist or is empty',
|
||||
},
|
||||
{
|
||||
id: 'aria-labelledby',
|
||||
data: null,
|
||||
relatedNodes: [],
|
||||
impact: 'serious',
|
||||
message:
|
||||
'aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty',
|
||||
},
|
||||
{
|
||||
id: 'non-empty-title',
|
||||
data: {
|
||||
messageKey: 'noAttr',
|
||||
},
|
||||
relatedNodes: [],
|
||||
impact: 'serious',
|
||||
message: 'Element has no title attribute',
|
||||
},
|
||||
],
|
||||
all: [],
|
||||
none: [],
|
||||
impact: 'serious',
|
||||
html: '<div role="button" class="css-12jpz5t">',
|
||||
target: ['.css-12jpz5t'],
|
||||
failureSummary:
|
||||
'Fix any of the following:\n Element does not have text that is visible to screen readers\n aria-label attribute does not exist or is empty\n aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty\n Element has no title attribute',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
}}
|
||||
status="ready"
|
||||
error={null}
|
||||
/>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export const Error: Story = {
|
||||
render: () => {
|
||||
return (
|
||||
<Template
|
||||
results={{ passes: [], incomplete: [], violations: [] }}
|
||||
status="error"
|
||||
error="Test error message"
|
||||
/>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export const ErrorStateWithObject: Story = {
|
||||
render: () => {
|
||||
return (
|
||||
<Template
|
||||
results={{ passes: [], incomplete: [], violations: [] }}
|
||||
status="error"
|
||||
error={{ message: 'Test error object message' }}
|
||||
/>
|
||||
);
|
||||
},
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user