|
@@ -4,13 +4,14 @@ import { computed, ComputedRef, nextTick, Ref, ref, toRaw, unref, watch } from '
|
|
|
import { ROW_KEY } from '../const';
|
|
|
import { omit } from 'lodash-es';
|
|
|
import { findNodeAll } from '/@/utils/helper/treeHelper';
|
|
|
+import type { Key } from 'ant-design-vue/lib/table/interface';
|
|
|
|
|
|
export function useRowSelection(
|
|
|
propsRef: ComputedRef<BasicTableProps>,
|
|
|
tableData: Ref<Recordable[]>,
|
|
|
emit: EmitType,
|
|
|
) {
|
|
|
- const selectedRowKeysRef = ref<string[]>([]);
|
|
|
+ const selectedRowKeysRef = ref<Key[]>([]);
|
|
|
const selectedRowRef = ref<Recordable[]>([]);
|
|
|
|
|
|
const getRowSelectionRef = computed((): TableRowSelection | null => {
|
|
@@ -21,7 +22,7 @@ export function useRowSelection(
|
|
|
|
|
|
return {
|
|
|
selectedRowKeys: unref(selectedRowKeysRef),
|
|
|
- onChange: (selectedRowKeys: string[]) => {
|
|
|
+ onChange: (selectedRowKeys: Key[]) => {
|
|
|
setSelectedRowKeys(selectedRowKeys);
|
|
|
},
|
|
|
...omit(rowSelection, ['onChange']),
|
|
@@ -30,7 +31,7 @@ export function useRowSelection(
|
|
|
|
|
|
watch(
|
|
|
() => unref(propsRef).rowSelection?.selectedRowKeys,
|
|
|
- (v: string[]) => {
|
|
|
+ (v?: Key[]) => {
|
|
|
setSelectedRowKeys(v);
|
|
|
},
|
|
|
);
|
|
@@ -62,8 +63,8 @@ export function useRowSelection(
|
|
|
return unref(getAutoCreateKey) ? ROW_KEY : rowKey;
|
|
|
});
|
|
|
|
|
|
- function setSelectedRowKeys(rowKeys: string[]) {
|
|
|
- selectedRowKeysRef.value = rowKeys;
|
|
|
+ function setSelectedRowKeys(rowKeys?: Key[]) {
|
|
|
+ selectedRowKeysRef.value = rowKeys || [];
|
|
|
const allSelectedRows = findNodeAll(
|
|
|
toRaw(unref(tableData)).concat(toRaw(unref(selectedRowRef))),
|
|
|
(item) => rowKeys?.includes(item[unref(getRowKey) as string]),
|
|
@@ -72,7 +73,7 @@ export function useRowSelection(
|
|
|
},
|
|
|
);
|
|
|
const trueSelectedRows: any[] = [];
|
|
|
- rowKeys?.forEach((key: string) => {
|
|
|
+ rowKeys?.forEach((key: Key) => {
|
|
|
const found = allSelectedRows.find((item) => item[unref(getRowKey) as string] === key);
|
|
|
found && trueSelectedRows.push(found);
|
|
|
});
|