Skip to content
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

Merged
merged 3 commits into from
Jan 16, 2019
Merged

Conversation

zombieJ
Copy link
Member

@zombieJ zombieJ commented Jan 15, 2019

ref: ant-design/ant-design#9990

Support react-dnd wrapper:

<Tabs
  renderTabBar={() => (
    <ScrollableInkTabBar>
      {this.renderTabBarNode}
    </ScrollableInkTabBar>
  )}
  {...otherProps}
>
  {children}
</Tabs>

@afc163
Copy link
Member

afc163 commented Jan 16, 2019

直接用 ScrollableInkTabBar 的 children 呢,现在的 API 看着实在是太纠结了。

@zombieJ
Copy link
Member Author

zombieJ commented Jan 16, 2019

直接用 ScrollableInkTabBar 的 children 呢,现在的 API 看着实在是太纠结了。

ScrollableInkTabBar 内部结构是这样的:

<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 在 TabBarTabsNode 内部:

<div ref={saveRef('navTabsContainer')}>
  {/* panels.map => <div role="tab" /> */}
</div>

如果通过 children 调用的话,需要用户知道内部结构是什么。而且层级挺深的,有点黑魔法的意思。不如直接给个接口让用户可以控制 node 来的清晰。

@afc163
Copy link
Member

afc163 commented Jan 16, 2019

<Tabs renderTabBar={() => <ScrollableInkTabBar renderTabBarNode ...

Copy link
Contributor

@picodoth picodoth left a 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?

@zombieJ zombieJ changed the title Add renderTabBarNode on ScrollableInkTabBar ScrollableInkTabBar support render props to customize tab node Jan 16, 2019
@zombieJ zombieJ merged commit a5629c2 into master Jan 16, 2019
@zombieJ zombieJ deleted the dnd branch January 16, 2019 04:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants