2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-02-26 03:22:23 +01:00
|
|
|
<div v-size="{ max: [450, 500] }" class="wrpstxzv" :class="{ children: depth > 1, singleStart: replies.length == 1, firstColumn: depth == 1 && conversation }">
|
2023-02-20 00:31:16 +01:00
|
|
|
<div v-if="conversation && depth > 1" class="line"></div>
|
2023-01-15 20:01:05 +01:00
|
|
|
<div class="main" @click="router.push(notePage(note))">
|
2023-01-07 00:58:52 +01:00
|
|
|
<div class="avatar-container">
|
|
|
|
<MkAvatar class="avatar" :user="note.user"/>
|
2023-02-23 22:44:15 +01:00
|
|
|
<div v-if="(!conversation) || replies.length > 0" class="line"></div>
|
2023-01-07 00:58:52 +01:00
|
|
|
</div>
|
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))">
|
2023-02-17 17:31:48 +01:00
|
|
|
<MkSubNoteContent class="text" :note="note" :detailed="true"/>
|
2020-05-10 09:22:39 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
2023-02-25 17:57:16 +01:00
|
|
|
<MkNoteFooter :note="note" :directReplies="replies.length"></MkNoteFooter>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-24 23:36:07 +02:00
|
|
|
<template v-if="conversation">
|
2023-02-20 00:31:16 +01:00
|
|
|
<template v-if="replies.length == 1">
|
2023-02-23 22:44:15 +01:00
|
|
|
<MkNoteSub v-for="reply in replies" :key="reply.id" :note="reply" class="reply single" :conversation="conversation" :depth="depth"/>
|
2023-02-17 06:06:49 +01:00
|
|
|
</template>
|
|
|
|
<template v-else-if="depth < 5">
|
2022-07-24 23:36:07 +02:00
|
|
|
<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">
|
2023-02-25 04:33:21 +01:00
|
|
|
<div class="line"></div>
|
2023-03-11 22:01:04 +01:00
|
|
|
<MkA class="text _link" :to="notePage(note)">{{ i18n.ts.continueThread }} <i class="ph-caret-double-right ph-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';
|
2023-02-17 06:06:49 +01:00
|
|
|
import MkNoteFooter from '@/components/MkNoteFooter.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);
|
2023-02-24 04:45:12 +01:00
|
|
|
const replies: misskey.entities.Note[] = props.conversation?.filter(item => item.replyId === props.note.id || item.renoteId === props.note.id).reverse() ?? [];
|
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;
|
2020-05-10 09:22:39 +02:00
|
|
|
&.children {
|
2023-02-20 02:12:01 +01:00
|
|
|
padding: 10px 0 0 var(--indent);
|
|
|
|
padding-left: var(--indent) !important;
|
2020-05-10 09:22:39 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-02-26 02:22:17 +01:00
|
|
|
|
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
|
|
|
|
2023-01-07 00:58:52 +01:00
|
|
|
> .avatar-container {
|
2023-01-08 08:30:42 +01:00
|
|
|
margin-right: 8px;
|
2023-01-07 00:58:52 +01:00
|
|
|
> .avatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: block;
|
|
|
|
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;
|
2023-02-26 02:22:17 +01:00
|
|
|
margin: 0 -200px;
|
|
|
|
padding: 0 200px;
|
2023-02-25 17:10:48 +01:00
|
|
|
overflow: clip;
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-02-26 02:22:17 +01:00
|
|
|
&:first-child > .main > .body {
|
|
|
|
margin-top: -200px;
|
|
|
|
padding-top: 200px;
|
|
|
|
}
|
2023-02-20 02:56:28 +01:00
|
|
|
&.reply {
|
|
|
|
--avatarSize: 38px;
|
|
|
|
.avatar-container {
|
|
|
|
margin-right: 8px !important;
|
|
|
|
}
|
|
|
|
:deep(.footer) {
|
|
|
|
font-size: .9em;
|
|
|
|
}
|
2023-02-20 02:12:01 +01:00
|
|
|
}
|
2021-11-18 14:11:44 +01:00
|
|
|
> .reply, > .more {
|
2020-05-10 09:22:39 +02:00
|
|
|
margin-top: 10px;
|
2023-02-17 06:06:49 +01:00
|
|
|
&.single {
|
|
|
|
padding: 0 !important;
|
2023-02-24 00:22:51 +01:00
|
|
|
> .line {
|
|
|
|
display: none;
|
|
|
|
}
|
2023-02-17 06:06:49 +01:00
|
|
|
}
|
2020-05-10 09:22:39 +02:00
|
|
|
}
|
2021-11-18 14:11:44 +01:00
|
|
|
|
|
|
|
> .more {
|
2023-02-25 04:33:21 +01:00
|
|
|
display: flex;
|
|
|
|
padding-block: 10px;
|
|
|
|
font-weight: 600;
|
|
|
|
> .line {
|
|
|
|
flex-grow: 0 !important;
|
|
|
|
margin-top: -10px !important;
|
|
|
|
margin-bottom: 10px !important;
|
|
|
|
margin-right: 10px !important;
|
|
|
|
&::before {
|
|
|
|
border-left-style: dashed !important;
|
|
|
|
border-bottom-left-radius: 100px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i {
|
|
|
|
font-size: 1em !important;
|
|
|
|
vertical-align: middle !important;
|
|
|
|
}
|
2023-02-27 15:42:11 +01:00
|
|
|
a {
|
|
|
|
position: static;
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
inset: 0;
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
content: unset;
|
|
|
|
}
|
|
|
|
}
|
2021-11-18 14:11:44 +01:00
|
|
|
}
|
2023-01-07 00:58:52 +01:00
|
|
|
|
2023-02-25 06:39:43 +01:00
|
|
|
&.reply, &.reply-to, &.reply-to-more {
|
|
|
|
> .main:hover, > .main:focus-within {
|
|
|
|
:deep(.footer .button) {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-07 00:58:52 +01:00
|
|
|
&.reply-to, &.reply-to-more {
|
2023-01-28 22:10:45 +01:00
|
|
|
padding-bottom: 0;
|
|
|
|
&:first-child {
|
|
|
|
padding-top: 30px;
|
|
|
|
}
|
2023-02-20 02:12:01 +01:00
|
|
|
.line::before {
|
|
|
|
margin-bottom: -16px;
|
2023-02-20 00:31:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reply Lines
|
|
|
|
&.reply, &.reply-to, &.reply-to-more {
|
2023-02-24 00:22:51 +01:00
|
|
|
--indent: calc(var(--avatarSize) - 5px);
|
2023-02-20 00:31:16 +01:00
|
|
|
> .main {
|
|
|
|
> .avatar-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 14px;
|
2023-01-07 21:53:51 +01:00
|
|
|
width: var(--avatarSize);
|
2023-02-20 00:31:16 +01:00
|
|
|
> .avatar {
|
|
|
|
width: var(--avatarSize);
|
|
|
|
height: var(--avatarSize);
|
|
|
|
margin: 0;
|
|
|
|
}
|
2023-01-07 00:58:52 +01:00
|
|
|
}
|
2023-02-20 00:31:16 +01:00
|
|
|
}
|
|
|
|
.line {
|
2023-02-24 00:22:51 +01:00
|
|
|
position: relative;
|
2023-02-20 00:31:16 +01:00
|
|
|
width: var(--avatarSize);
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
2023-02-24 00:22:51 +01:00
|
|
|
margin-bottom: -10px;
|
2023-02-20 00:31:16 +01:00
|
|
|
&::before {
|
|
|
|
content: "";
|
2023-02-24 00:22:51 +01:00
|
|
|
position: absolute;
|
2023-02-24 00:28:32 +01:00
|
|
|
border-left: 2px solid var(--X13);
|
2023-02-24 00:22:51 +01:00
|
|
|
margin-left: calc((var(--avatarSize) / 2) - 1px);
|
|
|
|
width: calc(var(--indent) / 2);
|
|
|
|
inset-block: 0;
|
|
|
|
min-height: 8px;
|
2023-01-07 00:58:52 +01:00
|
|
|
}
|
|
|
|
}
|
2023-02-20 00:31:16 +01:00
|
|
|
}
|
2023-02-24 00:22:51 +01:00
|
|
|
&.reply-to, &.reply-to-more {
|
|
|
|
> .main > .avatar-container > .line {
|
|
|
|
margin-bottom: 0px !important;
|
|
|
|
}
|
|
|
|
}
|
2023-02-20 02:12:01 +01:00
|
|
|
&.single, &.singleStart {
|
2023-02-24 00:22:51 +01:00
|
|
|
> .main > .avatar-container > .line {
|
|
|
|
margin-bottom: -10px !important;
|
2023-02-20 02:12:01 +01:00
|
|
|
}
|
|
|
|
}
|
2023-02-20 00:31:16 +01:00
|
|
|
.reply.children:not(:last-child) { // Line that goes through multiple replies
|
|
|
|
position: relative;
|
|
|
|
> .line {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
2023-01-07 00:58:52 +01:00
|
|
|
}
|
2023-02-20 02:12:01 +01:00
|
|
|
// Reply line connectors
|
|
|
|
.reply.children:not(.single) {
|
|
|
|
position: relative;
|
|
|
|
> .line {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2023-02-24 00:22:51 +01:00
|
|
|
top: 0;
|
2023-02-20 02:12:01 +01:00
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
2023-02-24 00:28:32 +01:00
|
|
|
border-left: 2px solid var(--X13);
|
|
|
|
border-bottom: 2px solid var(--X13);
|
2023-02-20 19:18:37 +01:00
|
|
|
margin-left: calc((var(--avatarSize) / 2) - 1px);
|
|
|
|
width: calc(var(--indent) / 2);
|
2023-02-24 00:22:51 +01:00
|
|
|
height: calc((var(--avatarSize) / 2));
|
|
|
|
border-bottom-left-radius: calc(var(--indent) / 2);
|
|
|
|
top: 8px;
|
2023-02-20 02:12:01 +01:00
|
|
|
}
|
|
|
|
}
|
2023-02-24 00:22:51 +01:00
|
|
|
&:not(:last-child) > .line::after {
|
|
|
|
mask: linear-gradient(to right, transparent 2px, black 2px);
|
|
|
|
-webkit-mask: linear-gradient(to right, transparent 2px, black 2px);
|
|
|
|
}
|
2023-02-20 02:12:01 +01:00
|
|
|
}
|
2023-01-07 00:58:52 +01:00
|
|
|
|
2023-02-26 03:22:23 +01:00
|
|
|
&.max-width_500px {
|
|
|
|
:not(.reply) > & {
|
|
|
|
.reply {
|
|
|
|
--avatarSize: 24px;
|
|
|
|
--indent: calc(var(--avatarSize) - 4px);
|
|
|
|
}
|
2023-03-16 00:53:22 +01:00
|
|
|
}
|
2023-03-16 01:26:13 +01:00
|
|
|
&.firstColumn {
|
2023-03-16 00:53:22 +01:00
|
|
|
> .main, > .line, > .children:not(.single) > .line {
|
|
|
|
--avatarSize: 35px;
|
|
|
|
--indent: 35px;
|
|
|
|
}
|
|
|
|
> .children:not(.single) {
|
|
|
|
padding-left: 28px !important;
|
2023-02-26 03:22:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-07 00:58:52 +01:00
|
|
|
&.max-width_450px {
|
2023-02-26 03:22:23 +01:00
|
|
|
padding: 14px 16px;
|
2023-01-28 22:10:45 +01:00
|
|
|
&.reply-to, &.reply-to-more {
|
2023-02-24 17:55:51 +01:00
|
|
|
padding: 14px 16px;
|
2023-01-28 22:10:45 +01:00
|
|
|
padding-top: 14px !important;
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
2023-01-07 00:58:52 +01:00
|
|
|
> .main > .avatar-container {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
</style>
|