Skip to content

Commit

Permalink
Merge pull request #2793 from VisActor/fix-sortState-fieldUndefined-e…
Browse files Browse the repository at this point in the history
…rror

Fix sort state field undefined error
  • Loading branch information
fangsmile authored Nov 11, 2024
2 parents 8d2ebcb + c49ec28 commit 9c6ce67
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "fix: sortState field undefined occor error\n\n",
"type": "none",
"packageName": "@visactor/vtable"
}
],
"packageName": "@visactor/vtable",
"email": "892739385@qq.com"
}
6 changes: 4 additions & 2 deletions packages/vtable/src/ListTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1112,8 +1112,10 @@ export class ListTable extends BaseTable implements ListTableAPI {

//重复逻辑抽取updateWidthHeight
if (sort !== undefined) {
this.internalProps.sortState = this.internalProps.multipleSort ? (Array.isArray(sort) ? sort : [sort]) : sort;
this.stateManager.setSortState((this as any).sortState as SortState);
if ((!Array.isArray(sort) && isValid(sort.field)) || Array.isArray(sort)) {
this.internalProps.sortState = this.internalProps.multipleSort ? (Array.isArray(sort) ? sort : [sort]) : sort;
this.stateManager.setSortState((this as any).sortState as SortState);
}
}
if (records) {
_setRecords(this, records);
Expand Down
8 changes: 4 additions & 4 deletions packages/vtable/src/state/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -519,15 +519,15 @@ export class StateManager {
prev.push({
field: item.field,
order: item.order,
row: column.startInTotal + this.table.internalProps.layoutMap.leftRowSeriesNumberColumnCount ?? 0,
col: column.level
row: column?.startInTotal + this.table.internalProps.layoutMap.leftRowSeriesNumberColumnCount ?? 0,
col: column?.level
} as any);
} else {
prev.push({
field: item.field,
order: item.order,
col: column.startInTotal + this.table.internalProps.layoutMap.leftRowSeriesNumberColumnCount ?? 0,
row: column.level
col: column?.startInTotal + this.table.internalProps.layoutMap.leftRowSeriesNumberColumnCount ?? 0,
row: column?.level
} as any);
}

Expand Down

0 comments on commit 9c6ce67

Please sign in to comment.