2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-10-15 16:34:23 +00:00
|
|
|
<template>
|
2023-01-15 02:22:58 +00:00
|
|
|
<div :class="$style.root">
|
2023-10-22 06:51:48 +00:00
|
|
|
<MkAvatar :class="$style.avatar" :user="user" link preview/>
|
2023-01-15 02:22:58 +00:00
|
|
|
<div :class="$style.main">
|
|
|
|
<div :class="$style.header">
|
2023-10-22 06:51:48 +00:00
|
|
|
<MkUserName :user="user" :nowrap="true"/>
|
2021-10-15 16:34:23 +00:00
|
|
|
</div>
|
2023-01-15 02:22:58 +00:00
|
|
|
<div>
|
2023-11-30 04:49:31 +00:00
|
|
|
<p v-if="useCw" :class="$style.cw">
|
2024-01-30 10:53:53 +00:00
|
|
|
<Mfm v-if="cw != null && cw != ''" :text="cw" :author="user" :nyaize="'respect'" :i="user" style="margin-right: 8px;"/>
|
2023-11-30 04:49:31 +00:00
|
|
|
<MkCwButton v-model="showContent" :text="text.trim()" :files="files" :poll="poll" style="margin: 4px 0;"/>
|
|
|
|
</p>
|
|
|
|
<div v-show="!useCw || showContent">
|
2023-11-15 02:09:54 +00:00
|
|
|
<Mfm :text="text.trim()" :author="user" :nyaize="'respect'" :i="user"/>
|
2021-10-15 16:34:23 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-14 01:29:18 +00:00
|
|
|
<script lang="ts" setup>
|
2023-11-30 04:49:31 +00:00
|
|
|
import { ref } from 'vue';
|
2023-10-22 06:51:48 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2024-01-30 10:53:53 +00:00
|
|
|
import type { PollEditorModelValue } from '@/components/MkPollEditor.vue';
|
2023-11-30 04:49:31 +00:00
|
|
|
import MkCwButton from '@/components/MkCwButton.vue';
|
|
|
|
|
|
|
|
const showContent = ref(false);
|
2021-10-15 16:34:23 +00:00
|
|
|
|
2022-01-14 01:29:18 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
text: string;
|
2023-11-30 04:49:31 +00:00
|
|
|
files: Misskey.entities.DriveFile[];
|
2024-01-30 10:53:53 +00:00
|
|
|
poll?: PollEditorModelValue;
|
2023-11-30 04:49:31 +00:00
|
|
|
useCw: boolean;
|
|
|
|
cw: string | null;
|
2023-10-22 06:51:48 +00:00
|
|
|
user: Misskey.entities.User;
|
2022-01-14 01:29:18 +00:00
|
|
|
}>();
|
2021-10-15 16:34:23 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-15 02:22:58 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2021-10-15 16:34:23 +00:00
|
|
|
display: flex;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-07-13 12:41:06 +00:00
|
|
|
overflow: clip;
|
2021-10-15 16:34:23 +00:00
|
|
|
font-size: 0.95em;
|
2023-01-15 02:22:58 +00:00
|
|
|
}
|
2021-10-15 16:34:23 +00:00
|
|
|
|
2023-01-15 02:22:58 +00: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 16:34:23 +00:00
|
|
|
|
2023-01-15 02:22:58 +00:00
|
|
|
.main {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
2021-10-15 16:34:23 +00:00
|
|
|
|
2023-11-30 04:49:31 +00:00
|
|
|
.cw {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2023-01-15 02:22:58 +00:00
|
|
|
.header {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
font-weight: bold;
|
2023-04-05 05:30:03 +00:00
|
|
|
width: 100%;
|
|
|
|
overflow: clip;
|
|
|
|
text-overflow: ellipsis;
|
2021-10-15 16:34:23 +00:00
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
|
|
|
|
@container (min-width: 350px) {
|
2023-01-15 02:22:58 +00:00
|
|
|
.avatar {
|
|
|
|
margin: 0 10px 0 0 !important;
|
|
|
|
width: 44px !important;
|
|
|
|
height: 44px !important;
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (min-width: 500px) {
|
2023-01-15 02:22:58 +00:00
|
|
|
.avatar {
|
|
|
|
margin: 0 12px 0 0 !important;
|
|
|
|
width: 48px !important;
|
|
|
|
height: 48px !important;
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-15 16:34:23 +00:00
|
|
|
</style>
|