mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
65de847328
* chore: clear the console in storybook a little * Update .storybook/preview.tsx * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (1) * maybe this? * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (1) * maybe this * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
116 lines
3.5 KiB
TypeScript
116 lines
3.5 KiB
TypeScript
import '~/styles'
|
|
import './storybook.scss'
|
|
import type { Meta, Parameters, Preview } from '@storybook/react'
|
|
import { Title, Subtitle, Description, Primary, Controls, Stories } from '@storybook/blocks'
|
|
import { worker } from '~/mocks/browser'
|
|
import { loadPostHogJS } from '~/loadPostHogJS'
|
|
import { getStorybookAppContext } from './app-context'
|
|
import { withKea } from './decorators/withKea'
|
|
import { withMockDate } from './decorators/withMockDate'
|
|
import { defaultMocks } from '~/mocks/handlers'
|
|
import { withSnapshotsDisabled } from './decorators/withSnapshotsDisabled'
|
|
import { withFeatureFlags } from './decorators/withFeatureFlags'
|
|
|
|
const setupMsw = () => {
|
|
// Make sure the msw worker is started
|
|
worker.start({
|
|
quiet: true,
|
|
onUnhandledRequest(request, print) {
|
|
// MSW warns on all unhandled requests, but we don't necessarily care
|
|
const pathAllowList = ['/images/']
|
|
|
|
if (pathAllowList.some((path) => request.url.pathname.startsWith(path))) {
|
|
return
|
|
}
|
|
|
|
// Otherwise, default MSW warning behavior
|
|
print.warning()
|
|
},
|
|
})
|
|
;(window as any).__mockServiceWorker = worker
|
|
;(window as any).POSTHOG_APP_CONTEXT = getStorybookAppContext()
|
|
}
|
|
setupMsw()
|
|
|
|
const setupPosthogJs = () => {
|
|
// Make sure we don't hit production posthog. We want to control requests to,
|
|
// e.g. `/decide/` for feature flags
|
|
window.JS_POSTHOG_HOST = window.location.origin
|
|
|
|
loadPostHogJS()
|
|
}
|
|
setupPosthogJs()
|
|
|
|
/** Storybook global parameters. See https://storybook.js.org/docs/react/writing-stories/parameters#global-parameters */
|
|
export const parameters: Parameters = {
|
|
actions: { argTypesRegex: '^on[A-Z].*', disabled: true },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
options: {
|
|
// automatically show code panel
|
|
showPanel: false,
|
|
storySort: {
|
|
method: 'alphabetical',
|
|
order: [
|
|
'Lemon UI',
|
|
['Overview', 'Utilities', 'Icons'],
|
|
'Components',
|
|
'Forms',
|
|
['Field'],
|
|
'Filters',
|
|
'Layout',
|
|
],
|
|
},
|
|
},
|
|
viewMode: 'docs',
|
|
// auto-expand code blocks in docs
|
|
docs: {
|
|
source: { state: 'closed' },
|
|
},
|
|
msw: {
|
|
mocks: defaultMocks,
|
|
},
|
|
}
|
|
|
|
// Setup storybook global decorators. See https://storybook.js.org/docs/react/writing-stories/decorators#global-decorators
|
|
export const decorators: Meta['decorators'] = [
|
|
withSnapshotsDisabled,
|
|
// Make sure the msw service worker is started, and reset the handlers to defaults.
|
|
withKea,
|
|
// Allow us to time travel to ensure our stories don't change over time.
|
|
// To mock a date for a story, set the `mockDate` parameter.
|
|
withMockDate,
|
|
// Allow us to easily set feature flags in stories.
|
|
withFeatureFlags,
|
|
]
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
docs: {
|
|
page: () => (
|
|
<>
|
|
<Title />
|
|
<Subtitle />
|
|
<Description />
|
|
<Primary />
|
|
<Controls />
|
|
<Stories />
|
|
</>
|
|
),
|
|
},
|
|
},
|
|
}
|
|
|
|
export default preview
|