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

100 lines
1.8 KiB
Vue
Raw Normal View History

2018-12-12 05:06:05 +01:00
<template>
2023-04-08 02:01:42 +02:00
<MkA
v-if="url.startsWith('/')"
v-user-preview="canonical"
class="akbvjaqn"
:class="{ isMe }"
:to="url"
@click.stop
>
<img class="icon" :src="`/avatar/@${username}@${host}`" alt="" />
<span class="main">
<span class="username">@{{ username }}</span>
<span
v-if="host != localHost || $store.state.showFullAcct"
class="host"
>@{{ toUnicode(host) }}</span
>
</span>
</MkA>
<a
v-else
class="akbvjaqn"
:href="url"
target="_blank"
rel="noopener"
:style="{ background: bgCss }"
@click.stop
>
<span class="main">
<span class="username">@{{ username }}</span>
<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>
2023-04-08 02:01:42 +02:00
import { toUnicode } from "punycode";
import {} from "vue";
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
2023-04-08 02:01:42 +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
2023-04-08 02:01:42 +02:00
const isMe =
$i &&
`@${props.username}@${toUnicode(props.host)}` ===
`@${$i.username}@${toUnicode(localHost)}`.toLowerCase();
2018-12-12 05:06:05 +01:00
</script>
2022-07-10 06:16:11 +02:00
<style lang="scss" scoped>
.akbvjaqn {
2023-05-24 02:30:55 +02:00
position: relative;
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
2023-05-24 02:30:55 +02:00
&::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
background: var(--mention);
opacity: 0.1;
z-index: -1;
}
2020-06-04 15:19:08 +02:00
&.isMe {
2023-05-24 02:30:55 +02:00
--mention: var(--mentionMe);
2020-06-04 15:19:08 +02:00
}
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>