2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-10-15 18:34:23 +02:00
|
|
|
<template>
|
2023-01-15 03:22:58 +01:00
|
|
|
<div :class="$style.root">
|
2023-10-22 08:51:48 +02:00
|
|
|
<MkAvatar :class="$style.avatar" :user="user" link preview/>
|
2023-01-15 03:22:58 +01:00
|
|
|
<div :class="$style.main">
|
|
|
|
<div :class="$style.header">
|
2023-10-22 08:51:48 +02:00
|
|
|
<MkUserName :user="user" :nowrap="true"/>
|
2021-10-15 18:34:23 +02:00
|
|
|
</div>
|
2023-01-15 03:22:58 +01:00
|
|
|
<div>
|
2023-06-01 10:19:46 +02:00
|
|
|
<div>
|
2023-11-15 03:09:54 +01:00
|
|
|
<Mfm :text="text.trim()" :author="user" :nyaize="'respect'" :i="user"/>
|
2021-10-15 18:34:23 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-14 02:29:18 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2023-10-22 08:51:48 +02:00
|
|
|
import * as Misskey from 'misskey-js';
|
2021-10-15 18:34:23 +02:00
|
|
|
|
2022-01-14 02:29:18 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
text: string;
|
2023-10-22 08:51:48 +02:00
|
|
|
user: Misskey.entities.User;
|
2022-01-14 02:29:18 +01:00
|
|
|
}>();
|
2021-10-15 18:34:23 +02:00
|
|
|
</script>
|
|
|
|
|
2023-01-15 03:22:58 +01:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2021-10-15 18:34:23 +02:00
|
|
|
display: flex;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-07-13 14:41:06 +02:00
|
|
|
overflow: clip;
|
2021-10-15 18:34:23 +02:00
|
|
|
font-size: 0.95em;
|
2023-01-15 03:22:58 +01:00
|
|
|
}
|
2021-10-15 18:34:23 +02:00
|
|
|
|
2023-01-15 03:22:58 +01:00
|
|
|
.avatar {
|
|
|
|
flex-shrink: 0 !important;
|
|
|
|
display: block !important;
|
|
|
|
margin: 0 10px 0 0 !important;
|
|
|
|
width: 40px !important;
|
|
|
|
height: 40px !important;
|
|
|
|
border-radius: 8px !important;
|
|
|
|
pointer-events: none !important;
|
|
|
|
}
|
2021-10-15 18:34:23 +02:00
|
|
|
|
2023-01-15 03:22:58 +01:00
|
|
|
.main {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
2021-10-15 18:34:23 +02:00
|
|
|
|
2023-01-15 03:22:58 +01:00
|
|
|
.header {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
font-weight: bold;
|
2023-04-05 07:30:03 +02:00
|
|
|
width: 100%;
|
|
|
|
overflow: clip;
|
|
|
|
text-overflow: ellipsis;
|
2021-10-15 18:34:23 +02:00
|
|
|
}
|
2022-12-26 00:40:13 +01:00
|
|
|
|
|
|
|
@container (min-width: 350px) {
|
2023-01-15 03:22:58 +01:00
|
|
|
.avatar {
|
|
|
|
margin: 0 10px 0 0 !important;
|
|
|
|
width: 44px !important;
|
|
|
|
height: 44px !important;
|
2022-12-26 00:40:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (min-width: 500px) {
|
2023-01-15 03:22:58 +01:00
|
|
|
.avatar {
|
|
|
|
margin: 0 12px 0 0 !important;
|
|
|
|
width: 48px !important;
|
|
|
|
height: 48px !important;
|
2022-12-26 00:40:13 +01:00
|
|
|
}
|
|
|
|
}
|
2021-10-15 18:34:23 +02:00
|
|
|
</style>
|