jointrashposs/composables/useGSwitchLocalePath.ts
kakkokari-gtyih 7dfcc6a8ff update deps
(一部のハッキーな手法が死んでいたのでその修正も)
2024-02-09 21:15:12 +09:00

12 lines
473 B
TypeScript

import type { LocaleCodes } from '@/assets/data/locales';
import { locales } from "@/assets/data/locales";
/** useSwitchLocalePathのラッパー関数。 */
export function useGSwitchLocalePath() {
const switchLocalePath = useSwitchLocalePath();
return (locale: LocaleCodes) => {
const _path = switchLocalePath(locale);
return new RegExp(`^/(${locales.map((v) => v.code).join('|')})/`).test(_path) ? _path : `/${locales[0].code}${_path}`;
}
}