diff --git a/src/standfirst/__tests__/standfirst.stories.tsx b/src/standfirst/__tests__/standfirst.stories.tsx index fa4d3fddaf..60b9904db5 100644 --- a/src/standfirst/__tests__/standfirst.stories.tsx +++ b/src/standfirst/__tests__/standfirst.stories.tsx @@ -1,105 +1,121 @@ import * as React from 'react'; import {Standfirst} from '..'; -import {createTheme, ThemeProvider} from '../../theme'; -import {StorybookSubHeading} from '../../test/storybook-comps'; +import {ThemeProvider, CreateThemeArgs} from '../../theme'; +import {Story as StoryType} from '@storybook/react'; +import {createCustomThemeWithBaseThemeSwitch} from '../../test/theme-select-object'; +import {StorybookCase, StorybookPage} from '../../test/storybook-comps'; +import {TextBlock} from '../../text-block'; +import {getColorCssFromTheme, styled} from '../../utils/style'; -const myCustomTheme = createTheme({ - name: 'my-custom-standfirst-theme', - overrides: { - stylePresets: { - standfirstCustom: { - base: { - color: '{{colors.blue060}}', - }, - }, - }, - typographyPresets: { - standfirstCustom: { - fontFamily: '{{fonts.fontFamily1.fontFamily}}', - fontSize: '{{fonts.fontSize060}}', - lineHeight: '{{fonts.fontLineHeight030}}', - fontWeight: '{{fonts.fontWeight020}}', - letterSpacing: '{{fonts.fontLetterSpacing030}}', - }, - }, - }, -}); - -const bodyString = - 'Telling the stories that matter, seeding ideas and stirring emotion. Capturing moments, meaning and magic. Making sense of the world. On the shoulders of giants, in the thick of it, behind the scenes and fighting the good fight.'; - -export default { - title: 'Components/standfirst', - component: () => 'None', -}; +const CONTENT = + 'NewsKit provides components, guidelines and standards to enable digital product teams to create high-quality, consistent products quickly. NewsKit is built on modular design principles and backed by best practice guidance for design and development.'; export const StoryDefault = () => ( - <> - Standfirst - default - {bodyString} - + + + {CONTENT} + + ); -StoryDefault.storyName = 'default'; +StoryDefault.storyName = 'Default'; -export const StoryWithAsProp = () => ( - <> - Standfirst - as h3 - {bodyString} +export const StoryWithAsSpan = () => ( + + + {CONTENT} + + +); +StoryWithAsSpan.storyName = 'Standfirst as span'; - Standfirst - as span - {bodyString} - +export const StoryLogicalProps = () => ( + + + + + {CONTENT} + + + + ); -StoryWithAsProp.storyName = 'with-as-prop'; +StoryLogicalProps.storyName = 'Logical props'; -export const StoryWithOverrides = () => ( - <> - - - Standfirst - with style-preset override - +export const StoryWithStylingOverrides = () => ( + + - {bodyString} + {CONTENT} - - Standfirst - with typography-preset override - + + +); +StoryWithStylingOverrides.storyName = 'Styling overrides'; + +export const StoryWithOverrides = () => ( + + - {bodyString} + NewsKit provides components, guidelines and standards to enable digital + product teams to create high-quality, consistent products quickly. + NewsKit is built on modular design principles and backed by best + practice guidance for design and development. - - + + ); -StoryWithOverrides.storyName = 'with-overrides'; +StoryWithOverrides.storyName = 'Overrides'; -export const StoryLogicalProps = () => ( - <> - - Standfirst - logical padding props - - - {bodyString} - - Standfirst - logical margin props - - {bodyString} - - -); -StoryLogicalProps.storyName = 'logical-props'; +const MarginOverridesWrapper = styled.div` + border: 1px dashed; + ${getColorCssFromTheme('borderColor', 'red060')} +`; + +export default { + title: 'Components/Standfirst', + component: () => 'None', + parameters: { + nkDocs: { + title: 'Standfirst', + url: 'https://www.newskit.co.uk/components/standfirst/', + description: + 'Standfirst is an introductory paragraph in an article, which summarises the articles content.', + }, + }, + decorators: [ + ( + Story: StoryType, + context: {name: string; globals: {backgrounds: {value: string}}}, + ) => ( + + + + ), + ], +};