Feat/589: Reimplement theme switcher in storybook (#988)

* Feat/589: Reimplement theme switcher in storybook

* Feat/589: Setting a higher level 'dark' class when dark theme selected

* Feat/589: Removed class test
This commit is contained in:
Sam Keen 2022-08-10 13:24:51 +01:00 committed by GitHub
parent c1019c0ffb
commit 24a20f48e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@ import '../src/styles.scss';
export const parameters = {
actions: { argTypesRegex: '^on[A-Z].*' },
backgrounds: { disable: true },
layout: 'fullscreen',
a11y: {
config: {
rules: [
@ -18,39 +19,66 @@ export const parameters = {
],
},
},
/*themes: {
default: 'dark',
list: [
{ name: 'dark', class: ['dark', 'bg-black'], color: '#000' },
{ name: 'light', class: '', color: '#FFF' },
],
},*/
};
export const decorators = [
(Story, context) =>
context.parameters.themes === false ? (
<div className="text-body">
<Story />
</div>
) : (
<div className="text-body">
<StoryWrapper className="dark bg-black">
<Story />
</StoryWrapper>
<StoryWrapper>
<Story />
</StoryWrapper>
</div>
),
];
export const globalTypes = {
theme: {
name: 'Theme',
description: 'Global theme for components',
defaultValue: 'dark',
toolbar: {
icon: 'circlehollow',
items: [
{ value: 'light', title: 'Light' },
{ value: 'dark', title: 'Dark' },
{ value: 'sideBySide', title: 'Side by side' },
],
showName: true,
},
},
};
const StoryWrapper = ({ children, className }) => (
<div className={className}>
const StoryWrapper = ({ children, className, style }) => (
<div style={style} className={className}>
<div className="p-16">
<div className="dark:bg-black dark:text-white-60 bg-white text-black-60">
<div className="text-body dark:bg-black dark:text-white-60 bg-white text-black-60">
{children}
</div>
</div>
</div>
);
const lightThemeClasses = 'bg-white text-black';
const darkThemeClasses = 'dark bg-black text-white';
const withTheme = (Story, context) => {
const theme = context.parameters.theme || context.globals.theme;
const storyClasses = `h-[100vh] w-[100vw] ${
theme === 'dark' ? darkThemeClasses : lightThemeClasses
}`;
document.body.classList.toggle('dark', theme === 'dark');
return theme === 'sideBySide' ? (
<>
<div className={lightThemeClasses}>
<StoryWrapper>
<Story />
</StoryWrapper>
</div>
<div className={darkThemeClasses}>
<StoryWrapper>
<Story />
</StoryWrapper>
</div>
</>
) : (
<div className={storyClasses}>
<StoryWrapper>
<Story />
</StoryWrapper>
</div>
);
};
export const decorators = [withTheme];