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 }">
|
2020-01-29 20:37:25 +01:00
|
|
|
<div class="main">
|
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">
|
2020-12-19 02:55:52 +01: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>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-show="note.cw == null || showContent" class="content">
|
2022-01-14 02:25:51 +01:00
|
|
|
<MkNoteSubNoteContent class="text" :note="note"/>
|
2020-05-10 09:22:39 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-18 14:11:44 +01:00
|
|
|
<template v-if="depth < 5">
|
2022-01-14 02:25:51 +01:00
|
|
|
<MkNoteSub v-for="reply in replies" :key="reply.id" :note="reply" class="reply" :detail="true" :depth="depth + 1"/>
|
2021-11-18 14:11:44 +01:00
|
|
|
</template>
|
|
|
|
<div v-else class="more">
|
|
|
|
<MkA class="text _link" :to="notePage(note)">{{ $ts.continueThread }} <i class="fas fa-angle-double-right"></i></MkA>
|
|
|
|
</div>
|
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';
|
|
|
|
import * as misskey from 'misskey-js';
|
2021-11-28 12:29:37 +01:00
|
|
|
import { notePage } from '@/filters/note';
|
2020-01-29 20:37:25 +01:00
|
|
|
import XNoteHeader from './note-header.vue';
|
2022-01-14 02:25:51 +01:00
|
|
|
import MkNoteSubNoteContent from './sub-note-content.vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import XCwButton from './cw-button.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-14 02:25:51 +01:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
note: misskey.entities.Note;
|
|
|
|
detail?: boolean;
|
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);
|
|
|
|
let replies: misskey.entities.Note[] = $ref([]);
|
|
|
|
|
|
|
|
if (props.detail) {
|
|
|
|
os.api('notes/children', {
|
|
|
|
noteId: props.note.id,
|
|
|
|
limit: 5
|
|
|
|
}).then(res => {
|
|
|
|
replies = res;
|
|
|
|
});
|
|
|
|
}
|
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;
|
|
|
|
|
|
|
|
&.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;
|
|
|
|
|
|
|
|
> .header {
|
|
|
|
margin-bottom: 2px;
|
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>
|