我有一个组件“Item”和一个容器。容器具有延迟加载功能,我可以使用它加载项目。所以我必须触发该功能,以显示项目。如何触发故事书中的功能?
// Container.js with Item component
<Item
key={post.id}
lazyLoading={this.lazyloading.bind(this)} //I need to trigger this function, to load the posts
text={this.props.text}
styles={this.props.styles}
/>
// Item.stories.js
let key = 1;
let text = "test";
let styles = {
backgroundColor: 'red',
}
storiesOf('Item', module).add(
'default',
(() => (
<Item
key={key}
text={text}
styles={styles}
lazyLoadingImage={} // How can I call this function?
/>
))
);