diff --git a/CHANGELOG.md b/CHANGELOG.md index 19ba3edb..a1c74564 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGE LOG +## 4.8.9 + +## Fixes + +- 修复 `useCheckedRowKeys` 的 `getRows` 方法在异步分页获取数据的时候,会导致切换页面后勾选项丢失问题 + ## 4.8.8 ## Feats diff --git a/package.json b/package.json index 6b40fc0c..04760b60 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ray-template", "private": false, - "version": "4.8.8", + "version": "4.8.9", "type": "module", "engines": { "node": "^18.0.0 || >=20.0.0", diff --git a/src/components/RTable/src/hooks/useCheckedRowKeys.ts b/src/components/RTable/src/hooks/useCheckedRowKeys.ts index 2d145e95..6590f6de 100644 --- a/src/components/RTable/src/hooks/useCheckedRowKeys.ts +++ b/src/components/RTable/src/hooks/useCheckedRowKeys.ts @@ -3,11 +3,7 @@ import { effectDispose } from '@/utils' import type { Recordable } from '@/types' import type { MaybeRef } from '@vueuse/core' -import type { - DataTableColumns, - DataTableColumn, - DataTableSelectionColumn, -} from 'naive-ui' +import type { DataTableColumns, DataTableSelectionColumn } from 'naive-ui' export type RowKey = string | number @@ -99,6 +95,41 @@ const isMultiple = (columns: MaybeRef | undefined>) => { return true } +const matchRowsBySelectionKeys = ( + data: MaybeRef, + keys: RowKey[], + currentRows: MaybeRef, + bindRowKey: string, +) => { + const unrefData = unref(data) + + if (!unrefData) { + return currentRows + } + + return keys.reduce((pre, key) => { + const findByCurrentRows = unref(currentRows).findIndex( + (f) => f[bindRowKey] === key, + ) + + if (findByCurrentRows !== -1) { + pre.push(unref(currentRows)[findByCurrentRows]) + + return pre + } + + const findByData = unrefData.findIndex((f) => f[bindRowKey] === key) + + if (findByData !== -1) { + pre.push(unrefData[findByData]) + + return pre + } + + return pre + }, [] as T[]) +} + /** * * @param data 当前 DataTable 组件的数据 @@ -160,11 +191,13 @@ const useCheckedRowKeys = < }, ) => { keysRef.value = keys - rowsRef.value = rows + rowsRef.value = unref( + matchRowsBySelectionKeys(data, keys, rowsRef, bindRowKey), + ) onChange?.( keys, - rows as any, + rowsRef.value, meta as { row: any | undefined action: Action