\n \n\n \n \n \n\n\n\n\n\n","\n \n \n Leave this page\n \n \n\n\n\n\n","\n Try the new overview\n Try the new overview experience\n \n \n Back to legacy viewGo back to legacy view\n\n\n\n\n","\n \n \n
\n \n \n \n \n \n \n \n {{ pageTitle }}\n \n \n \n \n View only\n You can only view this page\n \n
\n \n\n\n\n\n","import type { IMenuItem, ISubjectRoutes } from \"@/components/infra/runai-layout/routes-model/routes-model\";\n\nexport const runaiHeaderUtil = {\n findLabelPath,\n};\n\nfunction findLabelPath(allSubjects: IMenuItem[], targetLabel: string) {\n for (const subject of allSubjects) {\n const result = search(subject.items, targetLabel);\n if (result) {\n return [subject.label, ...result];\n }\n }\n\n return null; // If not found in any subjects\n}\n\nfunction search(items: ISubjectRoutes[], targetLabel: string, path: string[] = []): string[] | null {\n for (const item of items) {\n const currentPath = [...path, item.label];\n\n // If the label matches, return the current path\n if (item.label === targetLabel) {\n return currentPath;\n }\n\n // Search in subItems or items recursively\n const subItems = item.subItems || item.subItems;\n if (subItems) {\n const result = search(subItems, targetLabel, currentPath);\n if (result) {\n return result;\n }\n }\n }\n return null; // If not found in current items\n}\n","\n \n \n
\n \n \n \n \n
\n \n
\n
\n \n
\n \n
\n \n
\n
\n
\n \n \n \n \n \n View only\n You can only view this page\n \n