2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-size="{ max: [450] }" class="wrpstxzv" :class="{ children: depth > 1 }">
|
2022-09-15 23:43:57 +02:00
|
|
|
<div class="main" @click="router.push(notePage(note.reply))">
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkAvatar class="avatar" :user="note.user"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
<div class="body">
|
2020-10-17 13:12:00 +02:00
|
|
|
<XNoteHeader class="header" :note="note" :mini="true"/>
|
2020-05-10 09:22:39 +02:00
|
|
|
<div class="body">
|
|
|
|
<p v-if="note.cw != null" class="cw">
|
2022-07-20 15:24:26 +02:00
|
|
|
<Mfm v-if="note.cw != ''" class="text" :text="note.cw" :author="note.user" :i="$i" :custom-emojis="note.emojis"/>
|
2021-09-29 17:50:45 +02:00
|
|
|
<XCwButton v-model="showContent" :note="note"/>
|
2020-05-10 09:22:39 +02:00
|
|
|
</p>
|
2022-10-28 05:37:33 +02:00
|
|
|
<div v-show="note.cw == null || showContent" class="content" @click="router.push(notePage(note))">
|
2022-08-30 17:24:33 +02:00
|
|
|
<MkSubNoteContent class="text" :note="note"/>
|
2020-05-10 09:22:39 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-24 23:36:07 +02:00
|
|
|
<template v-if="conversation">
|
|
|
|
<template v-if="depth < 5">
|
|
|
|
<MkNoteSub v-for="reply in replies" :key="reply.id" :note="reply" class="reply" :conversation="conversation" :depth="depth + 1"/>
|
|
|
|
</template>
|
|
|
|
<div v-else-if="replies.length > 0" class="more">
|
2022-11-07 03:49:47 +01:00
|
|
|
<MkA class="text _link" :to="notePage(note)">{{ i18n.ts.continueThread }} <i class="ph-caret-double-right-bold ph-lg"></i></MkA>
|
2022-07-24 23:36:07 +02:00
|
|
|
</div>
|
2021-11-18 14:11:44 +01:00
|
|
|
</template>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-14 02:25:51 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-12-12 04:24:12 +01:00
|
|
|
import * as misskey from 'calckey-js';
|
2022-08-30 17:24:33 +02:00
|
|
|
import XNoteHeader from '@/components/MkNoteHeader.vue';
|
|
|
|
import MkSubNoteContent from '@/components/MkSubNoteContent.vue';
|
|
|
|
import XCwButton from '@/components/MkCwButton.vue';
|
2022-07-20 15:24:26 +02:00
|
|
|
import { notePage } from '@/filters/note';
|
2022-09-15 23:43:57 +02:00
|
|
|
import { useRouter } from '@/router';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2022-07-20 15:24:26 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-09-15 23:43:57 +02:00
|
|
|
const router = useRouter();
|
|
|
|
|
2022-01-14 02:25:51 +01:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
note: misskey.entities.Note;
|
2022-07-24 23:36:07 +02:00
|
|
|
conversation?: misskey.entities.Note[];
|
2021-11-18 14:11:44 +01:00
|
|
|
|
2022-01-14 02:25:51 +01:00
|
|
|
// how many notes are in between this one and the note being viewed in detail
|
|
|
|
depth?: number;
|
|
|
|
}>(), {
|
|
|
|
depth: 1,
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
2022-01-14 02:25:51 +01:00
|
|
|
|
|
|
|
let showContent = $ref(false);
|
2022-07-24 23:36:07 +02:00
|
|
|
const replies: misskey.entities.Note[] = props.conversation?.filter(item => item.replyId === props.note.id || item.renoteId === props.note.id) ?? [];
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-03-20 11:19:28 +01:00
|
|
|
.wrpstxzv {
|
2020-01-29 20:37:25 +01:00
|
|
|
padding: 16px 32px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
2020-03-20 13:58:04 +01:00
|
|
|
&.max-width_450px {
|
2020-01-29 20:37:25 +01:00
|
|
|
padding: 14px 16px;
|
|
|
|
}
|
|
|
|
|
2020-05-10 09:22:39 +02:00
|
|
|
&.children {
|
|
|
|
padding: 10px 0 0 16px;
|
|
|
|
font-size: 1em;
|
2022-11-24 22:55:23 +01:00
|
|
|
cursor: auto;
|
2020-05-10 09:22:39 +02:00
|
|
|
|
|
|
|
&.max-width_450px {
|
|
|
|
padding: 10px 0 0 8px;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .main {
|
2020-05-10 09:22:39 +02:00
|
|
|
display: flex;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-05-10 09:22:39 +02:00
|
|
|
> .avatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: block;
|
|
|
|
margin: 0 8px 0 0;
|
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
|
|
|
border-radius: 8px;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
2020-05-10 09:22:39 +02:00
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
2022-11-24 22:55:23 +01:00
|
|
|
cursor: pointer;
|
2022-12-02 07:39:50 +01:00
|
|
|
|
|
|
|
@media (pointer: coarse) {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2022-11-24 22:55:23 +01:00
|
|
|
|
2020-05-10 09:22:39 +02:00
|
|
|
> .header {
|
|
|
|
margin-bottom: 2px;
|
2022-11-24 22:55:23 +01:00
|
|
|
cursor: auto;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 09:22:39 +02:00
|
|
|
> .body {
|
|
|
|
> .cw {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
2020-01-29 20:37:25 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-05-10 09:22:39 +02:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
> .text {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 09:22:39 +02:00
|
|
|
|
2021-11-18 14:11:44 +01:00
|
|
|
> .reply, > .more {
|
2021-04-10 05:40:50 +02:00
|
|
|
border-left: solid 0.5px var(--divider);
|
2020-05-10 09:22:39 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2021-11-18 14:11:44 +01:00
|
|
|
|
|
|
|
> .more {
|
|
|
|
padding: 10px 0 0 16px;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
</style>
|