2018-03-31 12:41:08 +00:00
|
|
|
<template>
|
2022-07-13 09:11:54 +00:00
|
|
|
<component
|
2022-11-04 13:02:35 +00:00
|
|
|
: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>
|
2022-11-04 13:02:35 +00:00
|
|
|
<span v-if="pathname != ''" class="pathname">{{ self ? pathname.substring(1) : pathname }}</span>
|
2018-03-31 12:41:08 +00:00
|
|
|
<span class="query">{{ query }}</span>
|
|
|
|
<span class="hash">{{ hash }}</span>
|
2022-12-19 10:01:30 +00:00
|
|
|
<i v-if="target === '_blank'" class="ti ti-external-link icon"></i>
|
2019-05-24 10:19:43 +00:00
|
|
|
</component>
|
2018-03-31 12:41:08 +00:00
|
|
|
</template>
|
|
|
|
|
2022-08-31 14:12:22 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineAsyncComponent, ref } from 'vue';
|
2021-04-04 04:00:39 +00:00
|
|
|
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';
|
2022-07-13 09:11:54 +00:00
|
|
|
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');
|
2018-03-31 12:41:08 +00:00
|
|
|
});
|
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';
|
2018-03-31 12:41:08 +00:00
|
|
|
</script>
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-02-08 06:47:16 +00:00
|
|
|
.ieqqeuvs {
|
2020-01-29 19:37:25 +00:00
|
|
|
word-break: break-all;
|
2019-07-02 10:17:14 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .icon {
|
|
|
|
padding-left: 2px;
|
|
|
|
font-size: .9em;
|
|
|
|
}
|
2019-07-02 10:17:14 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .self {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2019-07-02 10:17:14 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .schema {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2019-07-02 10:17:14 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .hostname {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2019-07-02 10:17:14 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .pathname {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2019-07-02 10:17:14 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .query {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2019-07-02 10:17:14 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> .hash {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
}
|
2018-03-31 12:41:08 +00:00
|
|
|
</style>
|