微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何让故事书在 React 中充满活力

如何解决如何让故事书在 React 中充满活力

weather.stories.ts

export default {
  title: 'Widgets/Forecast',component: Weather,}
const Template: Story<any> = (args) => <Weather {...args} />;

export const Default = Template.bind({});

Default.args = {
    forecast: {
        enable: true,bgColor: '#2d4059',textColor: '#fff'
    }
    }

forecast.ts

export interface ForecastProps {
    forecast: {
        enable: false,bgColor?: string,textColor?: string,}
}
export default function Weather({ forecast,...props }: ForecastProps) { .... }

在这里要做的是将预测启用设置为 true/false。 控制故事书中的原因应该是 { enable: true,textColor: '#fff' }

在故事书中应该是这样的。 这只是示例:

enter image description here

enter image description here

这是我的输出

enter image description here

解决方法

在你的 Forcast 组件中,props 接口不应该有嵌套的 forecast 对象,而应该是这样的:

export interface ForecastProps {
  enable: boolean,bgColor?: string,textColor?: string,};

export default function Weather(props: ForecastProps) { .... }

这样故事书就可以将您拥有的不同道具分开。
+ enable 道具类型应该是 boolean 而不是值 false

这样,在您的 .stories 文件中,Default 参数也不应该包含嵌套的 forecast 对象:

Default.args = {
  enable: true,bgColor: '#2d4059',textColor: '#fff',};

但是,对于 textColorbgColor 道具,故事控件将被视为一个字符串,而不是您的示例所建议的颜色选择器。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。