2023-01-29 15:26:45 +08:00
|
|
|
import { useRoute, useRouter } from "vue-router";
|
|
|
|
|
import { ref, watch, onMounted, onUnmounted, resolveComponent, nextTick, defineComponent } from "vue";
|
2024-11-08 23:43:19 +08:00
|
|
|
import * as _ from "lodash-es";
|
2023-01-29 15:26:45 +08:00
|
|
|
import BScroll from "better-scroll";
|
|
|
|
|
import "./index.less";
|
2023-03-16 19:24:01 +00:00
|
|
|
import { utils } from "@fast-crud/fast-crud";
|
2024-10-20 03:00:55 +08:00
|
|
|
import { routerUtils } from "/@/utils/util.router";
|
2023-01-29 15:26:45 +08:00
|
|
|
|
|
|
|
|
function useBetterScroll(enabled = true) {
|
2023-03-16 19:24:01 +00:00
|
|
|
const bsRef = ref(null);
|
|
|
|
|
const asideMenuRef = ref();
|
2023-01-29 15:26:45 +08:00
|
|
|
|
|
|
|
|
let onOpenChange = () => {};
|
|
|
|
|
if (enabled) {
|
|
|
|
|
function bsInit() {
|
|
|
|
|
if (asideMenuRef.value == null) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
bsRef.value = new BScroll(asideMenuRef.value, {
|
|
|
|
|
mouseWheel: true,
|
|
|
|
|
click: true,
|
|
|
|
|
momentum: false,
|
|
|
|
|
// 如果你愿意可以打开显示滚动条
|
|
|
|
|
scrollbar: {
|
|
|
|
|
fade: true,
|
|
|
|
|
interactive: false
|
|
|
|
|
},
|
|
|
|
|
bounce: false
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function bsDestroy() {
|
|
|
|
|
if (bsRef.value != null && bsRef.value.destroy) {
|
|
|
|
|
try {
|
|
|
|
|
bsRef.value.destroy();
|
|
|
|
|
} catch (e) {
|
|
|
|
|
// console.error(e);
|
|
|
|
|
} finally {
|
|
|
|
|
bsRef.value = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
bsInit();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
bsDestroy();
|
|
|
|
|
});
|
|
|
|
|
onOpenChange = async () => {
|
|
|
|
|
console.log("onOpenChange");
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
bsRef.value?.refresh();
|
|
|
|
|
}, 300);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
return {
|
|
|
|
|
onOpenChange,
|
|
|
|
|
asideMenuRef
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
export default defineComponent({
|
|
|
|
|
name: "FsMenu",
|
|
|
|
|
inheritAttrs: true,
|
|
|
|
|
props: {
|
|
|
|
|
menus: {},
|
|
|
|
|
expandSelected: {
|
|
|
|
|
default: false
|
|
|
|
|
},
|
|
|
|
|
scroll: {}
|
|
|
|
|
},
|
|
|
|
|
setup(props, ctx) {
|
2024-10-20 03:00:55 +08:00
|
|
|
async function onSelect(item: any) {
|
|
|
|
|
await routerUtils.open(item.key);
|
2023-01-29 15:26:45 +08:00
|
|
|
}
|
|
|
|
|
|
2023-03-16 19:24:01 +00:00
|
|
|
const fsIcon = resolveComponent("FsIcon");
|
2023-01-29 15:26:45 +08:00
|
|
|
|
2023-03-16 19:24:01 +00:00
|
|
|
const buildMenus = (children: any) => {
|
|
|
|
|
const slots: any = [];
|
2023-01-29 15:26:45 +08:00
|
|
|
if (children == null) {
|
|
|
|
|
return slots;
|
|
|
|
|
}
|
2023-03-16 19:24:01 +00:00
|
|
|
for (const sub of children) {
|
2024-10-05 01:46:25 +08:00
|
|
|
if (sub.meta?.show != null) {
|
|
|
|
|
if (sub.meta.show === false || (typeof sub.meta.show === "function" && !sub.meta.show())) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-03-16 19:24:01 +00:00
|
|
|
const title: any = () => {
|
2024-10-27 02:51:56 +08:00
|
|
|
const icon = sub.icon || sub?.meta?.icon;
|
|
|
|
|
if (icon) {
|
2023-03-16 19:24:01 +00:00
|
|
|
// @ts-ignore
|
2023-01-29 15:26:45 +08:00
|
|
|
return (
|
|
|
|
|
<div class={"menu-item-title"}>
|
2024-10-27 02:51:56 +08:00
|
|
|
<fsIcon class={"anticon"} icon={icon} />
|
2023-01-29 15:26:45 +08:00
|
|
|
<span>{sub.title}</span>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return sub.title;
|
|
|
|
|
};
|
|
|
|
|
if (sub.children && sub.children.length > 0) {
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
|
const subSlots = {
|
|
|
|
|
default: () => {
|
|
|
|
|
return buildMenus(sub.children);
|
|
|
|
|
},
|
|
|
|
|
title
|
|
|
|
|
};
|
|
|
|
|
function onTitleClick() {
|
|
|
|
|
if (sub.path && ctx.attrs.mode === "horizontal") {
|
|
|
|
|
open(sub.path);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-10-20 01:54:49 +08:00
|
|
|
slots.push(<a-sub-menu key={sub.path} v-slots={subSlots} onTitleClick={onTitleClick} />);
|
2023-01-29 15:26:45 +08:00
|
|
|
} else {
|
|
|
|
|
slots.push(
|
|
|
|
|
<a-menu-item key={sub.path} title={sub.title}>
|
|
|
|
|
{title}
|
|
|
|
|
</a-menu-item>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return slots;
|
|
|
|
|
};
|
|
|
|
|
const slots = {
|
|
|
|
|
default() {
|
|
|
|
|
return buildMenus(props.menus);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
const selectedKeys = ref([]);
|
|
|
|
|
const openKeys = ref([]);
|
|
|
|
|
const route = useRoute();
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
2023-03-16 19:24:01 +00:00
|
|
|
function openSelectedParents(fullPath: any) {
|
2023-01-29 15:26:45 +08:00
|
|
|
if (!props.expandSelected) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (props.menus == null) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-03-16 19:24:01 +00:00
|
|
|
const keys: any = [];
|
2023-01-29 15:26:45 +08:00
|
|
|
let changed = false;
|
2023-03-16 19:24:01 +00:00
|
|
|
utils.deepdash.forEachDeep(props.menus, (value: any, key: any, parent: any, context: any) => {
|
2023-01-29 15:26:45 +08:00
|
|
|
if (value == null) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (value.path === fullPath) {
|
|
|
|
|
_.forEach(context.parents, (item) => {
|
|
|
|
|
if (item.value instanceof Array) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
keys.push(item.value.index);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
if (keys.length > 0) {
|
2023-03-16 19:24:01 +00:00
|
|
|
for (const key of keys) {
|
2023-01-29 15:26:45 +08:00
|
|
|
if (openKeys.value.indexOf(key) === -1) {
|
|
|
|
|
openKeys.value.push(key);
|
|
|
|
|
changed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return changed;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-16 19:24:01 +00:00
|
|
|
const { asideMenuRef, onOpenChange } = useBetterScroll(props.scroll as any);
|
2023-01-29 15:26:45 +08:00
|
|
|
|
|
|
|
|
watch(
|
|
|
|
|
() => {
|
|
|
|
|
return route.fullPath;
|
|
|
|
|
},
|
|
|
|
|
(path) => {
|
|
|
|
|
// path = route.fullPath;
|
|
|
|
|
selectedKeys.value = [path];
|
|
|
|
|
const changed = openSelectedParents(path);
|
|
|
|
|
if (changed) {
|
|
|
|
|
onOpenChange();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
immediate: true
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
return () => {
|
|
|
|
|
const menu = (
|
|
|
|
|
<a-menu
|
|
|
|
|
mode={"inline"}
|
|
|
|
|
theme={"light"}
|
|
|
|
|
v-slots={slots}
|
|
|
|
|
onClick={onSelect}
|
|
|
|
|
onOpenChange={onOpenChange}
|
|
|
|
|
v-models={[
|
|
|
|
|
[openKeys.value, "openKeys"],
|
|
|
|
|
[selectedKeys.value, "selectedKeys"]
|
|
|
|
|
]}
|
|
|
|
|
{...ctx.attrs}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
const classNames = { "fs-menu-wrapper": true, "fs-menu-better-scroll": props.scroll };
|
|
|
|
|
return (
|
|
|
|
|
<div ref={asideMenuRef} class={classNames}>
|
|
|
|
|
{menu}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
});
|