From 94f96181f3ccd439b4d4cad681d2c4d1739e6117 Mon Sep 17 00:00:00 2001 From: LiuHao <liuhaoai545@gmail> Date: 星期六, 22 四月 2023 01:05:11 +0800 Subject: [PATCH] add DarkMode --- src/layout/components/TagsView/index.vue | 394 +++++++++++++++++++++++++++---------------------------- 1 files changed, 194 insertions(+), 200 deletions(-) diff --git a/src/layout/components/TagsView/index.vue b/src/layout/components/TagsView/index.vue index 1f99623..d82ddf9 100644 --- a/src/layout/components/TagsView/index.vue +++ b/src/layout/components/TagsView/index.vue @@ -6,7 +6,7 @@ :key="tag.path" :data-path="tag.path" :class="isActive(tag) ? 'active' : ''" - :to="{ path: tag.path, query: tag.query, fullPath: tag.fullPath }" + :to="{ path: tag.path ? tag.path : '', query: tag.query, fullPath: tag.fullPath ? tag.fullPath : '' }" class="tags-view-item" :style="activeStyle(tag)" @click.middle="!isAffix(tag) ? closeSelectedTag(tag) : ''" @@ -19,43 +19,33 @@ </router-link> </scroll-pane> <ul v-show="visible" :style="{ left: left + 'px', top: top + 'px' }" class="contextmenu"> - <li @click="refreshSelectedTag(selectedTag)"> - <refresh-right style="width: 1em; height: 1em;" /> 鍒锋柊椤甸潰 - </li> - <li v-if="!isAffix(selectedTag)" @click="closeSelectedTag(selectedTag)"> - <close style="width: 1em; height: 1em;" /> 鍏抽棴褰撳墠 - </li> - <li @click="closeOthersTags"> - <circle-close style="width: 1em; height: 1em;" /> 鍏抽棴鍏朵粬 - </li> - <li v-if="!isFirstView()" @click="closeLeftTags"> - <back style="width: 1em; height: 1em;" /> 鍏抽棴宸︿晶 - </li> - <li v-if="!isLastView()" @click="closeRightTags"> - <right style="width: 1em; height: 1em;" /> 鍏抽棴鍙充晶 - </li> - <li @click="closeAllTags(selectedTag)"> - <circle-close style="width: 1em; height: 1em;" /> 鍏ㄩ儴鍏抽棴 - </li> + <li @click="refreshSelectedTag(selectedTag)"><refresh-right style="width: 1em; height: 1em;" /> 鍒锋柊椤甸潰</li> + <li v-if="!isAffix(selectedTag)" @click="closeSelectedTag(selectedTag)"><close style="width: 1em; height: 1em;" /> 鍏抽棴褰撳墠</li> + <li @click="closeOthersTags"><circle-close style="width: 1em; height: 1em;" /> 鍏抽棴鍏朵粬</li> + <li v-if="!isFirstView()" @click="closeLeftTags"><back style="width: 1em; height: 1em;" /> 鍏抽棴宸︿晶</li> + <li v-if="!isLastView()" @click="closeRightTags"><right style="width: 1em; height: 1em;" /> 鍏抽棴鍙充晶</li> + <li @click="closeAllTags(selectedTag)"><circle-close style="width: 1em; height: 1em;" /> 鍏ㄩ儴鍏抽棴</li> </ul> </div> </template> -<script setup> -import ScrollPane from './ScrollPane' +<script setup lang="ts"> +import ScrollPane from './ScrollPane.vue' import { getNormalPath } from '@/utils/ruoyi' -import useTagsViewStore from '@/store/modules/tagsView' +import useTagsViewStore from "@/store/modules/tagsView"; import useSettingsStore from '@/store/modules/settings' import usePermissionStore from '@/store/modules/permission' +import { ComponentInternalInstance } from "vue"; +import { RouteOption, TagView, RouteLocationRaw } from "vue-router"; const visible = ref(false); const top = ref(0); const left = ref(0); -const selectedTag = ref({}); -const affixTags = ref([]); -const scrollPaneRef = ref(null); +const selectedTag = ref<TagView>({}); +const affixTags = ref<TagView[]>([]); +const scrollPaneRef = ref(ScrollPane); -const { proxy } = getCurrentInstance(); +const { proxy } = getCurrentInstance() as ComponentInternalInstance; const route = useRoute(); const router = useRouter(); @@ -64,189 +54,191 @@ const theme = computed(() => useSettingsStore().theme); watch(route, () => { - addTags() - moveToCurrentTag() + addTags(); + moveToCurrentTag(); }) watch(visible, (value) => { - if (value) { - document.body.addEventListener('click', closeMenu) - } else { - document.body.removeEventListener('click', closeMenu) - } -}) -onMounted(() => { - initTags() - addTags() -}) - -function isActive(r) { - return r.path === route.path -} -function activeStyle(tag) { - if (!isActive(tag)) return {}; - return { - "background-color": theme.value, - "border-color": theme.value - }; -} -function isAffix(tag) { - return tag.meta && tag.meta.affix -} -function isFirstView() { - try { - return selectedTag.value.fullPath === '/index' || selectedTag.value.fullPath === visitedViews.value[1].fullPath - } catch (err) { - return false - } -} -function isLastView() { - try { - return selectedTag.value.fullPath === visitedViews.value[visitedViews.value.length - 1].fullPath - } catch (err) { - return false - } -} -function filterAffixTags(routes, basePath = '') { - let tags = [] - routes.forEach(route => { - if (route.meta && route.meta.affix) { - const tagPath = getNormalPath(basePath + '/' + route.path) - tags.push({ - fullPath: tagPath, - path: tagPath, - name: route.name, - meta: { ...route.meta } - }) - } - if (route.children) { - const tempTags = filterAffixTags(route.children, route.path) - if (tempTags.length >= 1) { - tags = [...tags, ...tempTags] - } - } - }) - return tags -} -function initTags() { - const res = filterAffixTags(routes.value); - affixTags.value = res; - for (const tag of res) { - // Must have tag name - if (tag.name) { - useTagsViewStore().addVisitedView(tag) - } - } -} -function addTags() { - const { name } = route - if (name) { - useTagsViewStore().addView(route) - if (route.meta.link) { - useTagsViewStore().addIframeView(route); - } - } - return false -} -function moveToCurrentTag() { - nextTick(() => { - for (const r of visitedViews.value) { - if (r.path === route.path) { - scrollPaneRef.value.moveToTarget(r); - // when query is different then update - if (r.fullPath !== route.fullPath) { - useTagsViewStore().updateVisitedView(route) - } - } - } - }) -} -function refreshSelectedTag(view) { - proxy.$tab.refreshPage(view); - if (route.meta.link) { - useTagsViewStore().delIframeView(route); - } -} -function closeSelectedTag(view) { - proxy.$tab.closePage(view).then(({ visitedViews }) => { - if (isActive(view)) { - toLastView(visitedViews, view) - } - }) -} -function closeRightTags() { - proxy.$tab.closeRightPage(selectedTag.value).then(visitedViews => { - if (!visitedViews.find(i => i.fullPath === route.fullPath)) { - toLastView(visitedViews) - } - }) -} -function closeLeftTags() { - proxy.$tab.closeLeftPage(selectedTag.value).then(visitedViews => { - if (!visitedViews.find(i => i.fullPath === route.fullPath)) { - toLastView(visitedViews) - } - }) -} -function closeOthersTags() { - router.push(selectedTag.value).catch(() => { }); - proxy.$tab.closeOtherPage(selectedTag.value).then(() => { - moveToCurrentTag() - }) -} -function closeAllTags(view) { - proxy.$tab.closeAllPage().then(({ visitedViews }) => { - if (affixTags.value.some(tag => tag.path === route.path)) { - return - } - toLastView(visitedViews, view) - }) -} -function toLastView(visitedViews, view) { - const latestView = visitedViews.slice(-1)[0] - if (latestView) { - router.push(latestView.fullPath) - } else { - // now the default is to redirect to the home page if there is no tags-view, - // you can adjust it according to your needs. - if (view.name === 'Dashboard') { - // to reload home page - router.replace({ path: '/redirect' + view.fullPath }) + if (value) { + document.body.addEventListener('click', closeMenu); } else { - router.push('/') + document.body.removeEventListener('click', closeMenu); } - } -} -function openMenu(tag, e) { - const menuMinWidth = 105 - const offsetLeft = proxy.$el.getBoundingClientRect().left // container margin left - const offsetWidth = proxy.$el.offsetWidth // container width - const maxLeft = offsetWidth - menuMinWidth // left boundary - const l = e.clientX - offsetLeft + 15 // 15: margin right +}) - if (l > maxLeft) { - left.value = maxLeft - } else { - left.value = l - } +const isActive = (r: TagView): boolean => { + return r.path === route.path; +} +const activeStyle = (tag: TagView) => { + if (!isActive(tag)) return {}; + return { + "background-color": theme.value, + "border-color": theme.value + }; +} +const isAffix = (tag: TagView) => { + return tag.meta && tag.meta.affix; +} +const isFirstView = () => { + try { + return selectedTag.value.fullPath === '/index' || selectedTag.value.fullPath === visitedViews.value[1].fullPath; + } catch (err) { + return false; + } +} +const isLastView = () => { + try { + return selectedTag.value.fullPath === visitedViews.value[visitedViews.value.length - 1].fullPath; + } catch (err) { + return false; + } +} +const filterAffixTags = (routes:RouteOption [], basePath = '') => { + let tags:TagView[] = [] + routes.forEach(route => { + if (route.meta && route.meta.affix) { + const tagPath = getNormalPath(basePath + '/' + route.path); + tags.push({ + fullPath: tagPath, + path: tagPath, + name: route.name, + meta: { ...route.meta } + }) + } + if (route.children) { + const tempTags = filterAffixTags(route.children, route.path); + if (tempTags.length >= 1) { + tags = [...tags, ...tempTags]; + } + } + }) + return tags +} +const initTags = () => { + const res = filterAffixTags(routes.value); + affixTags.value = res; + for (const tag of res) { + // Must have tag name + if (tag.name) { + useTagsViewStore().addVisitedView(tag); + } + } +} +const addTags = () => { + const { name } = route; + if (name) { + useTagsViewStore().addView(route); + if (route.meta.link) { + useTagsViewStore().addIframeView(route); + } + } + return false +} +const moveToCurrentTag = () => { + nextTick(() => { + for (const r of visitedViews.value) { + if (r.path === route.path) { + scrollPaneRef.value.moveToTarget(r); + // when query is different then update + if (r.fullPath !== route.fullPath) { + useTagsViewStore().updateVisitedView(route); + } + } + } + }) +} +const refreshSelectedTag = (view: TagView) => { + proxy?.$tab.refreshPage(view); + if (route.meta.link) { + useTagsViewStore().delIframeView(route); + } +} +const closeSelectedTag = (view: TagView) => { + proxy?.$tab.closePage(view).then(({ visitedViews }: any) => { + if (isActive(view)) { + toLastView(visitedViews, view); + } + }) +} +const closeRightTags = () => { + proxy?.$tab.closeRightPage(selectedTag.value).then(visitedViews => { + if (!visitedViews.find(i => i.fullPath === route.fullPath)) { + toLastView(visitedViews); + } + }) +} +const closeLeftTags = () => { + proxy?.$tab.closeLeftPage(selectedTag.value).then(visitedViews => { + if (!visitedViews.find(i => i.fullPath === route.fullPath)) { + toLastView(visitedViews); + } + }) +} +const closeOthersTags = () => { + router.push(selectedTag.value as RouteLocationRaw).catch(() => { }); + proxy?.$tab.closeOtherPage(selectedTag.value).then(() => { + moveToCurrentTag(); + }) +} +const closeAllTags = (view: TagView) => { + proxy?.$tab.closeAllPage().then(({ visitedViews }) => { + if (affixTags.value.some(tag => tag.path === route.path)) { + return; + } + toLastView(visitedViews, view); + }) +} +const toLastView = (visitedViews:TagView[], view?: TagView) => { + const latestView = visitedViews.slice(-1)[0]; + if (latestView) { + router.push(latestView.fullPath as string); + } else { + // now the default is to redirect to the home page if there is no tags-view, + // you can adjust it according to your needs. + if (view?.name === 'Dashboard') { + // to reload home page + router.replace({ path: '/redirect' + view?.fullPath }); + } else { + router.push('/'); + } + } +} +const openMenu = (tag: TagView, e: MouseEvent) => { + const menuMinWidth = 105; + const offsetLeft = proxy?.$el.getBoundingClientRect().left; // container margin left + const offsetWidth = proxy?.$el.offsetWidth; // container width + const maxLeft = offsetWidth - menuMinWidth; // left boundary + const l = e.clientX - offsetLeft + 15; // 15: margin right - top.value = e.clientY - visible.value = true - selectedTag.value = tag + if (l > maxLeft) { + left.value = maxLeft; + } else { + left.value = l; + } + + top.value = e.clientY + visible.value = true; + selectedTag.value = tag; } -function closeMenu() { - visible.value = false +const closeMenu = () => { + visible.value = false; } -function handleScroll() { - closeMenu() +const handleScroll = () => { + closeMenu(); } + + +onMounted(() => { + initTags(); + addTags(); +}) </script> -<style lang='scss' scoped> +<style lang="scss" scoped> .tags-view-container { height: 34px; width: 100%; - background: #fff; - border-bottom: 1px solid #d8dce5; + background-color: var(--el-bg-color); + border: 1px solid var(--el-border-color-light); box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04); .tags-view-wrapper { .tags-view-item { @@ -255,13 +247,15 @@ cursor: pointer; height: 26px; line-height: 26px; - border: 1px solid #d8dce5; - color: #495060; - background: #fff; + background-color: var(--el-bg-color); + border: 1px solid var(--el-border-color-light); padding: 0 8px; font-size: 12px; margin-left: 5px; margin-top: 4px; + &:hover { + color: var(--el-color-primary); + } &:first-of-type { margin-left: 15px; } @@ -287,7 +281,7 @@ } .contextmenu { margin: 0; - background: #fff; + background: var(--el-bg-color); z-index: 3000; position: absolute; list-style-type: none; @@ -335,4 +329,4 @@ } } } -</style> \ No newline at end of file +</style> -- Gitblit v1.9.3