2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2020-08-09 08:51:02 +02:00
|
|
|
<div class="wrpstxzv" :class="{ children }" v-size="{ max: [450] }">
|
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>
|
|
|
|
<div class="content" v-show="note.cw == null || showContent">
|
2020-10-17 13:12:00 +02:00
|
|
|
<XSubNote-content class="text" :note="note"/>
|
2020-05-10 09:22:39 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
<XSub v-for="reply in replies" :key="reply.id" :note="reply" class="reply" :detail="true" :children="true"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import XNoteHeader from './note-header.vue';
|
|
|
|
import XSubNoteContent from './sub-note-content.vue';
|
|
|
|
import XCwButton from './cw-button.vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import * as os from '@client/os';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
|
|
|
name: 'XSub',
|
2020-05-10 09:22:39 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
|
|
|
XNoteHeader,
|
|
|
|
XSubNoteContent,
|
|
|
|
XCwButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
note: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
2020-05-10 09:22:39 +02:00
|
|
|
detail: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
children: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
// TODO
|
|
|
|
truncate: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2020-05-10 09:22:39 +02:00
|
|
|
showContent: false,
|
|
|
|
replies: [],
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
2020-05-10 09:22:39 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
if (this.detail) {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('notes/children', {
|
2020-05-10 09:22:39 +02:00
|
|
|
noteId: this.note.id,
|
|
|
|
limit: 5
|
|
|
|
}).then(replies => {
|
|
|
|
this.replies = replies;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
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
|
|
|
|
|
|
|
> .reply {
|
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;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
</style>
|