Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Refactor TreeSelect #113

Merged
merged 146 commits into from
Jun 28, 2018
Merged

Refactor TreeSelect #113

merged 146 commits into from
Jun 28, 2018

Conversation

zombieJ
Copy link
Member

@zombieJ zombieJ commented Jun 19, 2018

修复的东西有点多,中文写描述了。
另外,TreeSelect 允许在 Tree 没有初始化时就可以设置 Value,这一块我还会多加一些 Test Case 来校验。代码可以先 Review 起来了~

  • 修复 showCheckedStrategy prop 变化组件不会对应更新的问题
  • 修复 search 时,勾选不正确的问题
  • 统一缓存逻辑,现在只有在树形结构变化时进行更新
  • inputValue deprecated(仍然支持)。推荐用 searchValue 代替以和 Select 组件的 autoClearSearchValue 匹配
  • 添加 autoClearSearchValue 属性,以和 Select 组件匹配
  • open 现在是完全可控的了
  • searchValue 现在是完全可控的了
  • treeNode 在没有设置 key 时,会尝试用 value 作为 key 而非 pos 以避免 children 变化时可能产生的问题
  • 修复 treeDataSimpleMode 会丢失节点的问题
  • label 改为 deprecated 以避免和 title 冲突(仍然支持)
  • 修复 animate 会被 re-render 影响 (rc-trigger@3.0.0-rc, rc-aniamte@3.0.0-rc
  • 调整 dropdownMatchSelectWidth 逻辑,现在默认会展示足够空间
  • 优化 treeDataSimpleMode ,用空间换效率。
  • 現在 treeDataSimpleModetreeData 一样都是 props 更新才会触发的行为
  • 剥离不存在于 Tree 中的值进行单独处理以简化逻辑
    • 修复 传入不存在于 Tree 中的值时,不同模式下表现不同。现在总会显示
    • 修复 不存在于 Tree 中的值在操作时会丢失的情况
  • 统一 onDeselect 逻辑,而非某些情况下才会触发

@zombieJ
Copy link
Member Author

zombieJ commented Jun 20, 2018

Test Coverage 留了 2 行 KeyCtrl 的,目前 TreeNode 还没有 active 属性,以后再加上。
代码先看起来吧, @afc163 @yesmeck

@zombieJ zombieJ changed the title [WIP] Refactor TreeSelect Refactor TreeSelect Jun 22, 2018
README.md Outdated
@@ -67,7 +67,8 @@ online example: http://react-component.github.io/tree-select/
|maxTagTextLength | max tag text length to show | number | - |
|multiple | whether multiple select (true when enable treeCheckable) | bool | false |
|disabled | whether disabled select | bool | false |
|inputValue | if enable search, you can set default input's value, if set to null, auto clear input value when finish select/unselect operation | string/null | '' |
|inputValue | [Deprecated] Please use `searchValue` instead. | string/null | '' |
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

可以删了

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK

const { valueList, valueEntities, keyEntities, filteredTreeNodes } = nextProps;

const newState = {
prevProps: nextProps,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

state 里的 prevProps 好像没用到?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

下面 74, 82 行比较会用到

$treeNodes = treeNodes;
}

let $tree;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

不要用 $ 命名变量,没什么意义。

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@afc163 , 用 $ 来表示 element 相关变量会比较容易区分些 😕

treeIcon, treeLine, treeCheckable, treeCheckStrictly, multiple,
loadData,
ariaId,

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

空行

expandedKeys={expandedKeyList}

filterTreeNode={this.filterTreeNode}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

好多无意义的空行


renderArrow() {
const { prefixCls, showArrow } = this.props;
if (!showArrow) return null;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

加 { }

onClick={onClick}
className={classNames({
[className]: !!className,
[prefixCls]: 1,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这种可以直接作为参数。


ref={this.domRef}

role="combobox"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

好多没用的空行。


MultiplePopup.propTypes = BasePopup.propTypes;

export default MultiplePopup;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个直接 MultiplePopup = BasePopup 是不是就可以了。

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

嗯,对。我改一下

renderPlaceholder = () => {
const { searchPlaceholder, searchValue, prefixCls } = this.props;

if (!searchPlaceholder) return null;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

加 {}

<BasePopup
{...this.props}

renderSearch={this.renderSearch}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

空行

} else {
inputNode.style.width = '';
static getDerivedStateFromProps(nextProps, prevState) {
const { prevProps = {} } = prevState;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

发现这里用到了,这个东西直接放 this 下好了,放 state 里好像意义不大。

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

static 方法拿不到 this,用了 getDerivedStateFromProps 要对比的内容都需要在 state 里存着。

@zombieJ zombieJ merged commit 6203275 into react-component:master Jun 28, 2018
@zombieJ zombieJ deleted the refactor branch June 28, 2018 08:23
@afc163
Copy link
Member

afc163 commented Jun 28, 2018

把 antd 的也升了吧。

@zombieJ
Copy link
Member Author

zombieJ commented Jun 28, 2018

update:
antd use treeCheckable to customize check icon cause test warning.
Need update in rc-tree
ref: https://github.com/react-component/tree/blob/e41c15a09411e100d660900794cca1d900045769/src/TreeNode.jsx

update2:
Just need modify tree-select prop types

@hye
Copy link

hye commented Jul 14, 2018

@zombieJ
https://ant.design/components/tree-select/
官网的例子搜索的结果是匹配value出来的,用户搜肯定是搜title而不是看不见的value啊
(不知道这个_修复_没,就不另开issue了)

@zombieJ
Copy link
Member Author

zombieJ commented Jul 16, 2018

@hye ,api 文档 treeNodeFilterProp 默认是以 value 为准。你可以设置成 treeNodeFilterProp="title"以显示值为准。
这个默认值目前应该不会改,否则用户升级后行为就不一致了。

@afc163
Copy link
Member

afc163 commented Jul 16, 2018

这个默认行为感觉有问题,我觉得可以改。

@afc163
Copy link
Member

afc163 commented Jul 16, 2018

不过有个坑,如果 title 给的是 ReactNode,其实是没法搜索的。value 限定了 string 类型。

默认行为可以优化为这样,treeNodeFilterProp 默认为 title。如果 treeNodeFilterProp 为 title 时, title 是 string 类型,那么按 title 搜索,否则 fallback 为 value 搜索。

@zombieJ
Copy link
Member Author

zombieJ commented Jul 17, 2018

我想法是改进一下这个属性,可以接受一个数组。默认做成 ['title', 'value']

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants