2018-03-31 14:41:08 +02:00
|
|
|
<template>
|
2020-02-10 12:51:17 +01:00
|
|
|
<component :is="self ? 'router-link' : 'a'" class="ieqqeuvs _link" :[attr]="self ? url.substr(local.length) : url" :rel="rel" :target="target"
|
2020-02-09 18:59:00 +01:00
|
|
|
@mouseover="onMouseover"
|
|
|
|
@mouseleave="onMouseleave"
|
|
|
|
>
|
2019-05-25 02:04:16 +02:00
|
|
|
<template v-if="!self">
|
|
|
|
<span class="schema">{{ schema }}//</span>
|
|
|
|
<span class="hostname">{{ hostname }}</span>
|
|
|
|
<span class="port" v-if="port != ''">:{{ port }}</span>
|
|
|
|
</template>
|
2019-07-02 12:17:14 +02:00
|
|
|
<template v-if="pathname === '/' && self">
|
|
|
|
<span class="self">{{ hostname }}</span>
|
|
|
|
</template>
|
2019-05-25 02:05:14 +02:00
|
|
|
<span class="pathname" v-if="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>
|
2020-01-29 20:37:25 +01:00
|
|
|
<fa :icon="faExternalLinkSquareAlt" v-if="target === '_blank'" class="icon"/>
|
2019-05-24 12:19:43 +02:00
|
|
|
</component>
|
2018-03-31 14:41:08 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { faExternalLinkSquareAlt } from '@fortawesome/free-solid-svg-icons';
|
2018-09-02 13:19:59 +02:00
|
|
|
import { toUnicode as decodePunycode } from 'punycode';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { url as local } from '../config';
|
2020-02-09 18:59:00 +01:00
|
|
|
import XUrlPreview from './url-preview-popup.vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
|
2018-03-31 14:41:08 +02:00
|
|
|
export default Vue.extend({
|
2020-02-09 18:42:06 +01:00
|
|
|
props: {
|
|
|
|
url: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
rel: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
}
|
|
|
|
},
|
2018-03-31 14:41:08 +02:00
|
|
|
data() {
|
2020-02-10 12:51:17 +01:00
|
|
|
const self = this.url.startsWith(local);
|
2018-03-31 14:41:08 +02:00
|
|
|
return {
|
2019-05-24 12:19:43 +02:00
|
|
|
local,
|
2020-02-09 18:42:06 +01:00
|
|
|
schema: null as string | null,
|
|
|
|
hostname: null as string | null,
|
|
|
|
port: null as string | null,
|
|
|
|
pathname: null as string | null,
|
|
|
|
query: null as string | null,
|
|
|
|
hash: null as string | null,
|
2020-02-10 12:51:17 +01:00
|
|
|
self: self,
|
|
|
|
attr: self ? 'to' : 'href',
|
|
|
|
target: self ? null : '_blank',
|
2020-02-09 18:59:00 +01:00
|
|
|
showTimer: null,
|
|
|
|
hideTimer: null,
|
2020-02-19 16:38:26 +01:00
|
|
|
checkTimer: null,
|
2020-02-09 18:59:00 +01:00
|
|
|
preview: null,
|
2020-01-29 20:37:25 +01:00
|
|
|
faExternalLinkSquareAlt
|
2018-03-31 14:41:08 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
const url = new URL(this.url);
|
|
|
|
this.schema = url.protocol;
|
2018-09-02 13:19:59 +02:00
|
|
|
this.hostname = decodePunycode(url.hostname);
|
2018-03-31 14:41:08 +02:00
|
|
|
this.port = url.port;
|
2018-09-02 13:19:59 +02:00
|
|
|
this.pathname = decodeURIComponent(url.pathname);
|
|
|
|
this.query = decodeURIComponent(url.search);
|
|
|
|
this.hash = decodeURIComponent(url.hash);
|
2020-02-09 18:59:00 +01:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
showPreview() {
|
|
|
|
if (!document.body.contains(this.$el)) return;
|
|
|
|
if (this.preview) return;
|
|
|
|
|
|
|
|
this.preview = new XUrlPreview({
|
|
|
|
parent: this,
|
|
|
|
propsData: {
|
|
|
|
url: this.url,
|
|
|
|
source: this.$el
|
|
|
|
}
|
|
|
|
}).$mount();
|
|
|
|
|
|
|
|
document.body.appendChild(this.preview.$el);
|
2020-02-19 16:38:26 +01:00
|
|
|
|
|
|
|
this.checkTimer = setInterval(() => {
|
|
|
|
if (!document.body.contains(this.$el)) this.closePreview();
|
|
|
|
}, 1000);
|
2020-02-09 18:59:00 +01:00
|
|
|
},
|
|
|
|
closePreview() {
|
|
|
|
if (this.preview) {
|
2020-02-19 16:38:26 +01:00
|
|
|
clearInterval(this.checkTimer);
|
2020-02-09 18:59:00 +01:00
|
|
|
this.preview.destroyDom();
|
|
|
|
this.preview = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onMouseover() {
|
|
|
|
clearTimeout(this.showTimer);
|
|
|
|
clearTimeout(this.hideTimer);
|
|
|
|
this.showTimer = setTimeout(this.showPreview, 500);
|
|
|
|
},
|
|
|
|
onMouseleave() {
|
|
|
|
clearTimeout(this.showTimer);
|
|
|
|
clearTimeout(this.hideTimer);
|
|
|
|
this.hideTimer = setTimeout(this.closePreview, 500);
|
|
|
|
}
|
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;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
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>
|