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

71 lines
1.8 KiB
Vue
Raw Normal View History

2018-12-12 05:06:05 +01:00
<template>
2023-02-24 02:14:43 +01:00
<MkA v-if="url.startsWith('/')" v-user-preview="canonical" class="akbvjaqn" :class="{ isMe }" :to="url" :style="{ background: bgCss }" @click.stop>
2022-07-10 06:16:11 +02:00
<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>
</MkA>
2023-02-24 02:14:43 +01:00
<a v-else class="akbvjaqn" :href="url" target="_blank" rel="noopener" :style="{ background: bgCss }" @click.stop>
<span class="main">
<span class="username">@{{ username }}</span>
2022-07-10 06:16:11 +02:00
<span class="host">@{{ 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';
import { } from 'vue';
2022-06-24 03:34:36 +02:00
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();
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;
2023-02-21 04:24:06 +01:00
padding: 2px 8px 2px 2px;
margin-block: 2px;
2021-10-31 12:19:49 +01:00
border-radius: 999px;
2023-02-21 04:24:06 +01:00
max-width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
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%;
}
2022-07-13 09:33:39 +02:00
> .main > .host {
2022-07-10 06:16:11 +02:00
opacity: 0.5;
}
}
2018-12-12 05:06:05 +01:00
</style>