2023-09-23 20:02:04 +02:00
|
|
|
import type { NavItem } from '@nuxt/content/dist/runtime/types';
|
|
|
|
|
2023-07-09 20:09:50 +02:00
|
|
|
export function resolveObjPath(o: object, s: string): any {
|
|
|
|
s = s.replace(/\[(\w+)\]/g, '.$1'); // convert indexes to properties
|
|
|
|
s = s.replace(/^\./, ''); // strip a leading dot
|
|
|
|
var a = s.split('.');
|
|
|
|
for (var i = 0, n = a.length; i < n; ++i) {
|
|
|
|
var k = a[i];
|
|
|
|
if (k in o) {
|
|
|
|
o = o[k];
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return o;
|
2023-07-15 10:32:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export function isLocalPath(link: string, base?: string): boolean {
|
|
|
|
let baseUrl;
|
|
|
|
if (base) {
|
|
|
|
baseUrl = base;
|
|
|
|
} else {
|
|
|
|
const runtimeConfig = useRuntimeConfig();
|
|
|
|
baseUrl = runtimeConfig.public.baseUrl;
|
|
|
|
}
|
|
|
|
const rootDomain = new URL(baseUrl);
|
|
|
|
try {
|
|
|
|
const url = new URL(link);
|
|
|
|
if (!url.hostname || rootDomain.hostname === url.hostname) {
|
|
|
|
return true;
|
|
|
|
} else if (rootDomain.hostname !== url.hostname) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} catch(error) {
|
|
|
|
if(link !== '') {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-18 11:14:54 +02:00
|
|
|
}
|
|
|
|
|
2023-09-23 20:02:04 +02:00
|
|
|
export const findDeepObject = (obj: NavItem, condition: (v: NavItem) => boolean): NavItem | null => {
|
2023-07-18 11:14:54 +02:00
|
|
|
if (condition(obj)) {
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (obj?.children && obj.children.length > 0) {
|
|
|
|
for (let i = 0; i < obj.children.length; i++) {
|
|
|
|
const result = findDeepObject(obj.children[i], condition);
|
|
|
|
if (result) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
};
|