FoundKey/packages/client/src/components/global/url.vue

92 lines
2.1 KiB
Vue
Raw Normal View History

<template>
<component
2022-08-20 04:27:16 +00:00
:is="self ? 'MkA' : 'a'" ref="el" class="ieqqeuvs _link" :[attr]="self ? url.slice(local.length) : 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-08-20 04:27:16 +00:00
<span v-if="pathname != ''" class="pathname">{{ self ? pathname.slice(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-20 04:27:16 +00:00
<script lang="ts" setup>
import { defineAsyncComponent } 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-20 04:27:16 +00:00
const props = withDefaults(defineProps<{
url: string;
rel?: string | null;
}>(), {
rel: null,
});
const self = props.url.startsWith(local);
const uri = new URL(props.url);
2022-08-20 04:27:16 +00:00
let el: HTMLElement | null = $ref(null);
let schema = $ref(uri.protocol);
let hostname = $ref(decodePunycode(uri.hostname));
let port = $ref(uri.port);
let pathname = $ref(safeURIDecode(uri.pathname));
let query = $ref(safeURIDecode(uri.search));
let hash = $ref(safeURIDecode(uri.hash));
2022-08-20 04:27:16 +00:00
let attr = $ref(self ? 'to' : 'href');
let target = $ref(self ? null : '_blank');
2021-12-23 08:05:26 +00:00
2022-08-20 04:27:16 +00:00
useTooltip($$(el), (showing) => {
os.popup(defineAsyncComponent(() => import('@/components/url-preview-popup.vue')), {
showing,
url: props.url,
source: el,
}, {}, 'closed');
});
</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>