|
@@ -7,6 +7,7 @@ interface Options {
|
|
|
extraFilterValueMap?: MaybeRef<{ [x: string]: string[] }> // 表头之外的额外筛选条件
|
|
|
defaultSortRuleMap?: { [x: string]: string } // 默认排序
|
|
|
extraSortRuleMap?: MaybeRef<{ [x: string]: string }> // 表头之外的额外排序条件
|
|
|
+ sortMode?: 'single' | 'multiple'
|
|
|
}
|
|
|
|
|
|
export function useTableFilterAndSort(
|
|
@@ -14,6 +15,10 @@ export function useTableFilterAndSort(
|
|
|
tableData: Ref<CommonData[]>,
|
|
|
options: Options = {}
|
|
|
) {
|
|
|
+ if (!options.sortMode) {
|
|
|
+ options.sortMode = 'single'
|
|
|
+ }
|
|
|
+
|
|
|
watch([tableColumns, tableData], ([columns, records]) => {
|
|
|
const tempSets = {}
|
|
|
columns.forEach(column => {
|
|
@@ -82,10 +87,21 @@ export function useTableFilterAndSort(
|
|
|
return _.orderBy(filtered, sortRules[0], sortRules[1])
|
|
|
})
|
|
|
|
|
|
+ const sortChangeHandler = (currentKey: string) => {
|
|
|
+ if (options.sortMode === 'single') {
|
|
|
+ Object.getOwnPropertyNames(sortRuleMap).forEach(key => {
|
|
|
+ if (currentKey !== key) {
|
|
|
+ delete sortRuleMap[key]
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
return {
|
|
|
filterOptionMap,
|
|
|
filterValueMap,
|
|
|
sortRuleMap,
|
|
|
+ sortChangeHandler,
|
|
|
dealedTableData,
|
|
|
}
|
|
|
}
|