mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 15:56:25 +01:00
48 lines
1.1 KiB
Vue
48 lines
1.1 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<component
|
|
:is="self ? 'MkA' : 'a'" ref="el" style="word-break: break-all;" class="_link" :[attr]="self ? url.substring(local.length) : url" :rel="rel" :target="target"
|
|
:title="url"
|
|
>
|
|
<slot></slot>
|
|
<i v-if="target === '_blank'" class="ti ti-external-link" :class="$style.icon"></i>
|
|
</component>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent } from 'vue';
|
|
import { url as local } from '@/config.js';
|
|
import { useTooltip } from '@/scripts/use-tooltip.js';
|
|
import * as os from '@/os.js';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
url: string;
|
|
rel?: null | string;
|
|
}>(), {
|
|
});
|
|
|
|
const self = props.url.startsWith(local);
|
|
const attr = self ? 'to' : 'href';
|
|
const target = self ? null : '_blank';
|
|
|
|
const el = $ref();
|
|
|
|
useTooltip($$(el), (showing) => {
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkUrlPreviewPopup.vue')), {
|
|
showing,
|
|
url: props.url,
|
|
source: el,
|
|
}, {}, 'closed');
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.icon {
|
|
padding-left: 2px;
|
|
font-size: .9em;
|
|
}
|
|
</style>
|