Blame view

src/layouts/default/multitabs/index.tsx 4.73 KB
陈文彬 authored
1
2
3
4
import type { TabContentProps } from './tab.data';
import type { TabItem } from '/@/store/modules/tab';
import type { AppRouteRecordRaw } from '/@/router/types';
5
6
7
8
9
10
import {
  defineComponent,
  watch,
  computed,
  // ref,
  unref,
11
  // onMounted,
vben authored
12
  toRaw,
13
} from 'vue';
陈文彬 authored
14
15
16
17
18
19
20
21
22
23
24
25
import { Tabs } from 'ant-design-vue';
import TabContent from './TabContent';

import { useGo } from '/@/hooks/web/usePage';

import { TabContentEnum } from './tab.data';

import { useRouter } from 'vue-router';

import { tabStore } from '/@/store/modules/tab';
import { closeTab } from './useTabDropdown';
import router from '/@/router';
26
import { useTabs } from '/@/hooks/web/useTabs';
27
// import { PageEnum } from '/@/enums/pageEnum';
28
29
import './index.less';
30
import { userStore } from '/@/store/modules/user';
陈文彬 authored
31
32
33
34
35
36
export default defineComponent({
  name: 'MultiTabs',
  setup() {
    let isAddAffix = false;
    const go = useGo();
    const { currentRoute } = useRouter();
37
38
39
40
41
42
43
44
45
46
47
    const {
      // addTab,
      activeKeyRef,
    } = useTabs();
    // onMounted(() => {
    // const route = unref(currentRoute);
    // addTab(unref(currentRoute).path as PageEnum, false, {
    //   query: route.query,
    //   params: route.params,
    // });
    // });
48
陈文彬 authored
49
    // 当前激活tab
50
51
    // const activeKeyRef = ref<string>('');
陈文彬 authored
52
53
54
55
56
    // 当前tab列表
    const getTabsState = computed(() => {
      return tabStore.getTabsState;
    });
57
58
59
60
61
    if (!isAddAffix) {
      addAffixTabs();
      isAddAffix = true;
    }
陈文彬 authored
62
63
    watch(
      () => unref(currentRoute).path,
64
65
66
67
68
      () => {
        if (!userStore.getTokenState) return;
        const { path: rPath, fullPath } = unref(currentRoute);
        if (activeKeyRef.value !== (fullPath || rPath)) {
          activeKeyRef.value = fullPath || rPath;
陈文彬 authored
69
        }
70
71
        // 监听路由的话虽然可以,但是路由切换的时间会造成卡顿现象?
        // 使用useTab的addTab的话,当用户手动调转,需要自行调用addTab
72
73
74
75
76
77
78
79
80
81
        tabStore.commitAddTab((unref(currentRoute) as unknown) as AppRouteRecordRaw);

        // const { affix } = currentRoute.value.meta || {};
        // if (affix) return;
        // const hasInTab = tabStore.getTabsState.some(
        //   (item) => item.fullPath === currentRoute.value.fullPath
        // );
        // if (!hasInTab) {
        //   tabStore.commitAddTab((unref(currentRoute) as unknown) as AppRouteRecordRaw);
        // }
陈文彬 authored
82
83
      },
      {
84
        // flush: 'post',
陈文彬 authored
85
86
87
        immediate: true,
      }
    );
88
陈文彬 authored
89
90
91
92
93
94
95
96
    /**
     * @description: 过滤所有固定路由
     */
    function filterAffixTabs(routes: AppRouteRecordRaw[]) {
      const tabs: TabItem[] = [];
      routes &&
        routes.forEach((route) => {
          if (route.meta && route.meta.affix) {
vben authored
97
            tabs.push(toRaw(route) as TabItem);
陈文彬 authored
98
99
100
101
          }
        });
      return tabs;
    }
102
陈文彬 authored
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
    /**
     * @description: 设置固定tabs
     */
    function addAffixTabs(): void {
      const affixTabs = filterAffixTabs((router.getRoutes() as unknown) as AppRouteRecordRaw[]);
      for (const tab of affixTabs) {
        tabStore.commitAddTab(tab);
      }
    }

    // tab切换
    function handleChange(activeKey: any) {
      activeKeyRef.value = activeKey;
      go(activeKey, false);
    }
118
陈文彬 authored
119
120
121
    // 关闭当前ab
    function handleEdit(targetKey: string) {
      // 新增操作隐藏,目前只使用删除操作
122
123
124
      const index = unref(getTabsState).findIndex(
        (item) => (item.fullPath || item.path) === targetKey
      );
陈文彬 authored
125
126
127
128
129
130
131
132
133
134
135
      index !== -1 && closeTab(unref(getTabsState)[index]);
    }

    function renderQuick() {
      const tabContentProps: TabContentProps = {
        tabItem: (currentRoute as unknown) as AppRouteRecordRaw,
        type: TabContentEnum.EXTRA_TYPE,
        trigger: ['click', 'contextmenu'],
      };
      return (
        <span>
vben authored
136
          <TabContent {...(tabContentProps as any)} />
陈文彬 authored
137
138
139
140
141
        </span>
      );
    }
    function renderTabs() {
      return unref(getTabsState).map((item: TabItem) => {
142
143
        const key = item.query ? item.fullPath : item.path;
陈文彬 authored
144
        return (
145
          <Tabs.TabPane key={key} closable={!(item && item.meta && item.meta.affix)}>
陈文彬 authored
146
147
148
149
150
151
152
153
154
155
156
157
158
159
            {{
              tab: () => <TabContent tabItem={item} />,
            }}
          </Tabs.TabPane>
        );
      });
    }

    return () => {
      return (
        <div class="multiple-tabs">
          <Tabs
            type="editable-card"
            size="small"
vben authored
160
            animated={false}
陈文彬 authored
161
            hideAdd={true}
162
            tabBarGutter={4}
陈文彬 authored
163
164
165
166
167
168
169
170
171
172
173
174
175
176
            activeKey={unref(activeKeyRef)}
            onChange={handleChange}
            onEdit={handleEdit}
          >
            {{
              default: () => renderTabs(),
              tabBarExtraContent: () => renderQuick(),
            }}
          </Tabs>
        </div>
      );
    };
  },
});