2018-03-31 14:41:08 +02:00
|
|
|
<template>
|
2021-12-23 09:05:26 +01:00
|
|
|
<component :is="self ? 'MkA' : 'a'" ref="el" class="ieqqeuvs _link" :[attr]="self ? url.substr(local.length) : url" :rel="rel" :target="target"
|
2021-02-06 16:11:16 +01:00
|
|
|
@contextmenu.stop="() => {}"
|
2020-02-09 18:59:00 +01:00
|
|
|
>
|
2019-05-25 02:04:16 +02:00
|
|
|
<template v-if="!self">
|
|
|
|
<span class="schema">{{ schema }}//</span>
|
|
|
|
<span class="hostname">{{ hostname }}</span>
|
2021-11-19 11:36:12 +01:00
|
|
|
<span v-if="port != ''" class="port">:{{ port }}</span>
|
2019-05-25 02:04:16 +02:00
|
|
|
</template>
|
2019-07-02 12:17:14 +02:00
|
|
|
<template v-if="pathname === '/' && self">
|
|
|
|
<span class="self">{{ hostname }}</span>
|
|
|
|
</template>
|
2021-11-19 11:36:12 +01:00
|
|
|
<span v-if="pathname != ''" class="pathname">{{ self ? pathname.substr(1) : pathname }}</span>
|
2018-03-31 14:41:08 +02:00
|
|
|
<span class="query">{{ query }}</span>
|
|
|
|
<span class="hash">{{ hash }}</span>
|
2021-04-20 16:22:59 +02:00
|
|
|
<i v-if="target === '_blank'" class="fas fa-external-link-square-alt icon"></i>
|
2019-05-24 12:19:43 +02:00
|
|
|
</component>
|
2018-03-31 14:41:08 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-12-23 09:05:26 +01:00
|
|
|
import { defineComponent, ref } from 'vue';
|
2021-04-04 06:00:39 +02:00
|
|
|
import { toUnicode as decodePunycode } from 'punycode/';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { url as local } from '@/config';
|
|
|
|
import * as os from '@/os';
|
2021-12-23 09:05:26 +01:00
|
|
|
import { useTooltip } from '@/scripts/use-tooltip';
|
2018-11-08 19:44:35 +01:00
|
|
|
|
2022-03-26 18:22:31 +01:00
|
|
|
function safeURIDecode(str: string) {
|
|
|
|
try {
|
|
|
|
return decodeURIComponent(str);
|
|
|
|
} catch {
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-02-09 18:42:06 +01:00
|
|
|
props: {
|
|
|
|
url: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
rel: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
2021-12-23 09:05:26 +01:00
|
|
|
default: null,
|
2020-02-09 18:42:06 +01:00
|
|
|
}
|
|
|
|
},
|
2021-12-23 09:05:26 +01:00
|
|
|
setup(props) {
|
|
|
|
const self = props.url.startsWith(local);
|
|
|
|
const url = new URL(props.url);
|
|
|
|
const el = ref();
|
|
|
|
|
|
|
|
useTooltip(el, (showing) => {
|
|
|
|
os.popup(import('@/components/url-preview-popup.vue'), {
|
|
|
|
showing,
|
|
|
|
url: props.url,
|
|
|
|
source: el.value,
|
|
|
|
}, {}, 'closed');
|
|
|
|
});
|
|
|
|
|
2018-03-31 14:41:08 +02:00
|
|
|
return {
|
2019-05-24 12:19:43 +02:00
|
|
|
local,
|
2021-12-23 09:05:26 +01:00
|
|
|
schema: url.protocol,
|
|
|
|
hostname: decodePunycode(url.hostname),
|
|
|
|
port: url.port,
|
2022-03-26 18:21:56 +01:00
|
|
|
pathname: safeURIDecode(url.pathname),
|
|
|
|
query: safeURIDecode(url.search),
|
|
|
|
hash: safeURIDecode(url.hash),
|
2020-02-10 12:51:17 +01:00
|
|
|
self: self,
|
|
|
|
attr: self ? 'to' : 'href',
|
|
|
|
target: self ? null : '_blank',
|
2021-12-23 09:05:26 +01:00
|
|
|
el,
|
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;
|
|
|
|
font-size: .9em;
|
|
|
|
}
|
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>
|