2018-12-11 22:06:05 -06:00
|
|
|
<template>
|
2021-11-19 04:36:12 -06:00
|
|
|
<MkA v-if="url.startsWith('/')" v-user-preview="canonical" class="ldlomzub" :class="{ isMe }" :to="url" :style="{ background: bg }">
|
2021-10-24 07:02:50 -05:00
|
|
|
<img class="icon" :src="`/avatar/@${username}@${host}`" alt="">
|
2018-12-11 22:06:05 -06:00
|
|
|
<span class="main">
|
|
|
|
<span class="username">@{{ username }}</span>
|
2021-11-19 04:36:12 -06:00
|
|
|
<span v-if="(host != localHost) || $store.state.showFullAcct" class="host">@{{ toUnicode(host) }}</span>
|
2018-12-11 22:06:05 -06:00
|
|
|
</span>
|
2020-10-24 11:21:41 -05:00
|
|
|
</MkA>
|
2021-10-31 06:19:49 -05:00
|
|
|
<a v-else class="ldlomzub" :href="url" target="_blank" rel="noopener" :style="{ background: bg }">
|
2019-07-18 13:13:47 -05:00
|
|
|
<span class="main">
|
|
|
|
<span class="username">@{{ username }}</span>
|
2020-01-29 13:37:25 -06:00
|
|
|
<span class="host">@{{ toUnicode(host) }}</span>
|
2019-07-18 13:13:47 -05:00
|
|
|
</span>
|
|
|
|
</a>
|
2018-12-11 22:06:05 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 06:12:00 -05:00
|
|
|
import { defineComponent } from 'vue';
|
2021-10-31 06:19:49 -05:00
|
|
|
import * as tinycolor from 'tinycolor2';
|
|
|
|
import { toUnicode } from 'punycode';
|
2021-11-11 11:02:25 -06:00
|
|
|
import { host as localHost } from '@/config';
|
|
|
|
import { $i } from '@/account';
|
2018-12-11 22:06:05 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2018-12-11 22:06:05 -06:00
|
|
|
props: {
|
|
|
|
username: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
host: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2021-10-31 06:19:49 -05:00
|
|
|
|
|
|
|
setup(props) {
|
|
|
|
const canonical = props.host === localHost ? `@${props.username}` : `@${props.username}@${toUnicode(props.host)}`;
|
|
|
|
|
2021-11-11 11:02:25 -06:00
|
|
|
const url = `/${canonical}`;
|
2021-10-31 06:19:49 -05:00
|
|
|
|
|
|
|
const isMe = $i && (
|
|
|
|
`@${props.username}@${toUnicode(props.host)}` === `@${$i.username}@${toUnicode(localHost)}`.toLowerCase()
|
|
|
|
);
|
|
|
|
|
|
|
|
const bg = tinycolor(getComputedStyle(document.documentElement).getPropertyValue(isMe ? '--mentionMe' : '--mention'));
|
2021-11-05 02:18:59 -05:00
|
|
|
bg.setAlpha(0.1);
|
2021-10-31 06:19:49 -05:00
|
|
|
|
2018-12-11 22:06:05 -06:00
|
|
|
return {
|
2021-10-31 06:19:49 -05:00
|
|
|
localHost,
|
|
|
|
isMe,
|
|
|
|
url,
|
|
|
|
canonical,
|
|
|
|
toUnicode,
|
|
|
|
bg: bg.toRgbString(),
|
2018-12-11 22:06:05 -06:00
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.ldlomzub {
|
2021-10-31 06:19:49 -05:00
|
|
|
display: inline-block;
|
|
|
|
padding: 4px 8px 4px 4px;
|
|
|
|
border-radius: 999px;
|
2020-01-29 13:37:25 -06:00
|
|
|
color: var(--mention);
|
2020-06-04 08:19:08 -05:00
|
|
|
|
|
|
|
&.isMe {
|
|
|
|
color: var(--mentionMe);
|
|
|
|
}
|
2018-12-11 22:06:05 -06:00
|
|
|
|
2021-10-24 07:02:50 -05:00
|
|
|
> .icon {
|
|
|
|
width: 1.5em;
|
2021-10-31 06:19:49 -05:00
|
|
|
margin: 0 0.2em 0 0;
|
2021-10-24 07:02:50 -05:00
|
|
|
vertical-align: bottom;
|
|
|
|
border-radius: 100%;
|
|
|
|
}
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
> .main {
|
|
|
|
> .host {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-11 22:06:05 -06:00
|
|
|
</style>
|