You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
142 lines
4.1 KiB
Plaintext
142 lines
4.1 KiB
Plaintext
import type { TabContentProps } from '@/types/types';
|
|
import type { DropMenu } from '@/types/types';
|
|
import type { ComputedRef } from 'vue';
|
|
|
|
import { computed, unref, reactive } from 'vue';
|
|
import { MenuEventEnum } from '@/types/types';
|
|
import { useMultipleTabStore } from '@/stores/multiTabs';
|
|
import { type RouteLocationNormalized, useRouter } from 'vue-router';
|
|
import { useTabs } from '@/hooks/web/useTabs';
|
|
|
|
export function useTabDropdown(tabContentProps: TabContentProps, getIsTabs?: ComputedRef<boolean>) {
|
|
const state = reactive({
|
|
current: null as Nullable<RouteLocationNormalized>,
|
|
currentIndex: 0,
|
|
});
|
|
|
|
const tabStore = useMultipleTabStore();
|
|
const { currentRoute } = useRouter();
|
|
const { refreshPage, closeAll, close, closeLeft, closeOther, closeRight } = useTabs();
|
|
|
|
const getTargetTab = computed((): RouteLocationNormalized => {
|
|
// return unref(getIsTabs) ? tabContentProps.tabItem : unref(currentRoute);
|
|
return tabContentProps.tabItem ;
|
|
});
|
|
|
|
/**
|
|
* @description: drop-down list
|
|
*/
|
|
const getDropMenuList = computed(() => {
|
|
if (!unref(getTargetTab)) {
|
|
return;
|
|
}
|
|
const { meta } = unref(getTargetTab);
|
|
const { path } = unref(currentRoute);
|
|
const tabList = tabStore.getTabList;
|
|
const curItem = state.current;
|
|
|
|
const isCurItem = curItem ? curItem.path === path : false;
|
|
|
|
// Refresh button
|
|
const index = state.currentIndex;
|
|
const refreshDisabled = !isCurItem;
|
|
// Close left
|
|
const closeLeftDisabled = index === 0 || (tabList.length === 2 && tabList[0].meta.affix == true);
|
|
|
|
const disabled = tabStore.getTabList.length === 1;
|
|
|
|
// Close right
|
|
const closeRightDisabled = (index === tabStore.getTabList.length - 1 && tabStore.getLastDragEndIndex >= 0);
|
|
|
|
//Close Other
|
|
const closeOtherDisabled = tabList.length === 1 || (index === 1 && tabList.length === 2 && tabList[0].meta.affix == true);
|
|
const dropMenuList: DropMenu[] = [
|
|
{
|
|
icon: 'ion:reload-sharp',
|
|
event: MenuEventEnum.REFRESH_PAGE,
|
|
text: '重新加载',
|
|
disabled: refreshDisabled,
|
|
},
|
|
{
|
|
icon: 'clarity:close-line',
|
|
event: MenuEventEnum.CLOSE_CURRENT,
|
|
text: '关闭',
|
|
disabled: !!meta?.affix || disabled,
|
|
divider: true,
|
|
},
|
|
{
|
|
icon: 'line-md:arrow-close-left',
|
|
event: MenuEventEnum.CLOSE_LEFT,
|
|
text: '关闭左侧标签',
|
|
disabled: closeLeftDisabled,
|
|
divider: false,
|
|
},
|
|
{
|
|
icon: 'line-md:arrow-close-right',
|
|
event: MenuEventEnum.CLOSE_RIGHT,
|
|
text: '关闭右侧标签',
|
|
disabled: closeRightDisabled,
|
|
divider: false,
|
|
},
|
|
{
|
|
icon: 'dashicons:align-center',
|
|
event: MenuEventEnum.CLOSE_OTHER,
|
|
text: '关闭其他标签',
|
|
disabled: closeOtherDisabled,
|
|
},
|
|
{
|
|
icon: 'clarity:minus-line',
|
|
event: MenuEventEnum.CLOSE_ALL,
|
|
text: '关闭所有标签',
|
|
disabled: disabled,
|
|
},
|
|
];
|
|
|
|
return dropMenuList;
|
|
});
|
|
|
|
function handleContextMenu(tabItem: RouteLocationNormalized) {
|
|
return (e: Event) => {
|
|
if (!tabItem) {
|
|
return;
|
|
}
|
|
e?.preventDefault();
|
|
const index = tabStore.getTabList.findIndex((tab) => tab.path === tabItem.path);
|
|
state.current = tabItem;
|
|
state.currentIndex = index;
|
|
};
|
|
}
|
|
|
|
// Handle right click event
|
|
function handleMenuEvent(menu: DropMenu): void {
|
|
const { event } = menu;
|
|
switch (event) {
|
|
case MenuEventEnum.REFRESH_PAGE:
|
|
// refresh page
|
|
refreshPage();
|
|
break;
|
|
// Close current
|
|
case MenuEventEnum.CLOSE_CURRENT:
|
|
close(tabContentProps.tabItem);
|
|
break;
|
|
// Close left
|
|
case MenuEventEnum.CLOSE_LEFT:
|
|
closeLeft();
|
|
break;
|
|
// Close right
|
|
case MenuEventEnum.CLOSE_RIGHT:
|
|
closeRight(tabContentProps.tabItem);
|
|
break;
|
|
// Close other
|
|
case MenuEventEnum.CLOSE_OTHER:
|
|
closeOther(tabContentProps.tabItem);
|
|
break;
|
|
// Close all
|
|
case MenuEventEnum.CLOSE_ALL:
|
|
closeAll();
|
|
break;
|
|
}
|
|
}
|
|
return { getDropMenuList, handleMenuEvent, handleContextMenu };
|
|
}
|