mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
|
|
import { Badge } from 'storybook/internal/components';
|
|
|
|
import { addons, types, useAddonState, useStorybookApi } from 'storybook/manager-api';
|
|
|
|
import { A11YPanel } from './components/A11YPanel';
|
|
import type { Results } from './components/A11yContext';
|
|
import { A11yContextProvider } from './components/A11yContext';
|
|
import { VisionSimulator } from './components/VisionSimulator';
|
|
import { ADDON_ID, PANEL_ID, PARAM_KEY } from './constants';
|
|
|
|
const Title = () => {
|
|
const api = useStorybookApi();
|
|
const selectedPanel = api.getSelectedPanel();
|
|
const [addonState] = useAddonState<Results>(ADDON_ID);
|
|
const violationsNb = addonState?.violations?.length || 0;
|
|
const incompleteNb = addonState?.incomplete?.length || 0;
|
|
const count = violationsNb + incompleteNb;
|
|
|
|
const suffix =
|
|
count === 0 ? null : (
|
|
<Badge compact status={selectedPanel === PANEL_ID ? 'active' : 'neutral'}>
|
|
{count}
|
|
</Badge>
|
|
);
|
|
|
|
return (
|
|
<div style={{ display: 'flex', alignItems: 'center', gap: 6 }}>
|
|
<span>Accessibility</span>
|
|
{suffix}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
addons.register(ADDON_ID, (api) => {
|
|
addons.add(PANEL_ID, {
|
|
title: '',
|
|
type: types.TOOL,
|
|
match: ({ viewMode, tabId }) => viewMode === 'story' && !tabId,
|
|
render: () => <VisionSimulator />,
|
|
});
|
|
|
|
addons.add(PANEL_ID, {
|
|
title: Title,
|
|
type: types.PANEL,
|
|
render: ({ active = true }) => (
|
|
<A11yContextProvider>{active ? <A11YPanel /> : null}</A11yContextProvider>
|
|
),
|
|
paramKey: PARAM_KEY,
|
|
});
|
|
});
|