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-01-09 20:40:53 +00:00
|
|
|
<div :class="$style.root">
|
2023-01-16 05:18:11 +00:00
|
|
|
<MkAvatar :class="$style.avatar" :user="note.user" link preview/>
|
2023-01-09 20:40:53 +00:00
|
|
|
<div :class="$style.main">
|
|
|
|
<MkNoteHeader :class="$style.header" :note="note" :mini="true"/>
|
|
|
|
<div>
|
|
|
|
<p v-if="note.cw != null" :class="$style.cw">
|
2023-05-19 04:58:09 +00:00
|
|
|
<Mfm v-if="note.cw != ''" style="margin-right: 8px;" :text="note.cw" :author="note.user" :i="$i" :emojiUrls="note.emojis"/>
|
2022-12-30 04:56:22 +00:00
|
|
|
<MkCwButton v-model="showContent" :note="note"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
</p>
|
2023-01-09 20:40:53 +00:00
|
|
|
<div v-show="note.cw == null || showContent">
|
|
|
|
<MkSubNoteContent :class="$style.text" :note="note"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-14 01:29:18 +00:00
|
|
|
<script lang="ts" setup>
|
2023-10-17 02:45:32 +00:00
|
|
|
import { watch } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2022-12-30 04:56:22 +00:00
|
|
|
import MkNoteHeader from '@/components/MkNoteHeader.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkSubNoteContent from '@/components/MkSubNoteContent.vue';
|
2022-12-30 04:56:22 +00:00
|
|
|
import MkCwButton from '@/components/MkCwButton.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { $i } from '@/account.js';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-14 01:29:18 +00:00
|
|
|
const props = defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
note: Misskey.entities.Note;
|
2023-10-17 02:45:32 +00:00
|
|
|
expandAllCws?: boolean;
|
2022-01-14 01:29:18 +00:00
|
|
|
}>();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-10-17 02:45:32 +00:00
|
|
|
let showContent = $ref(false);
|
|
|
|
|
|
|
|
watch(() => props.expandAllCws, (expandAllCws) => {
|
|
|
|
if (expandAllCws !== showContent) showContent = expandAllCws;
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-09 20:40:53 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 19:37:25 +00:00
|
|
|
display: flex;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-05-31 05:46:50 +00:00
|
|
|
font-size: 0.95em;
|
2023-01-09 20:40:53 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:40:53 +00:00
|
|
|
.avatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: block;
|
|
|
|
margin: 0 10px 0 0;
|
2023-02-12 01:46:14 +00:00
|
|
|
width: 34px;
|
|
|
|
height: 34px;
|
2023-09-30 23:20:20 +00:00
|
|
|
border-radius: 5px;
|
2023-03-10 05:07:34 +00:00
|
|
|
position: sticky !important;
|
|
|
|
top: calc(16px + var(--stickyTop, 0px));
|
|
|
|
left: 0;
|
2023-01-09 20:40:53 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:40:53 +00:00
|
|
|
.main {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:40:53 +00:00
|
|
|
.header {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:40:53 +00:00
|
|
|
.cw {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:40:53 +00:00
|
|
|
.text {
|
|
|
|
cursor: default;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
|
2023-02-12 01:46:14 +00:00
|
|
|
@container (min-width: 250px) {
|
|
|
|
.avatar {
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-25 23:40:13 +00:00
|
|
|
@container (min-width: 350px) {
|
2023-01-09 20:40:53 +00:00
|
|
|
.avatar {
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
width: 44px;
|
|
|
|
height: 44px;
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (min-width: 500px) {
|
2023-01-09 20:40:53 +00:00
|
|
|
.avatar {
|
|
|
|
margin: 0 12px 0 0;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|