jointrashposs/assets/js/misc/index.ts

76 lines
2.2 KiB
TypeScript
Raw Normal View History

2023-09-23 20:02:04 +02:00
import type { NavItem } from '@nuxt/content/dist/runtime/types';
import type { LocaleObject } from '@nuxtjs/i18n/dist/runtime/composables';
import { parseURL } from 'ufo';
2023-09-23 20:02:04 +02:00
/**
*
* @param o
* @param s
* @returns
*/
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;
}
/**
* URLがドメイン内部かどうかを判別
* @param link URL
* @param base
*/
export function isLocalPath(link: string, base?: string): boolean {
let baseUrl;
if (base) {
baseUrl = base;
} else {
const runtimeConfig = useRuntimeConfig();
baseUrl = runtimeConfig.public.baseUrl;
}
const rootDomain = parseURL(base);
const url = parseURL(link);
return (!url.host || rootDomain.host === url.host);
}
2023-11-25 17:48:16 +01:00
export function sanitizeInternalPath(path: string): string {
const runtimeConfig = useRuntimeConfig();
return path
.replace(/^(\/((?!ja)[a-z]{2}))?\/blog\/(.+)/g, '/ja/blog/$3')
.replace(new RegExp(`^(\/(${(runtimeConfig.public.locales as LocaleObject[]).map((l) => l.code).join('|')})\/?){2,}(.*)$`, 'g'), '$1$2');
2023-11-25 17:48:16 +01:00
}
/**
* Objectを合致する条件まで深掘り
* @param obj Object
* @param condition
* @returns Object
*/
2023-09-23 20:02:04 +02:00
export const findDeepObject = (obj: NavItem, condition: (v: NavItem) => boolean): NavItem | null => {
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;
};