iceshrimp-legacy/packages/client/src/components/mention.vue

69 lines
1.7 KiB
Vue
Raw Normal View History

2018-12-12 05:06:05 +01:00
<template>
2022-06-24 03:34:36 +02:00
<MkA v-if="url.startsWith('/')" v-user-preview="canonical" :class="[$style.root, { isMe }]" :to="url" :style="{ background: bgCss }">
<img :class="$style.icon" :src="`/avatar/@${username}@${host}`" alt="">
2018-12-12 05:06:05 +01:00
<span class="main">
<span class="username">@{{ username }}</span>
<span v-if="(host != localHost) || $store.state.showFullAcct" :class="$style.mainHost">@{{ toUnicode(host) }}</span>
2018-12-12 05:06:05 +01:00
</span>
</MkA>
2022-06-24 03:34:36 +02:00
<a v-else :class="$style.root" :href="url" target="_blank" rel="noopener" :style="{ background: bgCss }">
<span class="main">
<span class="username">@{{ username }}</span>
<span :class="$style.mainHost">@{{ toUnicode(host) }}</span>
</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-06-24 03:34:36 +02:00
useCssModule();
2018-12-12 05:06:05 +01:00
</script>
<style lang="scss" module>
.root {
2021-10-31 12:19:49 +01:00
display: inline-block;
padding: 4px 8px 4px 4px;
border-radius: 999px;
color: var(--mention);
2020-06-04 15:19:08 +02:00
&.isMe {
color: var(--mentionMe);
}
}
2018-12-12 05:06:05 +01:00
.icon {
width: 1.5em;
height: 1.5em;
object-fit: cover;
margin: 0 0.2em 0 0;
vertical-align: bottom;
border-radius: 100%;
}
.mainHost {
opacity: 0.5;
}
2018-12-12 05:06:05 +01:00
</style>