mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:51:05 +08:00
FIX header themed stories
This commit is contained in:
parent
e918453413
commit
ea5b35754c
@ -5,7 +5,7 @@ import { StorybookLogo } from '@storybook/components';
|
||||
|
||||
export const StorybookLogoStyled = styled(StorybookLogo)({
|
||||
width: 'auto',
|
||||
height: 22,
|
||||
height: '22px !important',
|
||||
display: 'block',
|
||||
});
|
||||
|
||||
|
@ -1,12 +1,9 @@
|
||||
import React from 'react';
|
||||
import { themes, ThemeProvider, ensure } from '@storybook/theming';
|
||||
import { ThemeProvider, useTheme } from '@storybook/theming';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
|
||||
import { Heading } from './Heading';
|
||||
|
||||
const { light } = themes;
|
||||
const theme = ensure(light);
|
||||
|
||||
export default {
|
||||
component: Heading,
|
||||
title: 'UI/Sidebar/Heading',
|
||||
@ -37,92 +34,110 @@ export const menuHighlighted = () => <Heading menuHighlighted menu={menuItems} /
|
||||
|
||||
export const standardData = { menu: menuItems };
|
||||
|
||||
export const standard = () => (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: undefined,
|
||||
url: undefined,
|
||||
image: undefined,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
export const standard = () => {
|
||||
const theme = useTheme();
|
||||
return (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: undefined,
|
||||
url: undefined,
|
||||
image: undefined,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
};
|
||||
|
||||
export const standardNoLink = () => (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: undefined,
|
||||
url: null,
|
||||
image: undefined,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
export const standardNoLink = () => {
|
||||
const theme = useTheme();
|
||||
return (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: undefined,
|
||||
url: null,
|
||||
image: undefined,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
};
|
||||
|
||||
export const linkAndText = () => (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: 'My title',
|
||||
url: 'https://example.com',
|
||||
image: null,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
export const linkAndText = () => {
|
||||
const theme = useTheme();
|
||||
return (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: 'My title',
|
||||
url: 'https://example.com',
|
||||
image: null,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
};
|
||||
|
||||
export const onlyText = () => (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: 'My title',
|
||||
url: null,
|
||||
image: null,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
export const onlyText = () => {
|
||||
const theme = useTheme();
|
||||
return (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: 'My title',
|
||||
url: null,
|
||||
image: null,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
};
|
||||
|
||||
export const longText = () => (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: 'My title is way to long to actually fit',
|
||||
url: null,
|
||||
image: null,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
export const longText = () => {
|
||||
const theme = useTheme();
|
||||
return (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: 'My title is way to long to actually fit',
|
||||
url: null,
|
||||
image: null,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
};
|
||||
|
||||
export const customBrandImage = () => (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: 'My Title',
|
||||
url: 'https://example.com',
|
||||
image: 'https://via.placeholder.com/150x22',
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
export const customBrandImage = () => {
|
||||
const theme = useTheme();
|
||||
return (
|
||||
<ThemeProvider
|
||||
theme={{
|
||||
...theme,
|
||||
brand: {
|
||||
title: 'My Title',
|
||||
url: 'https://example.com',
|
||||
image: 'https://via.placeholder.com/150x22',
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Heading menu={menuItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user