You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
import { useRoute } from 'vue-router';
|
|
import { Ref } from '@vue/reactivity';
|
|
import { getCurrentInstance } from 'vue';
|
|
|
|
export function useTableSession(formModel: Recordable, formParamsRef: Ref, defaultPageRef: Ref, treeParamsRef?: Ref) {
|
|
const instance = getCurrentInstance();
|
|
const { enableTableSession } = instance?.props || {};
|
|
const route = useRoute();
|
|
|
|
const { fullPath, name } = route;
|
|
const tableSession = JSON.parse(sessionStorage[fullPath] || '{}');
|
|
|
|
function initTableSession() {
|
|
if (!enableTableSession) return;
|
|
tableSession['name'] = name;
|
|
if (tableSession['formModel']) {
|
|
Object.assign(formModel, tableSession['formModel']);
|
|
}
|
|
if (tableSession['formParams']) {
|
|
formParamsRef.value = tableSession['formParams'];
|
|
}
|
|
if (tableSession['defaultPage']) {
|
|
defaultPageRef.value = tableSession['defaultPage'];
|
|
}
|
|
if (tableSession['treeParams'] && treeParamsRef) {
|
|
treeParamsRef.value = tableSession['treeParams'];
|
|
}
|
|
}
|
|
|
|
function setTableSession(page: number) {
|
|
if (!enableTableSession) return;
|
|
tableSession['formModel'] = formModel;
|
|
tableSession['formParams'] = formParamsRef.value;
|
|
tableSession['defaultPage'] = page;
|
|
tableSession['treeParams'] = treeParamsRef?.value;
|
|
sessionStorage[fullPath] = JSON.stringify(tableSession);
|
|
}
|
|
|
|
initTableSession();
|
|
|
|
return { setTableSession };
|
|
}
|
|
|