Material-UI 5

Material UI 5 库的 Storybook 插件

在 Github 上查看

Codacy Badge npm version Live demo

Storybook 插件 Material-UI

提供帮助创建Material-UI 组件的开发环境。这是React Storybook的插件,它将您的组件包装在 MuiThemeProvider 中。这加快并简化了基于 Material-UI 的应用程序的开发过程。

您可以使用此项目的演示页面来发现任何组件的Material-UI 主题设置,并在网上创建您自己的新主题。但要充分利用此项目,请在您的工作环境中本地运行它。

screen1

功能

Live demo

  • 包装在主题提供程序中。只需开始使用基本浅色主题进行开发。
  • 注入 TapEvent 插件。在移动设备上测试。
  • 切换主题。只需单击一下即可查看其外观。
  • 创建自定义主题。通过代码或在可视化编辑器中。
  • 动态可视化主题编辑。发现所有可用的主题属性。
  • Google 材质颜色调色板选择器
  • 保存所做的更改并下载为 JSON 文件
  • React Theming的一部分。创建可主题化的 React 组件。
  • 适用于 Storybook 3.0

快速入门

为了使用最新的storybook-addon-material-ui快速入门,您可以查看create-material-ui-app

它包含以下内容的工作设置:

  • create-react-app
  • Storybook
  • Material-UI
  • storybook-addon-material-ui

入门

首先,安装插件

npm i storybook-addon-material-ui --save-dev

Storybook 6.1

storybook-addon-material-ui添加到 storybook 插件中

//.storybook/main.js

module.exports = {
  stories: ['../stories/**/*.stories.(js|mdx)'],
  addons: [
    'storybook-addon-material-ui'
  ],
};

将装饰器添加到 storybook 预览中

//.storybook/preview.js

import { muiTheme } from 'storybook-addon-material-ui'

export const decorators = [
	muiTheme()
];

注意:您可以在加载的主题之间切换。默认情况下,您有两个基本主题,但您可以像这样轻松添加自定义主题

//.storybook/preview.js

import { muiTheme } from 'storybook-addon-material-ui'

// Create your own theme like this.
// Note: you can specify theme name in `themeName` field. Otherwise it will be displayed by the number.
// you can specify only required fields overriding the `Light Base Theme`
const newTheme = {
    themeName: 'Grey Theme',
    palette: {
        primary1Color: '#00bcd4',
        alternateTextColor: '#4a4a4a',
        canvasColor: '#616161',
        textColor: '#bdbdbd',
        secondaryTextColor: 'rgba(255, 255, 255, 0.54)',
        disabledColor: '#757575',
        accent1Color: '#607d8b',
    },
};


export const decorators = [
	muiTheme([newTheme])
];

甚至可以从其他地方导入

//.storybook/preview.js

import { muiTheme } from 'storybook-addon-material-ui'

import theme1 from './src/theme/theme1'
import theme2 from './src/theme/theme2'

export const decorators = [
	muiTheme([theme1, theme2])
];

Storybook 5(以及更旧的版本)

现在,使用 Material-UI 插件编写您的故事。默认情况下,您的故事将提供浅色基本主题深色基本主题

import React from 'react';
import { storiesOf, addDecorator } from '@storybook/react';
import {muiTheme} from 'storybook-addon-material-ui';

// Import some examples from react-theming https://github.com/react-theming/react-theme-provider/blob/master/example/
import CardExampleControlled from '../CardExampleControlled.jsx';
import RaisedButtonExampleSimple from '../RaisedButtonExampleSimple.jsx';
import DatePickerExampleSimple from '../DatePickerExampleSimple.jsx';

storiesOf('Material-UI', module)
// Add the `muiTheme` decorator to provide material-ui support to your stories.
// If you do not specify any arguments it starts with two default themes
// You can also configure `muiTheme` as a global decorator.
    .addDecorator(muiTheme())
    .add('Card Example Controlled', () => (
            <CardExampleControlled />
        ))
    .add('Raised Button Example Simple', () => (
            <RaisedButtonExampleSimple />
        ))
    .add('Date Picker Example Simple', () => (
            <DatePickerExampleSimple />
        ));

注意:您可以在加载的主题之间切换。默认情况下,您有两个基本主题,但您可以像这样轻松添加自定义主题

import React from 'react';
import { storiesOf, addDecorator } from '@storybook/react';

import {muiTheme} from 'storybook-addon-material-ui';

import CardExampleControlled from '../CardExampleControlled.jsx';
import RaisedButtonExampleSimple from '../RaisedButtonExampleSimple.jsx';
import DatePickerExampleSimple from '../DatePickerExampleSimple.jsx';

// Create your own theme like this.
// Note: you can specify theme name in `themeName` field. Otherwise it will be displayed by the number.
// you can specify only required fields overriding the `Light Base Theme`
const newTheme = {
    themeName: 'Grey Theme',
    palette: {
        primary1Color: '#00bcd4',
        alternateTextColor: '#4a4a4a',
        canvasColor: '#616161',
        textColor: '#bdbdbd',
        secondaryTextColor: 'rgba(255, 255, 255, 0.54)',
        disabledColor: '#757575',
        accent1Color: '#607d8b',
    },
};



storiesOf('Material-UI', module)
    .addDecorator(muiTheme([newTheme]))
    .add('Card Example Controlled', () => (
            <CardExampleControlled />
        ))
    .add('Raised Button Example Simple', () => (
            <RaisedButtonExampleSimple />
        ))
    .add('Date Picker Example Simple', () => (
            <DatePickerExampleSimple />
        ));


反馈

您可以通过匿名调查留下您对该项目的意见。

查询字符串参数

当您选择主题和其他选项时,它会存储在地址栏中。因此,当您刷新页面时,此状态会保留,并且您可以使用直接链接到所需的状态。

https://127.0.0.1:9001/?theme-ind=0&theme-sidebar=true&theme-full=true

贡献

@airbnb

开发者

我们的团队欢迎所有贡献、测试和错误修复。如果您想帮助为该项目做出贡献,请随时提出问题、PR 或与我联系。

设计师

我们非常欢迎设计师参与到这个项目中。我们非常感兴趣地了解您对使用此工具的意见,设计师和开发人员联合工作的可能性,以及它的外观和功能。

鸣谢