File size: 2,469 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
import type { Meta, StoryObj } from '@storybook/react'
import type { OverlayState } from './shared'
// @ts-expect-error
import imgApp from './app.png'
import { DevOverlay } from './dev-overlay'
import { errors } from './storybook/errors'
import {
storybookDefaultOverlayState,
useStorybookOverlayReducer,
} from './storybook/use-overlay-reducer'
import { DevOverlayContext } from '../dev-overlay.browser'
const meta: Meta<typeof DevOverlay> = {
component: DevOverlay,
parameters: {
layout: 'fullscreen',
a11y: {
config: {
rules: [
{
id: 'color-contrast',
// Manual testing shows no violation.
// TODO: We might have setup more explicit backgrounds depending on theme.
enabled: false,
},
],
},
},
},
}
export default meta
type Story = StoryObj<typeof DevOverlay>
function getNoSquashedHydrationErrorDetails() {
return null
}
const initialState: OverlayState = {
...storybookDefaultOverlayState,
errors: errors,
}
export const Default: Story = {
render: function DevOverlayStory() {
const [state, dispatch] = useStorybookOverlayReducer(initialState)
return (
<div
style={{
height: '100vh',
backgroundColor: 'black',
}}
>
{/* TODO: NEXT-4643 */}
<img
src={imgApp}
style={{
width: '100%',
height: '100vh',
objectFit: 'contain',
}}
/>
<DevOverlayContext
value={{
dispatch,
getSquashedHydrationErrorDetails:
getNoSquashedHydrationErrorDetails,
state,
}}
>
<DevOverlay />
</DevOverlayContext>
</div>
)
},
}
// todo: fix story with "Context arg provider" wrapper
export const WithPanel: Story = {
render: function DevOverlayStory() {
const [state, dispatch] = useStorybookOverlayReducer(initialState)
return (
<>
<img
src={imgApp}
style={{
width: '100%',
height: '100vh',
objectFit: 'contain',
}}
/>
<DevOverlayContext
value={{
dispatch,
getSquashedHydrationErrorDetails:
getNoSquashedHydrationErrorDetails,
state,
}}
>
<DevOverlay />
</DevOverlayContext>
</>
)
},
}
|