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

Feat/harmony picker #10559

Closed

Conversation

AdvancedCat
Copy link
Member

这个 PR 做了什么? (简要描述所做更改)

新增鸿蒙组件picker

这个 PR 是什么类型? (至少选择一个)

  • 错误修复(Bugfix) issue id #
  • 新功能(Feature)
  • 代码重构(Refactor)
  • TypeScript 类型定义修改(Typings)
  • 文档修改(Docs)
  • 代码风格更新(Code style update)
  • 其他,请描述(Other, please describe):

这个 PR 涉及以下平台:

  • 所有小程序
  • 微信小程序
  • 支付宝小程序
  • 百度小程序
  • 字节跳动小程序
  • QQ 轻应用
  • 京东小程序
  • 快应用平台(QuickApp)
  • Web 平台(H5)
  • 移动端(React-Native)
  • 鸿蒙(Harmony)

组件测试代码:
https://github.com/AdvancedCat/taro-harmony-react/blob/master/src/pages/picker/index.jsx

@taro-bot2
Copy link

taro-bot2 bot commented Nov 2, 2021

欢迎提交 PR~ Taro 非常感谢您对开源事业做出的贡献!🌷🌷🌷

一般 PR 会在一到两周内进行 review,成功合入后会随下一个版本进行发布。

Review 需要耗费大量时间,所以请遵循以下规范,协助我们提高 review 效率🙏🙏🙏

  1. 详细介绍 PR 的背景(非常重要,例如解决了什么问题,该问题如何复现等)
  2. 确保 CI 顺利运行。
  3. 最好能提供对应的测试用例。

为了更好地进行沟通,请加入 Taro 开发者微信群:

@Chen-jj Chen-jj added the T-harmony Target - 编译到 Harmony label Nov 3, 2021
@Chen-jj
Copy link
Contributor

Chen-jj commented Nov 3, 2021

@AdvancedCat

我列一下我认为正确的 demo 测试结果:

selector: 显示 2,默认选中 4
selector RK: 显示 小明,默认选中 小明
multi: 显示 bef,默认选中 aeg
multi RK: 显示 AEG,默认选中 AEG
time: 显示 12:30,默认选中 12:30
date: 显示 2021-11-11,默认选中 2021 11 11
date: 显示 ,默认选中 2021-11-11-13-13

@AdvancedCat
Copy link
Member Author

@Chen-jj
代码已调整,经测试,demo中展示的效果如下:

selector: 显示 4,默认选中 2
selector RK: 显示 小明,默认选中 小明
multi: 显示 aeg,默认选中 bef
multi RK: 显示 AEG,默认选中 AEG
time: 显示 12:30,默认选中 当前时间(API6) / 12:30(API7)
date: 显示 2021-11-11,默认选中 2021 11 11
datetime: 显示 2021-11-11-13-13,默认选中 2021-12-12-10-10

关于time类型的默认值,经测试,在API6中仍是当前时间,在API7中则为value的值,华为论坛讨论如下:
https://developer.huawei.com/consumer/cn/forum/topic/0201697213296960929?fid=0101587866109860105

Taro组件无selected属性,因此在Taro组件中传入selected属性时仍按照鸿蒙组件的解释,即selected代表弹窗时的默认值.

请指正。

@AdvancedCat
Copy link
Member Author

调整了部分代码逻辑:

  • 去除selected属性的传入,取this.value为鸿蒙selected;
  • 在不同type的if语句中直接return,降低复杂度;

Taro组件的value与鸿蒙value描述不一致,先以Taro组件为准,如果开发者需要自定义selected或者自定义鸿蒙value的需求,后续再提PR。

return {
type,
localValue: this.value,
selected: this.value || ''
Copy link
Contributor

Choose a reason for hiding this comment

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

需要补齐”秒“的值:hh:mm::ss,打开 picker 弹层后的默认值才是设置的值。现在点击打开 picker 后显示了默认值即当前时间。

image

@AdvancedCat AdvancedCat deleted the feat/harmony-picker branch November 10, 2021 16:31
@AdvancedCat AdvancedCat mentioned this pull request Nov 10, 2021
18 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T-harmony Target - 编译到 Harmony
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants