-
-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ScrollableInkTabBar support render props to customize tab node #160
Conversation
直接用 |
<SaveRef>
{(saveRef, getRef) => (
<TabBarRootNode saveRef={saveRef} {...this.props}>
<ScrollableTabBarNode saveRef={saveRef} getRef={getRef} {...this.props}>
<TabBarTabsNode saveRef={saveRef} {...this.props} />
<InkTabBarNode saveRef={saveRef} getRef={getRef} {...this.props} />
</ScrollableTabBarNode>
</TabBarRootNode>
)}
</SaveRef> 我们要包的 TabNode 在 <div ref={saveRef('navTabsContainer')}>
{/* panels.map => <div role="tab" /> */}
</div> 如果通过 children 调用的话,需要用户知道内部结构是什么。而且层级挺深的,有点黑魔法的意思。不如直接给个接口让用户可以控制 node 来的清晰。 |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for antd purpose, this looks great. But should we consider to add the same functionality on other type of tabbar node?
renderTabBarNode
on ScrollableInkTabBar
ref: ant-design/ant-design#9990
Support react-dnd wrapper: