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(module:segmented): redesign the segmented component #8753

Merged
merged 1 commit into from
Nov 22, 2024

Conversation

HyperLife1119
Copy link
Collaborator

@HyperLife1119 HyperLife1119 commented Sep 15, 2024

PR Checklist

Please check if your PR fulfills the following requirements:

PR Type

What kind of change does this PR introduce?

  • Bugfix
  • Feature
  • Code style update (formatting, local variables)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Documentation content changes
  • Application (the showcase website) / infrastructure changes
  • Other... Please describe:

What is the current behavior?

Issue Number: N/A

  1. ngModel 的值是 index
  2. 自定义渲染用法不符合人体工学
<nz-segmented [nzLabelTemplate]="templateRef" [nzOptions]="options"></nz-segmented>
<ng-template #temp let-index="index">
  @switch (index) {
    @case (0) {
      <nz-avatar nzSrc="https://joeschmoe.io/api/v1/random"></nz-avatar>
      <div>User 1</div>
    }
    @case (1) {
      <nz-avatar nzText="K"></nz-avatar>
      <div>User 2</div>
    }
    @case (2) {
      <nz-avatar nzIcon="user"></nz-avatar>
      <div>User 3</div>
    }
  }
</ng-template>

What is the new behavior?

  1. 将 ngModel 的值改为 option.value
  2. 新增 [nz-segmented-item] 组件,提供直接的自定义渲染功能

QQ_1726415516692

<nz-segmented>
  <label nz-segmented-item nzValue="user1">
    <div [style.padding.px]="4">
      <nz-avatar nzSrc="https://joeschmoe.io/api/v1/random" />
      <div>User 1</div>
    </div>
  </label>
  <label nz-segmented-item nzValue="user2">
    <div [style.padding.px]="4">
      <nz-avatar nzText="K" [style.background]="'#f56a00'" />
      <div>User 2</div>
    </div>
  </label>
  <label nz-segmented-item nzValue="user3">
    <div [style.padding.px]="4">
      <nz-avatar nzIcon="user" [style.background]="'#87d068'" />
      <div>User 3</div>
    </div>
  </label>
</nz-segmented>

Does this PR introduce a breaking change?

  • Yes
  • No
  1. ngModel 的值从 index 修正为 option.value
  2. 不再需要 nzLabelTemplate input,将其移除
  3. nzValueChange 的类型从 EventEmitter<number> 修改为 EventEmitter<number | string>

Other information

Copy link

codecov bot commented Sep 15, 2024

Codecov Report

Attention: Patch coverage is 98.71795% with 1 line in your changes missing coverage. Please review.

Project coverage is 91.94%. Comparing base (a48979f) to head (1a090e8).
Report is 48 commits behind head on master.

Files with missing lines Patch % Lines
components/segmented/segmented.component.ts 97.50% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master    #8753      +/-   ##
==========================================
+ Coverage   91.93%   91.94%   +0.01%     
==========================================
  Files         536      538       +2     
  Lines       18455    18491      +36     
  Branches     2816     2821       +5     
==========================================
+ Hits        16967    17002      +35     
  Misses       1183     1183              
- Partials      305      306       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.


🚨 Try these New Features:

@HyperLife1119 HyperLife1119 force-pushed the feat/redesign-segmented branch 3 times, most recently from b7e3b63 to 9be825b Compare September 15, 2024 16:13
@HyperLife1119 HyperLife1119 added this to the v19 milestone Sep 15, 2024
@HyperLife1119 HyperLife1119 force-pushed the feat/redesign-segmented branch 2 times, most recently from 44cd190 to 4b9dc6f Compare September 16, 2024 05:55
@HyperLife1119 HyperLife1119 marked this pull request as ready for review September 16, 2024 10:14
@HyperLife1119 HyperLife1119 added 💔 Breaking Change This PR or the solution to this issue would introduce breaking changes PR: unreviewed PR: target-major Component: Segmented labels Sep 16, 2024
@HyperLife1119 HyperLife1119 force-pushed the feat/redesign-segmented branch from 4b9dc6f to 5b41686 Compare September 16, 2024 13:01
@HyperLife1119 HyperLife1119 force-pushed the feat/redesign-segmented branch 6 times, most recently from 92a673a to 334ed50 Compare October 8, 2024 01:43
@HyperLife1119 HyperLife1119 force-pushed the feat/redesign-segmented branch from 334ed50 to 1a090e8 Compare October 8, 2024 01:44
this.cdr.detectChanges();
});

effect(() => {
Copy link
Collaborator

Choose a reason for hiding this comment

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

👍 Select the first item by default if not set

Copy link
Collaborator

@Laffery Laffery left a comment

Choose a reason for hiding this comment

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

LGTM

@Laffery Laffery merged commit 4dc866c into NG-ZORRO:master Nov 22, 2024
9 of 10 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💔 Breaking Change This PR or the solution to this issue would introduce breaking changes Component: Segmented PR: reviewed-approved PR: target-major
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants