jointrashposs/components/content/ProseA.vue
kakkokari-gtyih e4c8e16cf4 fix proseA
2023-12-25 00:57:53 +09:00

53 lines
1.6 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
import MiIco from '@/assets/svg/misskey_mi_bi.svg';
import ExtIco from 'bi/box-arrow-up-right.svg';
import { $URL, isRelative, joinURL } from 'ufo';
import { isLocalPath, sanitizeInternalPath } from '@/assets/js/misc';
const runtimeConfig = useRuntimeConfig();
const rootDomain = new $URL(runtimeConfig.public.baseUrl);
const { resolve } = useRouter();
const localePath = useGLocalePath();
const props = defineProps({
href: {
type: String,
default: ''
},
target: {
type: String,
default: undefined,
required: false
},
})
const realHref = ref(props.href);
const realTarget = ref(props.target);
const url = new $URL(realHref.value);
if (isLocalPath(realHref.value)) {
// 内部リンクの場合
if (/^\/[a-z]{2}\//.test(realHref.value)) {
realHref.value = sanitizeInternalPath(url.fullpath);
} else {
// 渡されたパスがローカライズされたルートでない場合はローカライズされたパスを返す
realHref.value = sanitizeInternalPath(localePath(url.fullpath));
}
// 相対パスの場合trailing slashがあるのでつくり下げる
if (isRelative(realHref.value)) {
realHref.value = joinURL('../', realHref.value);
}
} else if (rootDomain.host !== url.host) {
realTarget.value = '_blank';
}
</script>
<template>
<GNuxtLink :href="realHref" :target="realTarget">
<slot></slot>
<MiIco v-if="realHref.startsWith('x-mi-web://')" class="text-xs mx-1" />
<ExtIco v-else-if="realTarget === '_blank'" class="text-xs mx-1" />
</GNuxtLink>
</template>