2020-02-09 19:48:45 +01:00
|
|
|
<template>
|
2020-02-10 12:51:17 +01:00
|
|
|
<component :is="self ? 'router-link' : 'a'" class="xlcxczvw _link" :[attr]="self ? url.substr(local.length) : url" :rel="rel" :target="target"
|
2020-02-09 19:48:45 +01:00
|
|
|
@mouseover="onMouseover"
|
|
|
|
@mouseleave="onMouseleave"
|
|
|
|
:title="url"
|
|
|
|
>
|
|
|
|
<slot></slot>
|
|
|
|
<fa :icon="faExternalLinkSquareAlt" v-if="target === '_blank'" class="icon"/>
|
|
|
|
</component>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import { faExternalLinkSquareAlt } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { url as local } from '../config';
|
2020-03-22 06:38:33 +01:00
|
|
|
import MkUrlPreview from './url-preview-popup.vue';
|
2020-02-09 19:48:45 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
url: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
rel: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
2020-02-10 12:51:17 +01:00
|
|
|
const self = this.url.startsWith(local);
|
2020-02-09 19:48:45 +01:00
|
|
|
return {
|
|
|
|
local,
|
2020-02-10 12:51:17 +01:00
|
|
|
self: self,
|
|
|
|
attr: self ? 'to' : 'href',
|
|
|
|
target: self ? null : '_blank',
|
2020-02-09 19:48:45 +01:00
|
|
|
showTimer: null,
|
|
|
|
hideTimer: null,
|
|
|
|
preview: null,
|
|
|
|
faExternalLinkSquareAlt
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
showPreview() {
|
|
|
|
if (!document.body.contains(this.$el)) return;
|
|
|
|
if (this.preview) return;
|
|
|
|
|
2020-03-22 06:38:33 +01:00
|
|
|
this.preview = new MkUrlPreview({
|
2020-02-09 19:48:45 +01:00
|
|
|
parent: this,
|
|
|
|
propsData: {
|
|
|
|
url: this.url,
|
|
|
|
source: this.$el
|
|
|
|
}
|
|
|
|
}).$mount();
|
|
|
|
|
|
|
|
document.body.appendChild(this.preview.$el);
|
|
|
|
},
|
|
|
|
closePreview() {
|
|
|
|
if (this.preview) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.xlcxczvw {
|
|
|
|
word-break: break-all;
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
padding-left: 2px;
|
|
|
|
font-size: .9em;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|