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:table): support display and sorting of custom table columns #7966

Merged
merged 1 commit into from
Jul 16, 2023

Conversation

OriginRing
Copy link
Collaborator

@OriginRing OriginRing commented May 29, 2023

PR Checklist

Please check if your PR fulfills the following requirements:

PR Type

What kind of change does this PR introduce?

[ ] Bugfix
[x] 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

What is the new behavior?

Does this PR introduce a breaking change?

[ ] Yes
[ ] No

Other information

Sorry, something went wrong.

@OriginRing OriginRing requested a review from vthinkxie as a code owner May 29, 2023 07:47
@zorro-bot
Copy link

zorro-bot bot commented May 29, 2023

This preview will be available after the AzureCI is passed.

@codecov
Copy link

codecov bot commented May 29, 2023

Codecov Report

Merging #7966 (0f523ae) into master (6d31bde) will decrease coverage by 0.01%.
The diff coverage is 90.62%.

❗ Current head 0f523ae differs from pull request most recent head 222bb35. Consider uploading reports for the commit 222bb35 to get more accurate results

@@            Coverage Diff             @@
##           master    #7966      +/-   ##
==========================================
- Coverage   91.80%   91.80%   -0.01%     
==========================================
  Files         509      510       +1     
  Lines       17452    17483      +31     
  Branches     2774     2690      -84     
==========================================
+ Hits        16022    16050      +28     
- Misses       1136     1137       +1     
- Partials      294      296       +2     
Impacted Files Coverage Δ
components/table/src/table.module.ts 100.00% <ø> (ø)
...mponents/table/src/cell/custom-column.directive.ts 89.47% <89.47%> (ø)
components/table/src/table/table.component.ts 93.12% <90.00%> (-0.26%) ⬇️
components/table/src/table-data.service.ts 79.68% <100.00%> (+0.99%) ⬆️

@OriginRing OriginRing force-pushed the feat/custom-column branch 4 times, most recently from ec279b7 to e13afc9 Compare May 29, 2023 09:40
@@ -150,6 +151,7 @@ Style property
| `[nzLeft]` | Left pixels, used to fixed column to left, auto calc when set to `true` and disable fixed when `false` | `string \| boolean` | - |
| `[nzRight]` | Right pixels, used to fixed column to right, auto calc when set to `true` and disable fixed when `false` | `string \| boolean` | - |
| `[nzAlign]` | Specify how content is aligned | `'left' \| 'right' \| 'center'` | - |
| `[nzCustomColumnType]` | Set the display and position of columns | `string` | - |
Copy link
Contributor

Choose a reason for hiding this comment

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

nzCustomColumnType 可以提供简单的使用方式吗?类似于 th 的 nzWidth vs nzWidthConfig。

还有为什么这个命名是 type?我理解这个值相当于控制显示列的 ID 吧。可以换一个更贴合的语义话名字

constructor(private el: ElementRef, private renderer: Renderer2, private nzTableDataService: NzTableDataService<T>) {}

ngOnInit(): void {
this.nzTableDataService.listOfCustomColumn$.subscribe(item => {
Copy link
Contributor

Choose a reason for hiding this comment

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

takeUntil destroy

@@ -68,6 +68,7 @@ Table 组件同时具备了易用性和高度可定制性
| `[nzData]` | 数据数组 | `T[]` | - |
| `[nzFrontPagination]` | 是否在前端对数据进行分页,如果在服务器分页数据或者需要在前端显示全部数据时传入 false | `boolean` | `true` |
| `[nzTotal]` | 当前总数据,在服务器渲染时需要传入 | `number` | - |
| `[nzCustomColumn]` | 控制表格列的展示与排序 | `NzCustomColumn[]` | - |
Copy link
Contributor

@yangjunhan yangjunhan May 30, 2023

Choose a reason for hiding this comment

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

我觉得可以提供一个事件 callback,例如 nzCustomColumnChange,在表格 custom columns 重新展示或排序的时候 emit。

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

已添加

@@ -148,6 +149,7 @@ Table 组件同时具备了易用性和高度可定制性
| `[nzLeft]` | 左侧距离,用于固定左侧列,当为 `true` 时自动计算,为 `false` 时停止固定 | `string \| boolean` | `false` |
| `[nzRight]` | 右侧距离,用于固定右侧列,当为 `true` 时自动计算,为 `false` 时停止固定 | `string \| boolean` | `false` |
| `[nzAlign]` | 设置列内容的对齐方式 | `'left' \| 'right' \| 'center'` | - |
| `[nzCustomColumnType]` | 设置列的显示与位置 | `string` | - |
Copy link
Contributor

Choose a reason for hiding this comment

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

感觉这里的描述不准确

this.renderer.setStyle(this.el.nativeElement, 'display', 'block');
}
this.renderer.setStyle(this.el.nativeElement, 'order', i);
this.renderer.setStyle(this.el.nativeElement, 'flex', `1 1 ${v.width}px`);
Copy link
Contributor

Choose a reason for hiding this comment

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

width 可否支持百分比或者 fill / auto,否则在固定列宽的情况下,隐藏一部分列可能会导致 table 宽变窄?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

可以支持固定宽度,但是auto不能支持,同一列的宽度上下是独立的

@OriginRing OriginRing force-pushed the feat/custom-column branch 2 times, most recently from 7e9e2c2 to a8941ad Compare May 31, 2023 09:24

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@OriginRing OriginRing force-pushed the feat/custom-column branch from a8941ad to 222bb35 Compare June 25, 2023 07:10
Copy link
Member

@simplejason simplejason left a comment

Choose a reason for hiding this comment

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

LGTM

@simplejason simplejason merged commit d26870f into NG-ZORRO:master Jul 16, 2023
@OriginRing OriginRing deleted the feat/custom-column branch March 8, 2024 08:05
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.

None yet

3 participants