mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
version: v4.8.9
This commit is contained in:
parent
6975af2368
commit
8405cc5709
@ -1,5 +1,11 @@
|
|||||||
# CHANGE LOG
|
# CHANGE LOG
|
||||||
|
|
||||||
|
## 4.8.9
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
|
||||||
|
- 修复 `useCheckedRowKeys` 的 `getRows` 方法在异步分页获取数据的时候,会导致切换页面后勾选项丢失问题
|
||||||
|
|
||||||
## 4.8.8
|
## 4.8.8
|
||||||
|
|
||||||
## Feats
|
## Feats
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ray-template",
|
"name": "ray-template",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "4.8.8",
|
"version": "4.8.9",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.0.0 || >=20.0.0",
|
"node": "^18.0.0 || >=20.0.0",
|
||||||
|
@ -3,11 +3,7 @@ import { effectDispose } from '@/utils'
|
|||||||
|
|
||||||
import type { Recordable } from '@/types'
|
import type { Recordable } from '@/types'
|
||||||
import type { MaybeRef } from '@vueuse/core'
|
import type { MaybeRef } from '@vueuse/core'
|
||||||
import type {
|
import type { DataTableColumns, DataTableSelectionColumn } from 'naive-ui'
|
||||||
DataTableColumns,
|
|
||||||
DataTableColumn,
|
|
||||||
DataTableSelectionColumn,
|
|
||||||
} from 'naive-ui'
|
|
||||||
|
|
||||||
export type RowKey = string | number
|
export type RowKey = string | number
|
||||||
|
|
||||||
@ -99,6 +95,41 @@ const isMultiple = (columns: MaybeRef<DataTableColumns<any> | undefined>) => {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const matchRowsBySelectionKeys = <T extends Recordable>(
|
||||||
|
data: MaybeRef<T[] | undefined>,
|
||||||
|
keys: RowKey[],
|
||||||
|
currentRows: MaybeRef<T[]>,
|
||||||
|
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 组件的数据
|
* @param data 当前 DataTable 组件的数据
|
||||||
@ -160,11 +191,13 @@ const useCheckedRowKeys = <
|
|||||||
},
|
},
|
||||||
) => {
|
) => {
|
||||||
keysRef.value = keys
|
keysRef.value = keys
|
||||||
rowsRef.value = rows
|
rowsRef.value = unref(
|
||||||
|
matchRowsBySelectionKeys(data, keys, rowsRef, bindRowKey),
|
||||||
|
)
|
||||||
|
|
||||||
onChange?.(
|
onChange?.(
|
||||||
keys,
|
keys,
|
||||||
rows as any,
|
rowsRef.value,
|
||||||
meta as {
|
meta as {
|
||||||
row: any | undefined
|
row: any | undefined
|
||||||
action: Action
|
action: Action
|
||||||
|
Loading…
x
Reference in New Issue
Block a user