egirlskey/packages/client/src/components/global/MkUrl.vue

90 lines
2.0 KiB
Vue
Raw Normal View History

<template>
<component
:is="self ? 'MkA' : 'a'" ref="el" class="ieqqeuvs _link" :[attr]="self ? props.url.substring(local.length) : props.url" :rel="rel" :target="target"
2021-02-06 15:11:16 +00:00
@contextmenu.stop="() => {}"
2020-02-09 17:59:00 +00:00
>
2019-05-25 00:04:16 +00:00
<template v-if="!self">
<span class="schema">{{ schema }}//</span>
<span class="hostname">{{ hostname }}</span>
2021-11-19 10:36:12 +00:00
<span v-if="port != ''" class="port">:{{ port }}</span>
2019-05-25 00:04:16 +00:00
</template>
2019-07-02 10:17:14 +00:00
<template v-if="pathname === '/' && self">
<span class="self">{{ hostname }}</span>
</template>
<span v-if="pathname != ''" class="pathname">{{ self ? pathname.substring(1) : pathname }}</span>
<span class="query">{{ query }}</span>
<span class="hash">{{ hash }}</span>
<i v-if="target === '_blank'" class="fas fa-external-link-square-alt icon"></i>
2019-05-24 10:19:43 +00:00
</component>
</template>
2022-08-31 14:12:22 +00:00
<script lang="ts" setup>
import { defineAsyncComponent, ref } from 'vue';
import { toUnicode as decodePunycode } from 'punycode/';
2021-11-11 17:02:25 +00:00
import { url as local } from '@/config';
import * as os from '@/os';
2021-12-23 08:05:26 +00:00
import { useTooltip } from '@/scripts/use-tooltip';
import { safeURIDecode } from '@/scripts/safe-uri-decode';
2022-03-26 17:22:31 +00:00
2022-08-31 14:12:22 +00:00
const props = defineProps<{
url: string;
rel?: string;
}>();
2021-12-23 08:05:26 +00:00
2022-08-31 14:12:22 +00:00
const self = props.url.startsWith(local);
const url = new URL(props.url);
const el = ref();
useTooltip(el, (showing) => {
os.popup(defineAsyncComponent(() => import('@/components/MkUrlPreviewPopup.vue')), {
showing,
url: props.url,
source: el.value,
}, {}, 'closed');
});
2022-08-31 14:12:22 +00:00
const schema = url.protocol;
const hostname = decodePunycode(url.hostname);
const port = url.port;
const pathname = safeURIDecode(url.pathname);
const query = safeURIDecode(url.search);
const hash = safeURIDecode(url.hash);
const attr = self ? 'to' : 'href';
const target = self ? null : '_blank';
</script>
<style lang="scss" scoped>
2020-02-08 06:47:16 +00:00
.ieqqeuvs {
word-break: break-all;
2019-07-02 10:17:14 +00:00
> .icon {
padding-left: 2px;
font-size: .9em;
}
2019-07-02 10:17:14 +00:00
> .self {
font-weight: bold;
}
2019-07-02 10:17:14 +00:00
> .schema {
opacity: 0.5;
}
2019-07-02 10:17:14 +00:00
> .hostname {
font-weight: bold;
}
2019-07-02 10:17:14 +00:00
> .pathname {
opacity: 0.8;
}
2019-07-02 10:17:14 +00:00
> .query {
opacity: 0.5;
}
2019-07-02 10:17:14 +00:00
> .hash {
font-style: italic;
}
}
</style>