2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-01-09 20:45:33 +00:00
|
|
|
<div :class="[$style.root, { [$style.children]: depth > 1 }]">
|
|
|
|
<div :class="$style.main">
|
2023-01-16 05:18:11 +00:00
|
|
|
<MkAvatar :class="$style.avatar" :user="note.user" link preview/>
|
2023-01-09 20:45:33 +00:00
|
|
|
<div :class="$style.body">
|
|
|
|
<MkNoteHeader :class="$style.header" :note="note" :mini="true"/>
|
|
|
|
<div>
|
|
|
|
<p v-if="note.cw != null" :class="$style.cw">
|
|
|
|
<Mfm v-if="note.cw != ''" style="margin-right: 8px;" :text="note.cw" :author="note.user" :i="$i"/>
|
2022-12-30 04:56:22 +00:00
|
|
|
<MkCwButton v-model="showContent" :note="note"/>
|
2020-05-10 07:22:39 +00:00
|
|
|
</p>
|
2023-01-09 20:45:33 +00:00
|
|
|
<div v-show="note.cw == null || showContent">
|
|
|
|
<MkSubNoteContent :class="$style.text" :note="note"/>
|
2020-05-10 07:22:39 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-18 13:11:44 +00:00
|
|
|
<template v-if="depth < 5">
|
2023-01-09 20:45:33 +00:00
|
|
|
<MkNoteSub v-for="reply in replies" :key="reply.id" :note="reply" :class="$style.reply" :detail="true" :depth="depth + 1"/>
|
2021-11-18 13:11:44 +00:00
|
|
|
</template>
|
2023-01-09 20:45:33 +00:00
|
|
|
<div v-else :class="$style.more">
|
|
|
|
<MkA class="_link" :to="notePage(note)">{{ i18n.ts.continueThread }} <i class="ti ti-chevron-double-right"></i></MkA>
|
2021-11-18 13:11:44 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
|
|
|
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';
|
2022-07-20 13:24:26 +00:00
|
|
|
import { notePage } from '@/filters/note';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-07-20 13:24:26 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
note: misskey.entities.Note;
|
|
|
|
detail?: boolean;
|
2021-11-18 13:11:44 +00:00
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
// how many notes are in between this one and the note being viewed in detail
|
|
|
|
depth?: number;
|
|
|
|
}>(), {
|
|
|
|
depth: 1,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
2022-01-14 01:25:51 +00:00
|
|
|
|
|
|
|
let showContent = $ref(false);
|
|
|
|
let replies: misskey.entities.Note[] = $ref([]);
|
|
|
|
|
|
|
|
if (props.detail) {
|
|
|
|
os.api('notes/children', {
|
|
|
|
noteId: props.note.id,
|
2022-07-20 13:24:26 +00:00
|
|
|
limit: 5,
|
2022-01-14 01:25:51 +00:00
|
|
|
}).then(res => {
|
|
|
|
replies = res;
|
|
|
|
});
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-09 20:45:33 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 19:37:25 +00:00
|
|
|
padding: 16px 32px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
2020-05-10 07:22:39 +00:00
|
|
|
&.children {
|
|
|
|
padding: 10px 0 0 16px;
|
|
|
|
font-size: 1em;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-01-09 20:45:33 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:45:33 +00:00
|
|
|
.main {
|
|
|
|
display: flex;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:45:33 +00:00
|
|
|
.avatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: block;
|
|
|
|
margin: 0 8px 0 0;
|
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:45:33 +00:00
|
|
|
.body {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
2020-05-10 07:22:39 +00:00
|
|
|
|
2023-01-09 20:45:33 +00:00
|
|
|
.header {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
2021-11-18 13:11:44 +00:00
|
|
|
|
2023-01-09 20:45:33 +00:00
|
|
|
.cw {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply, .more {
|
|
|
|
border-left: solid 0.5px var(--divider);
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.more {
|
|
|
|
padding: 10px 0 0 16px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
|
|
|
|
@container (max-width: 450px) {
|
2023-01-09 20:45:33 +00:00
|
|
|
.root {
|
2022-12-25 23:40:13 +00:00
|
|
|
padding: 14px 16px;
|
|
|
|
|
|
|
|
&.children {
|
|
|
|
padding: 10px 0 0 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|