2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2020-05-10 09:05:01 +02:00
|
|
|
<div class="yohlumlk">
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkAvatar class="avatar" :user="note.user"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
<div class="main">
|
2020-10-17 13:12:00 +02:00
|
|
|
<XNoteHeader class="header" :note="note" :mini="true"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
<div class="body">
|
|
|
|
<p v-if="note.cw != null" class="cw">
|
|
|
|
<span class="text" v-if="note.cw != ''">{{ note.cw }}</span>
|
2020-10-17 13:12:00 +02:00
|
|
|
<XCwButton v-model:value="showContent" :note="note"/>
|
2020-01-29 20:37:25 +01: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-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</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';
|
2020-10-17 13:12:00 +02:00
|
|
|
import * as os from '@/os';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
|
|
|
XNoteHeader,
|
|
|
|
XSubNoteContent,
|
|
|
|
XCwButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
note: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
showContent: false
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-05-10 09:05:01 +02:00
|
|
|
.yohlumlk {
|
2020-01-29 20:37:25 +01:00
|
|
|
display: flex;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
2020-05-31 07:46:50 +02:00
|
|
|
font-size: 0.95em;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
|
|
|
|
@media (min-width: 350px) {
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
width: 44px;
|
|
|
|
height: 44px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 500px) {
|
|
|
|
margin: 0 12px 0 0;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: block;
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .main {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
|
|
|
|
> .header {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
|
|
|
|
> .cw {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
> .text {
|
|
|
|
cursor: default;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|