2018-03-31 14:41:08 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<component
|
|
|
|
:is="self ? 'MkA' : 'a'"
|
|
|
|
ref="el"
|
|
|
|
class="ieqqeuvs _link"
|
|
|
|
:[attr]="self ? url.substr(local.length) : url"
|
|
|
|
:rel="rel"
|
|
|
|
:target="target"
|
|
|
|
@contextmenu.stop="() => {}"
|
|
|
|
@click.stop
|
|
|
|
>
|
|
|
|
<template v-if="!self">
|
|
|
|
<span class="schema">{{ schema }}//</span>
|
|
|
|
<span class="hostname">{{ hostname }}</span>
|
|
|
|
<span v-if="port != ''" class="port">:{{ port }}</span>
|
|
|
|
</template>
|
|
|
|
<template v-if="pathname === '/' && self">
|
|
|
|
<span class="self">{{ hostname }}</span>
|
|
|
|
</template>
|
|
|
|
<span v-if="pathname != ''" class="pathname">{{
|
|
|
|
self ? pathname.substr(1) : pathname
|
|
|
|
}}</span>
|
|
|
|
<span class="query">{{ query }}</span>
|
|
|
|
<span class="hash">{{ hash }}</span>
|
|
|
|
<i
|
|
|
|
v-if="target === '_blank'"
|
|
|
|
class="ph-arrow-square-out ph-bold ph-lg icon"
|
|
|
|
></i>
|
|
|
|
</component>
|
2018-03-31 14:41:08 +02:00
|
|
|
</template>
|
|
|
|
|
2022-08-31 16:12:22 +02:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { defineAsyncComponent, ref } from "vue";
|
|
|
|
import { toUnicode as decodePunycode } from "punycode/";
|
|
|
|
import { url as local } from "@/config";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { useTooltip } from "@/scripts/use-tooltip";
|
|
|
|
import { safeURIDecode } from "@/scripts/safe-uri-decode";
|
2022-03-26 18:22:31 +01:00
|
|
|
|
2022-08-31 16:12:22 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
url: string;
|
|
|
|
rel?: string;
|
|
|
|
}>();
|
2021-12-23 09:05:26 +01:00
|
|
|
|
2022-08-31 16:12:22 +02:00
|
|
|
const self = props.url.startsWith(local);
|
|
|
|
const url = new URL(props.url);
|
2023-04-08 02:01:42 +02:00
|
|
|
if (!["http:", "https:"].includes(url.protocol)) throw new Error("invalid url");
|
2022-08-31 16:12:22 +02:00
|
|
|
const el = ref();
|
|
|
|
|
|
|
|
useTooltip(el, (showing) => {
|
2023-04-08 02:01:42 +02:00
|
|
|
os.popup(
|
|
|
|
defineAsyncComponent(
|
|
|
|
() => import("@/components/MkUrlPreviewPopup.vue")
|
|
|
|
),
|
|
|
|
{
|
|
|
|
showing,
|
|
|
|
url: props.url,
|
|
|
|
source: el.value,
|
|
|
|
},
|
|
|
|
{},
|
|
|
|
"closed"
|
|
|
|
);
|
2018-03-31 14:41:08 +02:00
|
|
|
});
|
2022-08-31 16:12:22 +02: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);
|
2023-04-08 02:01:42 +02:00
|
|
|
const attr = self ? "to" : "href";
|
|
|
|
const target = self ? null : "_blank";
|
2018-03-31 14:41:08 +02:00
|
|
|
</script>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
2020-02-08 07:47:16 +01:00
|
|
|
.ieqqeuvs {
|
2020-01-29 20:37:25 +01:00
|
|
|
word-break: break-all;
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .icon {
|
|
|
|
padding-left: 2px;
|
2023-04-08 02:01:42 +02:00
|
|
|
font-size: 0.9em;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .self {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .schema {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .hostname {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .pathname {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .query {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .hash {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
</style>
|