iceshrimp-legacy/src/client/app/desktop/views/components/note-preview.vue
2018-09-28 19:59:19 +09:00

87 lines
1.4 KiB
Vue

<template>
<div class="qiziqtywpuaucsgarwajitwaakggnisj" :title="title">
<mk-avatar class="avatar" :user="note.user" v-if="!mini"/>
<div class="main">
<mk-note-header class="header" :note="note" :mini="true"/>
<div class="body">
<p v-if="note.cw != null" class="cw">
<span class="text" v-if="note.cw != ''">{{ note.cw }}</span>
<mk-cw-button v-model="showContent"/>
</p>
<div class="content" v-show="note.cw == null || showContent">
<mk-sub-note-content class="text" :note="note"/>
</div>
</div>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: {
note: {
type: Object,
required: true
},
mini: {
type: Boolean,
required: false,
default: false
}
},
data() {
return {
showContent: false
};
},
computed: {
title(): string {
return new Date(this.note.createdAt).toLocaleString();
}
}
});
</script>
<style lang="stylus" scoped>
.qiziqtywpuaucsgarwajitwaakggnisj
display flex
font-size 0.9em
> .avatar
flex-shrink 0
display block
margin 0 12px 0 0
width 48px
height 48px
border-radius 8px
> .main
flex 1
min-width 0
> .body
> .cw
cursor default
display block
margin 0
padding 0
overflow-wrap break-word
color var(--noteText)
> .text
margin-right 8px
> .content
> .text
cursor default
margin 0
padding 0
color var(--subNoteText)
</style>