import { pages, groups } from '@/pages.json' import { state } from '@/store/index.uts' type Group = { id : string, name : string, children : (Group | null)[] | null } type PageGroup = { id : string, name : string, index : number } type Page = { path : string, style : UTSJSONObject, group ?: string | null, } export type MenuItem = { id : string, name : string, index : number, path : string, style : UTSJSONObject, group ?: string | null, items : (MenuItem | null)[] } export function generateMenu(tabBarType : string) : (MenuItem | null)[] { let res : (MenuItem | null)[] = [] const tabBarPages = JSON.parse(JSON.stringify(pages))!.filter((page : Page) : boolean => page.path.startsWith(tabBarType) && hasPageGroup(page.group)) const groupTree = JSON.parse<(Group | null)[]>(JSON.stringify(groups)) tabBarPages.forEach(page => { let menuItemArr : (MenuItem | null)[] = res let currentMenu : MenuItem | null = null const groupIndexList = page.group!.split(',').map((index : string) : number => parseInt(index)) let currentGroups : (Group | null)[] | null = groupTree const pageGroups : PageGroup[] = [] groupIndexList.forEach((groupIndex, index) => { // 跳过第一层 component API CSS if (index > 0) { pageGroups.push({ id: currentGroups![groupIndex]!.id, name: currentGroups![groupIndex]!.name, index: groupIndex } as PageGroup) } currentGroups = currentGroups![groupIndex]!.children }) const lastGroup = pageGroups[pageGroups.length - 1] let hasPageGroup = false if (page.path.endsWith(camelToDash(lastGroup.name)) && pageGroups.length > 1) { hasPageGroup = true pageGroups.pop() } const groupLength = pageGroups.length pageGroups.forEach((group, groupIndex) => { const { index, id, name } = group const validIndex = index fillMenuArrayWithNull(menuItemArr, validIndex) if (menuItemArr[validIndex] == null) { menuItemArr[validIndex] = { id: id.split('.').slice(-1)[0], name, index: validIndex, path: '', style: {}, group: '', items: [] as (MenuItem | null)[], } as MenuItem } currentMenu = menuItemArr[validIndex] if (groupIndex < groupLength - 1) { menuItemArr = menuItemArr[validIndex]!.items as (MenuItem | null)[] } }) const pageMenuItem : MenuItem = { id: page.path, name: page.style["navigationBarTitleText"] as string, index: lastGroup.index, path: page.path, style: page.style, group: page.group, items: [] as (MenuItem | null)[], } if (hasPageGroup) { const pageIndex = lastGroup.index fillMenuArrayWithNull(currentMenu!.items, pageIndex) if (currentMenu!.items[pageIndex] == null) { currentMenu!.items[pageIndex] = pageMenuItem } else { currentMenu!.items.push(pageMenuItem) } } else { currentMenu!.items.push(pageMenuItem) } }) return removeNullItem(res) } function hasPageGroup(value ?: string | null) : boolean { // #ifdef APP-ANDROID return value !== null // #endif // #ifndef APP-ANDROID return !!value // #endif } function isNumber(value : number | null) : boolean { // #ifdef APP-ANDROID return value !== null // #endif // #ifndef APP-ANDROID return typeof value === 'number' // #endif } function camelToDash(camelStr : string) : string { return camelStr.replace(/([A-Z])/g, '-$1').toLowerCase() } function fillMenuArrayWithNull(arr : (MenuItem | null)[], index : number) : void { const len = arr.length for (let i = 0; i <= index - (len - 1); i++) { arr.push(null) } } function removeNullItem(arr : (MenuItem | null)[]) : (MenuItem | null)[] { const res = arr.filter((item : MenuItem | null) : boolean => item !== null) res.forEach(menuItem => { addSetTabBarPage(menuItem!) // #ifdef APP-ANDROID menuItem.items = removeNullItem(menuItem.items) // #endif // #ifndef APP-ANDROID menuItem!.items = removeNullItem(menuItem!.items) // #endif }) return res } function addSetTabBarPage(menuItem : MenuItem) { const { id, name } = menuItem if (id == 'page' && name == '页面和路由' && !state.noMatchLeftWindow) { menuItem.items.push({ id: 'set-tab-bar', name: '设置 TabBar', index: 0, path: 'set-tab-bar', style: { navigationBarTitleText: '设置 TabBar' }, group: null, items: [] } as MenuItem) } }