2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkCondensedLine v-if="defaultStore.state.enableCondensedLineForAcct" :minScale="2 / 3">
|
2023-01-09 20:17:54 +00:00
|
|
|
<span>@{{ user.username }}</span>
|
2023-04-01 04:42:40 +00:00
|
|
|
<span v-if="user.host || detail || defaultStore.state.showFullAcct" style="opacity: 0.5;">@{{ user.host || host }}</span>
|
2023-05-04 23:16:55 +00:00
|
|
|
</MkCondensedLine>
|
2023-05-04 23:34:05 +00:00
|
|
|
<span v-else>
|
|
|
|
<span>@{{ user.username }}</span>
|
|
|
|
<span v-if="user.host || detail || defaultStore.state.showFullAcct" style="opacity: 0.5;">@{{ user.host || host }}</span>
|
|
|
|
</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 06:02:25 +00:00
|
|
|
<script lang="ts" setup>
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2021-04-04 04:00:39 +00:00
|
|
|
import { toUnicode } from 'punycode/';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { host as hostRaw } from '@/config.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-07 06:02:25 +00:00
|
|
|
defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
user: Misskey.entities.UserDetailed;
|
2022-01-07 06:02:25 +00:00
|
|
|
detail?: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const host = toUnicode(hostRaw);
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|