Skip to content

Commit

Permalink
feat(table): add class to identify expanded and folded row (#3331)
Browse files Browse the repository at this point in the history
* feat(table): add class to identify expanded and folded row when expandRowKeys is defined

* chore: update snapshot

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
uyarn and github-actions[bot] committed Sep 24, 2024
1 parent fc01111 commit d363914
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 7 deletions.
2 changes: 2 additions & 0 deletions src/table/hooks/useClassName.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ export default function useClassName() {
tableExpandClasses: {
iconBox: `${classPrefix.value}-table__expand-box`,
iconCell: `${classPrefix.value}-table__expandable-icon-cell`,
rowExpanded: `${classPrefix.value}-table__row--expanded`,
rowFolded: `${classPrefix.value}-table__row--folded`,
row: `${classPrefix.value}-table__expanded-row`,
rowInner: `${classPrefix.value}-table__expanded-row-inner`,
expanded: `${classPrefix.value}-table__row--expanded`,
Expand Down
10 changes: 10 additions & 0 deletions src/table/hooks/useRowExpand.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
PrimaryTableCellParams,
TableExpandedRowParams,
RowEventContext,
RowClassNameParams,
} from '../type';
import useClassName from './useClassName';
import { useTNodeJSX } from '../../hooks/tnode';
Expand Down Expand Up @@ -38,6 +39,14 @@ export default function useRowExpand(props: TdPrimaryTableProps, context: SetupC

const isFirstColumnFixed = computed(() => props.columns?.[0]?.fixed === 'left');

const getExpandedRowClass = (params: RowClassNameParams<TableRowData>) => {
// 如果没有配置展开行,则不需要增加展开收起相关的类名
if (!showExpandedRow.value) return null;
const { row, rowKey } = params;
const currentRowKey = get(row, rowKey || 'id');
return tableExpandClasses[tExpandedRowKeys.value?.includes(currentRowKey) ? 'rowExpanded' : 'rowFolded'];
};

const onToggleExpand = (e: MouseEvent | KeyboardEvent, row: TableRowData) => {
props.expandOnRowClick && e.stopPropagation();
const currentId = get(row, props.rowKey || 'id');
Expand Down Expand Up @@ -117,5 +126,6 @@ export default function useRowExpand(props: TdPrimaryTableProps, context: SetupC
getExpandColumn,
renderExpandedRow,
onInnerExpandRowClick,
getExpandedRowClass,
};
}
9 changes: 7 additions & 2 deletions src/table/primary-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,12 @@ export default defineComponent({
const { tDisplayColumns, renderColumnController } = useColumnController(props, context);
// 展开/收起行功能
const {
showExpandedRow, showExpandIconColumn, getExpandColumn, renderExpandedRow, onInnerExpandRowClick,
showExpandedRow,
showExpandIconColumn,
getExpandColumn,
renderExpandedRow,
onInnerExpandRowClick,
getExpandedRowClass,
} = useRowExpand(props, context);
// 排序功能
const { renderSortIcon } = useSorter(props, context);
Expand Down Expand Up @@ -148,7 +153,7 @@ export default defineComponent({

// 如果想给 TR 添加类名,请在这里补充,不要透传更多额外 Props 到 BaseTable
const tRowClassNames = computed(() => {
const tClassNames = [props.rowClassName, selectedRowClassNames.value];
const tClassNames = [props.rowClassName, selectedRowClassNames.value, getExpandedRowClass];
return tClassNames.filter((v) => v);
});

Expand Down
7 changes: 6 additions & 1 deletion src/table/tr.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,12 @@ export default defineComponent({
const classes = computed(() => {
const customClasses = formatRowClassNames(
props.rowClassName,
{ row: props.row, rowIndex: props.rowIndex, type: 'body' },
{
row: props.row,
rowKey: props.rowKey,
rowIndex: props.rowIndex,
type: 'body',
},
props.rowKey || 'id',
);
return [trStyles.value?.classes, customClasses];
Expand Down
1 change: 1 addition & 0 deletions src/table/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1035,6 +1035,7 @@ export type TableRowAttributes<T> =
export interface RowClassNameParams<T> {
row: T;
rowIndex: number;
rowKey?: string;
type?: 'body' | 'foot';
}

Expand Down
6 changes: 3 additions & 3 deletions test/snap/__snapshots__/csr.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -38821,7 +38821,7 @@ exports[`csr snapshot test > csr test ./src/config-provider/_example/table.vue 1
class="t-table__body"
>
<tr
class=""
class="t-table__row--folded"
>
<td
class="t-table__expandable-icon-cell"
Expand Down Expand Up @@ -38860,7 +38860,7 @@ exports[`csr snapshot test > csr test ./src/config-provider/_example/table.vue 1
</td>
</tr>
<tr
class=""
class="t-table__row--folded"
>
<td
class="t-table__expandable-icon-cell"
Expand Down Expand Up @@ -38899,7 +38899,7 @@ exports[`csr snapshot test > csr test ./src/config-provider/_example/table.vue 1
</td>
</tr>
<tr
class=""
class="t-table__row--folded"
>
<td
class="t-table__expandable-icon-cell"
Expand Down
2 changes: 1 addition & 1 deletion test/snap/__snapshots__/ssr.test.js.snap

Large diffs are not rendered by default.

0 comments on commit d363914

Please sign in to comment.