2018-03-31 12:41:08 +00:00
|
|
|
<template>
|
2021-12-23 08:05:26 +00: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 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>
|
2021-11-19 10:36:12 +00:00
|
|
|
<span v-if="pathname != ''" class="pathname">{{ self ? pathname.substr(1) : pathname }}</span>
|
2018-03-31 12:41:08 +00:00
|
|
|
<span class="query">{{ query }}</span>
|
|
|
|
<span class="hash">{{ hash }}</span>
|
2021-04-20 14:22:59 +00:00
|
|
|
<i v-if="target === '_blank'" class="fas fa-external-link-square-alt icon"></i>
|
2019-05-24 10:19:43 +00:00
|
|
|
</component>
|
2018-03-31 12:41:08 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-12-23 08:05:26 +00:00
|
|
|
import { defineComponent, 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';
|
2018-11-08 18:44:35 +00:00
|
|
|
|
2022-03-26 17:22:31 +00:00
|
|
|
function safeURIDecode(str: string) {
|
|
|
|
try {
|
|
|
|
return decodeURIComponent(str);
|
|
|
|
} catch {
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default defineComponent({
|
2020-02-09 17:42:06 +00:00
|
|
|
props: {
|
|
|
|
url: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
rel: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
2021-12-23 08:05:26 +00:00
|
|
|
default: null,
|
2020-02-09 17:42:06 +00:00
|
|
|
}
|
|
|
|
},
|
2021-12-23 08:05:26 +00: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 12:41:08 +00:00
|
|
|
return {
|
2019-05-24 10:19:43 +00:00
|
|
|
local,
|
2021-12-23 08:05:26 +00:00
|
|
|
schema: url.protocol,
|
|
|
|
hostname: decodePunycode(url.hostname),
|
|
|
|
port: url.port,
|
2022-03-26 17:21:56 +00:00
|
|
|
pathname: safeURIDecode(url.pathname),
|
|
|
|
query: safeURIDecode(url.search),
|
|
|
|
hash: safeURIDecode(url.hash),
|
2020-02-10 11:51:17 +00:00
|
|
|
self: self,
|
|
|
|
attr: self ? 'to' : 'href',
|
|
|
|
target: self ? null : '_blank',
|
2021-12-23 08:05:26 +00:00
|
|
|
el,
|
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>
|