fix: update

This commit is contained in:
xiaoxian521 2021-11-27 10:05:36 +08:00
parent 8c31ca1bad
commit b65b972353
7 changed files with 95 additions and 64 deletions

View File

@ -1,18 +1,3 @@
<script lang="ts">
let routerArrays: Array<RouteConfigs> = [
{
path: "/welcome",
parentPath: "/",
meta: {
title: "message.hshome",
icon: "el-icon-s-home",
i18n: true,
showLink: true
}
}
];
</script>
<script setup lang="ts"> <script setup lang="ts">
import { import {
ref, ref,
@ -33,15 +18,16 @@ import closeOther from "/@/assets/svg/close_other.svg";
import closeRight from "/@/assets/svg/close_right.svg"; import closeRight from "/@/assets/svg/close_right.svg";
import { emitter } from "/@/utils/mitt"; import { emitter } from "/@/utils/mitt";
import { templateRef, useResizeObserver, useDebounceFn } from "@vueuse/core";
import { transformI18n } from "/@/utils/i18n"; import { transformI18n } from "/@/utils/i18n";
import { storageLocal } from "/@/utils/storage"; import { storageLocal } from "/@/utils/storage";
import { useRoute, useRouter } from "vue-router"; import { useRoute, useRouter } from "vue-router";
import { RouteConfigs, tagsViewsType } from "../../types";
import { handleAliveRoute, delAliveRoutes } from "/@/router"; import { handleAliveRoute, delAliveRoutes } from "/@/router";
import { useSettingStoreHook } from "/@/store/modules/settings"; import { useSettingStoreHook } from "/@/store/modules/settings";
import { useMultiTagsStoreHook } from "/@/store/modules/multiTags";
import { usePermissionStoreHook } from "/@/store/modules/permission"; import { usePermissionStoreHook } from "/@/store/modules/permission";
import { toggleClass, removeClass, hasClass } from "/@/utils/operate"; import { toggleClass, removeClass, hasClass } from "/@/utils/operate";
import { RouteConfigs, multiTagsType, tagsViewsType } from "../../types"; import { templateRef, useResizeObserver, useDebounceFn } from "@vueuse/core";
const route = useRoute(); const route = useRoute();
const router = useRouter(); const router = useRouter();
@ -49,15 +35,18 @@ const translateX = ref<number>(0);
const activeIndex = ref<number>(-1); const activeIndex = ref<number>(-1);
let refreshButton = "refresh-button"; let refreshButton = "refresh-button";
const instance = getCurrentInstance(); const instance = getCurrentInstance();
let multiTags: multiTagsType;
const pureSetting = useSettingStoreHook(); const pureSetting = useSettingStoreHook();
const showTags = ref(storageLocal.getItem("tagsVal") || false); const showTags = ref(storageLocal.getItem("tagsVal") || false);
const tabDom = templateRef<HTMLElement | null>("tabDom", null); const tabDom = templateRef<HTMLElement | null>("tabDom", null);
const containerDom = templateRef<HTMLElement | null>("containerDom", null); const containerDom = templateRef<HTMLElement | null>("containerDom", null);
const scrollbarDom = templateRef<HTMLElement | null>("scrollbarDom", null); const scrollbarDom = templateRef<HTMLElement | null>("scrollbarDom", null);
let multiTags: ComputedRef<Array<RouteConfigs>> = computed(() => {
return useMultiTagsStoreHook()?.multiTags;
});
const dynamicTagView = () => { const dynamicTagView = () => {
const index = dynamicTagList.value.findIndex(item => { const index = multiTags.value.findIndex(item => {
return item.path === route.path; return item.path === route.path;
}); });
moveToView(index); moveToView(index);
@ -150,41 +139,38 @@ const tagsViews = ref<Array<tagsViewsType>>([
icon: close, icon: close,
text: "message.hscloseCurrentTab", text: "message.hscloseCurrentTab",
divided: false, divided: false,
disabled: routerArrays.length > 1 ? false : true, disabled: multiTags.value.length > 1 ? false : true,
show: true show: true
}, },
{ {
icon: closeLeft, icon: closeLeft,
text: "message.hscloseLeftTabs", text: "message.hscloseLeftTabs",
divided: true, divided: true,
disabled: routerArrays.length > 1 ? false : true, disabled: multiTags.value.length > 1 ? false : true,
show: true show: true
}, },
{ {
icon: closeRight, icon: closeRight,
text: "message.hscloseRightTabs", text: "message.hscloseRightTabs",
divided: false, divided: false,
disabled: routerArrays.length > 1 ? false : true, disabled: multiTags.value.length > 1 ? false : true,
show: true show: true
}, },
{ {
icon: closeOther, icon: closeOther,
text: "message.hscloseOtherTabs", text: "message.hscloseOtherTabs",
divided: true, divided: true,
disabled: routerArrays.length > 2 ? false : true, disabled: multiTags.value.length > 2 ? false : true,
show: true show: true
}, },
{ {
icon: closeAll, icon: closeAll,
text: "message.hscloseAllTabs", text: "message.hscloseAllTabs",
divided: false, divided: false,
disabled: routerArrays.length > 1 ? false : true, disabled: multiTags.value.length > 1 ? false : true,
show: true show: true
} }
]); ]);
const dynamicTagList: ComputedRef<Array<RouteConfigs>> = computed(() => {
return multiTags.routesInStorage;
});
// //
const showModel = ref(storageLocal.getItem("showModel") || "smart"); const showModel = ref(storageLocal.getItem("showModel") || "smart");
@ -200,7 +186,7 @@ let buttonTop = ref(0);
let currentSelect = ref({}); let currentSelect = ref({});
function dynamicRouteTag(value: string, parentPath: string): void { function dynamicRouteTag(value: string, parentPath: string): void {
const hasValue = multiTags.routesInStorage.some((item: any) => { const hasValue = multiTags.value.some(item => {
return item.path === value; return item.path === value;
}); });
@ -209,13 +195,12 @@ function dynamicRouteTag(value: string, parentPath: string): void {
arr.forEach((arrItem: any) => { arr.forEach((arrItem: any) => {
let pathConcat = parentPath + arrItem.path; let pathConcat = parentPath + arrItem.path;
if (arrItem.path === value || pathConcat === value) { if (arrItem.path === value || pathConcat === value) {
routerArrays.push({ useMultiTagsStoreHook().handleTags("push", {
path: value, path: value,
parentPath: `/${parentPath.split("/")[1]}`, parentPath: `/${parentPath.split("/")[1]}`,
meta: arrItem.meta, meta: arrItem.meta,
name: arrItem.name name: arrItem.name
}); });
multiTags.routesInStorage = routerArrays;
} else { } else {
if (arrItem.children && arrItem.children.length > 0) { if (arrItem.children && arrItem.children.length > 0) {
concatPath(arrItem.children, value, parentPath); concatPath(arrItem.children, value, parentPath);
@ -242,13 +227,17 @@ function onFresh() {
function deleteDynamicTag(obj: any, current: any, tag?: string) { function deleteDynamicTag(obj: any, current: any, tag?: string) {
// //
let delAliveRouteList = []; let delAliveRouteList = [];
let valueIndex: number = routerArrays.findIndex((item: any) => { let valueIndex: number = multiTags.value.findIndex((item: any) => {
return item.path === obj.path; return item.path === obj.path;
}); });
const spliceRoute = (start?: number, end?: number, other?: boolean): void => { const spliceRoute = (
startIndex?: number,
length?: number,
other?: boolean
): void => {
if (other) { if (other) {
multiTags.routesInStorage = [ useMultiTagsStoreHook().handleTags("equal", [
{ {
path: "/welcome", path: "/welcome",
parentPath: "/", parentPath: "/",
@ -260,11 +249,24 @@ function deleteDynamicTag(obj: any, current: any, tag?: string) {
} }
}, },
obj obj
]; ]);
routerArrays = multiTags.routesInStorage;
} else { } else {
delAliveRouteList = routerArrays.splice(start, end); delAliveRouteList = useMultiTagsStoreHook().handleTags("splice", "", {
multiTags.routesInStorage = routerArrays; startIndex,
length
});
useMultiTagsStoreHook().handleTags("equal", [
{
path: "/welcome",
parentPath: "/",
meta: {
title: "message.hshome",
icon: "el-icon-s-home",
i18n: true,
showLink: true
}
}
]);
} }
}; };
@ -273,12 +275,12 @@ function deleteDynamicTag(obj: any, current: any, tag?: string) {
} else if (tag === "left") { } else if (tag === "left") {
spliceRoute(1, valueIndex - 1); spliceRoute(1, valueIndex - 1);
} else if (tag === "right") { } else if (tag === "right") {
spliceRoute(valueIndex + 1, routerArrays.length); spliceRoute(valueIndex + 1, multiTags.value.length);
} else { } else {
// //
spliceRoute(valueIndex, 1); spliceRoute(valueIndex, 1);
} }
let newRoute: any = routerArrays.slice(-1); let newRoute = useMultiTagsStoreHook().handleTags("slice");
if (current === route.path) { if (current === route.path) {
// //
tag tag
@ -294,8 +296,8 @@ function deleteDynamicTag(obj: any, current: any, tag?: string) {
} else { } else {
// //
tag ? delAliveRoutes(delAliveRouteList) : delAliveRoutes([obj]); tag ? delAliveRoutes(delAliveRouteList) : delAliveRoutes([obj]);
if (!routerArrays.length) return; if (!multiTags.value.length) return;
let isHasActiveTag = routerArrays.some(item => { let isHasActiveTag = multiTags.value.some(item => {
return item.path === route.path; return item.path === route.path;
}); });
!isHasActiveTag && !isHasActiveTag &&
@ -365,11 +367,12 @@ function onClickDrop(key, item, selectRoute?: RouteConfigs) {
break; break;
case 5: case 5:
// //
routerArrays.splice(1, routerArrays.length); useMultiTagsStoreHook().handleTags("splice", "", {
multiTags.routesInStorage = routerArrays; startIndex: 1,
length: multiTags.value.length
});
usePermissionStoreHook().clearAllCachePage(); usePermissionStoreHook().clearAllCachePage();
router.push("/welcome"); router.push("/welcome");
break; break;
} }
setTimeout(() => { setTimeout(() => {
@ -400,8 +403,8 @@ function disabledMenus(value: boolean) {
// //
function showMenuModel(currentPath: string, refresh = false) { function showMenuModel(currentPath: string, refresh = false) {
let allRoute = unref(multiTags.routesInStorage); let allRoute = multiTags.value;
let routeLength = unref(multiTags.routesInStorage).length; let routeLength = multiTags.value.length;
// currentIndex1 // currentIndex1
let currentIndex = allRoute.findIndex(v => v.path === currentPath); let currentIndex = allRoute.findIndex(v => v.path === currentPath);
// currentIndexrouteLength-1 // currentIndexrouteLength-1
@ -452,7 +455,7 @@ function openMenu(tag, e) {
showMenuModel(tag.path); showMenuModel(tag.path);
} else if ( } else if (
// eslint-disable-next-line no-dupe-else-if // eslint-disable-next-line no-dupe-else-if
multiTags.routesInStorage.length === 2 && multiTags.value.length === 2 &&
route.path !== tag.path route.path !== tag.path
) { ) {
showMenus(true); showMenus(true);
@ -531,8 +534,6 @@ watch(
onBeforeMount(() => { onBeforeMount(() => {
if (!instance) return; if (!instance) return;
multiTags = instance.appContext.app.config.globalProperties.$storage;
routerArrays = multiTags.routesInStorage ?? routerArrays;
// //
showMenuModel(route.fullPath); showMenuModel(route.fullPath);
@ -569,7 +570,7 @@ onBeforeMount(() => {
> >
<div <div
:ref="'dynamic' + index" :ref="'dynamic' + index"
v-for="(item, index) in dynamicTagList" v-for="(item, index) in multiTags"
:key="index" :key="index"
:class="[ :class="[
'scroll-item is-closable', 'scroll-item is-closable',

View File

@ -32,12 +32,9 @@ const instance = getCurrentInstance().appContext.app.config.globalProperties;
// serverConfig.jsonstorage // serverConfig.jsonstorage
const layout = computed(() => { const layout = computed(() => {
// //
if ( if (!instance.$storage.tags || instance.$storage.tags.length === 0) {
!instance.$storage.routesInStorage ||
instance.$storage.routesInStorage.length === 0
) {
// eslint-disable-next-line vue/no-side-effects-in-computed-properties // eslint-disable-next-line vue/no-side-effects-in-computed-properties
instance.$storage.routesInStorage = routerArrays; instance.$storage.tags = routerArrays;
} }
// //
if (!instance.$storage.locale) { if (!instance.$storage.locale) {

View File

@ -25,7 +25,7 @@ export type RouteConfigs = {
}; };
export type multiTagsType = { export type multiTagsType = {
routesInStorage: Array<RouteConfigs>; tags: Array<RouteConfigs>;
}; };
export type tagsViewsType = { export type tagsViewsType = {

View File

@ -232,9 +232,7 @@ router.beforeEach((to, _from, next) => {
initRouter(name.username).then((router: Router) => { initRouter(name.username).then((router: Router) => {
router.push(to.path); router.push(to.path);
// 刷新页面更新标签栏与页面路由匹配 // 刷新页面更新标签栏与页面路由匹配
const localRoutes = storageLocal.getItem( const localRoutes = storageLocal.getItem("responsive-tags");
"responsive-routesInStorage"
);
const optionsRoutes = router.options?.routes; const optionsRoutes = router.options?.routes;
const newLocalRoutes = []; const newLocalRoutes = [];
optionsRoutes.forEach(ors => { optionsRoutes.forEach(ors => {
@ -245,7 +243,7 @@ router.beforeEach((to, _from, next) => {
}); });
}); });
storageLocal.setItem( storageLocal.setItem(
"responsive-routesInStorage", "responsive-tags",
uniqBy(newLocalRoutes, "path") uniqBy(newLocalRoutes, "path")
); );
}); });

View File

@ -1,11 +1,24 @@
import { defineStore } from "pinia"; import { defineStore } from "pinia";
import { store } from "/@/store"; import { store } from "/@/store";
import { getConfig } from "/@/config"; import { getConfig } from "/@/config";
// import { multiTagsType } from "/@/layout/types"; import { positionType } from "./types";
export const useMultiTagsStore = defineStore({ export const useMultiTagsStore = defineStore({
id: "pure-multiTags", id: "pure-multiTags",
state: () => ({ state: () => ({
// 存储标签页信息(路由信息)
multiTags: [
{
path: "/welcome",
parentPath: "/",
meta: {
title: "message.hshome",
icon: "el-icon-s-home",
i18n: true,
showLink: true
}
}
],
multiTagsCache: getConfig().MultiTagsCache multiTagsCache: getConfig().MultiTagsCache
}), }),
getters: { getters: {
@ -13,7 +26,24 @@ export const useMultiTagsStore = defineStore({
return this.multiTagsCache; return this.multiTagsCache;
} }
}, },
actions: {} actions: {
handleTags<T>(mode: string, value?: T, position?: positionType): any {
switch (mode) {
case "equal":
this.multiTags = value;
break;
case "push":
this.multiTags.push(value);
break;
case "splice":
this.multiTags.splice(position?.startIndex, position?.length);
break;
case "slice":
this.multiTags.slice(-1);
break;
}
}
}
}); });
export function useMultiTagsStoreHook() { export function useMultiTagsStoreHook() {

View File

@ -4,3 +4,8 @@ export type cacheType = {
mode: string; mode: string;
name?: RouteRecordName; name?: RouteRecordName;
}; };
export type positionType = {
startIndex?: number;
length?: number;
};

View File

@ -5,9 +5,9 @@ import Storage from "responsive-storage";
export const injectResponsiveStorage = (app: App, config: ServerConfigs) => { export const injectResponsiveStorage = (app: App, config: ServerConfigs) => {
app.use(Storage, { app.use(Storage, {
// 默认显示首页tag // 默认显示首页tag
routesInStorage: { tags: {
type: Array, type: Array,
default: Storage.getData(undefined, "routesInStorage") ?? [ default: Storage.getData(undefined, "tags") ?? [
{ {
path: "/welcome", path: "/welcome",
parentPath: "/", parentPath: "/",