2018-12-12 05:06:05 +01:00
|
|
|
<template>
|
2022-07-10 06:16:11 +02:00
|
|
|
<MkA v-if="url.startsWith('/')" v-user-preview="canonical" class="akbvjaqn" :class="{ isMe }" :to="url" :style="{ background: bgCss }">
|
|
|
|
<img class="icon" :src="`/avatar/@${username}@${host}`" alt="">
|
2018-12-12 05:06:05 +01:00
|
|
|
<span class="main">
|
|
|
|
<span class="username">@{{ username }}</span>
|
2022-07-10 06:16:11 +02:00
|
|
|
<span v-if="(host != localHost) || $store.state.showFullAcct" class="host">@{{ toUnicode(host) }}</span>
|
2018-12-12 05:06:05 +01:00
|
|
|
</span>
|
2020-10-24 18:21:41 +02:00
|
|
|
</MkA>
|
2022-07-10 06:16:11 +02:00
|
|
|
<a v-else class="akbvjaqn" :href="url" target="_blank" rel="noopener" :style="{ background: bgCss }">
|
2019-07-18 20:13:47 +02:00
|
|
|
<span class="main">
|
|
|
|
<span class="username">@{{ username }}</span>
|
2022-07-10 06:16:11 +02:00
|
|
|
<span class="host">@{{ toUnicode(host) }}</span>
|
2019-07-18 20:13:47 +02:00
|
|
|
</span>
|
|
|
|
</a>
|
2018-12-12 05:06:05 +01:00
|
|
|
</template>
|
|
|
|
|
2022-06-24 03:34:36 +02:00
|
|
|
<script lang="ts" setup>
|
2021-10-31 12:19:49 +01:00
|
|
|
import { toUnicode } from 'punycode';
|
2022-06-24 03:34:36 +02:00
|
|
|
import { useCssModule } from 'vue';
|
|
|
|
import tinycolor from 'tinycolor2';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { host as localHost } from '@/config';
|
|
|
|
import { $i } from '@/account';
|
2018-12-12 05:06:05 +01:00
|
|
|
|
2022-06-24 03:34:36 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
username: string;
|
|
|
|
host: string;
|
|
|
|
}>();
|
2021-10-31 12:19:49 +01:00
|
|
|
|
2022-06-24 03:34:36 +02:00
|
|
|
const canonical = props.host === localHost ? `@${props.username}` : `@${props.username}@${toUnicode(props.host)}`;
|
2021-10-31 12:19:49 +01:00
|
|
|
|
2022-06-24 03:34:36 +02:00
|
|
|
const url = `/${canonical}`;
|
2021-10-31 12:19:49 +01:00
|
|
|
|
2022-06-24 03:34:36 +02:00
|
|
|
const isMe = $i && (
|
|
|
|
`@${props.username}@${toUnicode(props.host)}` === `@${$i.username}@${toUnicode(localHost)}`.toLowerCase()
|
|
|
|
);
|
2021-10-31 12:19:49 +01:00
|
|
|
|
2022-06-24 03:34:36 +02:00
|
|
|
const bg = tinycolor(getComputedStyle(document.documentElement).getPropertyValue(isMe ? '--mentionMe' : '--mention'));
|
|
|
|
bg.setAlpha(0.1);
|
|
|
|
const bgCss = bg.toRgbString();
|
2022-05-05 13:46:46 +02:00
|
|
|
|
2022-06-24 03:34:36 +02:00
|
|
|
useCssModule();
|
2018-12-12 05:06:05 +01:00
|
|
|
</script>
|
|
|
|
|
2022-07-10 06:16:11 +02:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.akbvjaqn {
|
2021-10-31 12:19:49 +01:00
|
|
|
display: inline-block;
|
|
|
|
padding: 4px 8px 4px 4px;
|
|
|
|
border-radius: 999px;
|
2020-01-29 20:37:25 +01:00
|
|
|
color: var(--mention);
|
2020-06-04 15:19:08 +02:00
|
|
|
|
|
|
|
&.isMe {
|
|
|
|
color: var(--mentionMe);
|
|
|
|
}
|
2018-12-12 05:06:05 +01:00
|
|
|
|
2022-07-10 06:16:11 +02:00
|
|
|
> .icon {
|
|
|
|
width: 1.5em;
|
|
|
|
height: 1.5em;
|
|
|
|
object-fit: cover;
|
|
|
|
margin: 0 0.2em 0 0;
|
|
|
|
vertical-align: bottom;
|
|
|
|
border-radius: 100%;
|
|
|
|
}
|
2021-10-24 14:02:50 +02:00
|
|
|
|
2022-07-13 09:33:39 +02:00
|
|
|
> .main > .host {
|
2022-07-10 06:16:11 +02:00
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2018-12-12 05:06:05 +01:00
|
|
|
</style>
|