123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <div :class="getWrapClass">
- <Tabs
- type="editable-card"
- size="small"
- :animated="false"
- :hideAdd="true"
- :tabBarGutter="3"
- :activeKey="activeKeyRef"
- @change="handleChange"
- @edit="handleEdit"
- >
- <template v-for="item in getTabsState" :key="item.query ? item.fullPath : item.path">
- <TabPane :closable="!(item && item.meta && item.meta.affix)">
- <template #tab>
- <TabContent :tabItem="item" />
- </template>
- </TabPane>
- </template>
- <template #tabBarExtraContent v-if="getShowRedo || getShowQuick">
- <TabRedo v-if="getShowRedo" />
- <QuickButton v-if="getShowQuick" />
- <FoldButton v-if="getShowFold" />
- </template>
- </Tabs>
- </div>
- </template>
- <script lang="ts">
- import { defineComponent, computed, unref, ref } from 'vue';
- import { Tabs } from 'ant-design-vue';
- import TabContent from './components/TabContent.vue';
- import type { RouteLocationNormalized } from 'vue-router';
- import { useGo } from '/@/hooks/web/usePage';
- import { tabStore } from '/@/store/modules/tab';
- import { userStore } from '/@/store/modules/user';
- import { initAffixTabs, useTabsDrag } from './useMultipleTabs';
- import { REDIRECT_NAME } from '/@/router/constant';
- import { useDesign } from '/@/hooks/web/useDesign';
- import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';
- import { listenerLastChangeTab } from '/@/logics/mitt/tabChange';
- import { useMultipleTabSetting } from '/@/hooks/setting/useMultipleTabSetting';
- import router from '/@/router';
- export default defineComponent({
- name: 'MultipleTabs',
- components: {
- QuickButton: createAsyncComponent(() => import('./components/QuickButton.vue')),
- TabRedo: createAsyncComponent(() => import('./components/TabRedo.vue')),
- FoldButton: createAsyncComponent(() => import('./components/FoldButton.vue')),
- Tabs,
- TabPane: Tabs.TabPane,
- TabContent,
- },
- setup() {
- const affixTextList = initAffixTabs();
- const activeKeyRef = ref('');
- useTabsDrag(affixTextList);
- const { prefixCls } = useDesign('multiple-tabs');
- const go = useGo();
- const { getShowQuick, getShowRedo, getShowFold } = useMultipleTabSetting();
- const getTabsState = computed(() => {
- return tabStore.getTabsState.filter((item) => !item.meta?.hideTab);
- });
- const unClose = computed(() => unref(getTabsState).length === 1);
- const getWrapClass = computed(() => {
- return [
- prefixCls,
- {
- [`${prefixCls}--hide-close`]: unref(unClose),
- },
- ];
- });
- listenerLastChangeTab((route) => {
- const { name } = route;
- if (name === REDIRECT_NAME || !route || !userStore.getTokenState) return;
- const { path, fullPath, meta = {} } = route;
- const { currentActiveMenu, hideTab } = meta;
- const isHide = !hideTab ? null : currentActiveMenu;
- const p = isHide || fullPath || path;
- if (activeKeyRef.value !== p) {
- activeKeyRef.value = p as string;
- }
- if (isHide) {
- const findParentRoute = router
- .getRoutes()
- .find((item) => item.path === currentActiveMenu);
- findParentRoute &&
- tabStore.addTabAction((findParentRoute as unknown) as RouteLocationNormalized);
- } else {
- tabStore.addTabAction(unref(route));
- }
- });
- function handleChange(activeKey: any) {
- activeKeyRef.value = activeKey;
- go(activeKey, false);
- }
- // Close the current tab
- function handleEdit(targetKey: string) {
- // Added operation to hide, currently only use delete operation
- if (unref(unClose)) return;
- tabStore.closeTabByKeyAction(targetKey);
- }
- return {
- prefixCls,
- unClose,
- getWrapClass,
- handleEdit,
- handleChange,
- activeKeyRef,
- getTabsState,
- getShowQuick,
- getShowRedo,
- getShowFold,
- };
- },
- });
- </script>
- <style lang="less">
- @import './index.less';
- </style>
|