2020-02-09 12:48:45 -06:00
|
|
|
<template>
|
2022-01-15 17:38:55 -06:00
|
|
|
<component :is="self ? 'MkA' : 'a'" ref="el" class="xlcxczvw _link" :[attr]="self ? url.substr(local.length) : url" :rel="rel" :target="target"
|
2021-11-19 04:36:12 -06:00
|
|
|
:title="url"
|
2020-02-09 12:48:45 -06:00
|
|
|
>
|
|
|
|
<slot></slot>
|
2021-04-20 09:22:59 -05:00
|
|
|
<i v-if="target === '_blank'" class="fas fa-external-link-square-alt icon"></i>
|
2020-02-09 12:48:45 -06:00
|
|
|
</component>
|
|
|
|
</template>
|
|
|
|
|
2022-01-15 17:38:55 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import { url as local } from '@/config';
|
2022-01-15 17:38:55 -06:00
|
|
|
import { useTooltip } from '@/scripts/use-tooltip';
|
2021-11-11 11:02:25 -06:00
|
|
|
import * as os from '@/os';
|
2020-02-09 12:48:45 -06:00
|
|
|
|
2022-01-15 17:38:55 -06:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
url: string;
|
|
|
|
rel?: null | string;
|
|
|
|
}>(), {
|
|
|
|
});
|
2020-02-09 12:48:45 -06:00
|
|
|
|
2022-01-15 17:38:55 -06:00
|
|
|
const self = props.url.startsWith(local);
|
|
|
|
const attr = self ? 'to' : 'href';
|
|
|
|
const target = self ? null : '_blank';
|
2020-02-09 12:48:45 -06:00
|
|
|
|
2022-01-15 17:38:55 -06:00
|
|
|
const el = $ref();
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2022-01-15 17:38:55 -06:00
|
|
|
useTooltip($$(el), (showing) => {
|
|
|
|
os.popup(import('@/components/url-preview-popup.vue'), {
|
|
|
|
showing,
|
|
|
|
url: props.url,
|
|
|
|
source: el,
|
|
|
|
}, {}, 'closed');
|
2020-02-09 12:48:45 -06:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.xlcxczvw {
|
|
|
|
word-break: break-all;
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
padding-left: 2px;
|
|
|
|
font-size: .9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|