aboutsummaryrefslogtreecommitdiffstats
path: root/.storybook/withTheme/index.tsx
blob: b2f80f4385495414b6d1b26028e3fe4c2fee2c65 (plain) (blame)
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
import React from 'react';
import { Classes } from 'jss';
import injectSheet, { ThemeProvider } from 'react-jss';
import addons, { makeDecorator } from '@storybook/addons';
import theme, { ThemeType, Theme } from '@meetfranz/theme';

console.log(theme);

const defaultTheme = {
  name: 'Default',
  variables: theme(ThemeType.default),
};

const darkTheme = {
  name: 'Dark Mode',
  variables: theme(ThemeType.dark),
};

const themes = [defaultTheme, darkTheme];

const styles = (theme: Theme) => ({
  title: {
    fontSize: 14,
  },
  container: {
    border: theme.inputBorder,
    borderRadius: theme.borderRadiusSmall,
    marginBottom: 20,
    padding: 20,
    background: theme.colorContentBackground,
  },
});

const Container = injectSheet(styles)(({ name, classes, story }: { name: string, classes: Classes, story: any }) => (
  <article>
    <h1 className={classes.title}>{name}</h1>
    <div className={classes.container}>
      {story}
    </div>
  </article>
));

export default makeDecorator({
  name: 'withTheme',
  parameterName: 'theme',
  // This means don't run this decorator if the notes decorator is not set
  // skipIfNoParametersOrOptions: true,
  wrapper: (getStory: Function, context: any, { options }: any) => {
    const channel = addons.getChannel();

    return (
      <>
        {themes.map(theme => (
          <ThemeProvider theme={theme.variables}>
            <Container story={getStory(context)} name={theme.name} />
          </ThemeProvider>
        ))}
      </>
    );
  }
})