iceshrimp-legacy/packages/client/src/components/global/MkUrl.vue

119 lines
2.5 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<component
:is="self ? 'MkA' : 'a'"
ref="el"
2023-07-05 03:37:50 +02:00
class="ieqqeuvs url _link"
:[attr]="self ? props.url.substring(local.length) : props.url"
2023-07-05 03:37:50 +02:00
:title="self ? props.url.substring(local.length) : props.url"
2023-04-08 02:01:42 +02:00
: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.substring(1) : pathname
2023-04-08 02:01:42 +02:00
}}</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>
</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(
2023-07-06 03:28:27 +02:00
() => import("@/components/MkUrlPreviewPopup.vue"),
2023-04-08 02:01:42 +02:00
),
{
showing,
url: props.url,
source: el.value,
},
{},
2023-07-06 03:28:27 +02:00
"closed",
2023-04-08 02:01:42 +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";
</script>
<style lang="scss" scoped>
2023-07-05 03:37:50 +02:00
.url {
2023-07-10 19:09:44 +02:00
text-decoration: none !important;
2023-07-11 01:02:31 +02:00
> span {
text-decoration: underline var(--fgTransparent);
text-decoration-thickness: 1px;
2023-07-11 01:02:31 +02:00
transition: text-decoration-color 0.2s;
}
2019-07-02 12:17:14 +02:00
> .icon {
padding-left: 2px;
2023-04-08 02:01:42 +02:00
font-size: 0.9em;
}
2019-07-02 12:17:14 +02:00
> .self {
font-weight: bold;
}
2019-07-02 12:17:14 +02:00
> .schema {
opacity: 0.5;
}
2019-07-02 12:17:14 +02:00
> .hostname {
font-weight: bold;
}
2019-07-02 12:17:14 +02:00
> .pathname {
opacity: 0.8;
}
2019-07-02 12:17:14 +02:00
> .query {
opacity: 0.5;
}
2019-07-02 12:17:14 +02:00
> .hash {
font-style: italic;
}
2023-07-11 01:02:31 +02:00
&:hover span {
text-decoration-color: var(--link);
}
}
</style>