2018-02-14 22:42:21 -06:00
|
|
|
<template>
|
2019-02-25 04:45:00 -06:00
|
|
|
<div class="yohlumlkhizgfkvvscwfcrcggkotpvry" :class="{ smart: $store.state.device.postStyle == 'smart', mini: narrow }">
|
|
|
|
<mk-avatar class="avatar" :user="note.user" v-if="$store.state.device.postStyle != 'smart' && !narrow"/>
|
2018-02-14 22:42:21 -06:00
|
|
|
<div class="main">
|
2018-06-08 07:17:48 -05:00
|
|
|
<mk-note-header class="header" :note="note" :mini="true"/>
|
2018-02-14 22:42:21 -06:00
|
|
|
<div class="body">
|
2018-09-13 03:44:36 -05:00
|
|
|
<p v-if="note.cw != null" class="cw">
|
|
|
|
<span class="text" v-if="note.cw != ''">{{ note.cw }}</span>
|
2018-12-07 19:36:26 -06:00
|
|
|
<mk-cw-button v-model="showContent" :note="note"/>
|
2018-09-13 03:44:36 -05:00
|
|
|
</p>
|
|
|
|
<div class="content" v-show="note.cw == null || showContent">
|
|
|
|
<mk-sub-note-content class="text" :note="note"/>
|
|
|
|
</div>
|
2018-02-14 22:42:21 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-03-27 02:51:12 -05:00
|
|
|
|
2018-02-14 22:42:21 -06:00
|
|
|
export default Vue.extend({
|
2018-09-13 03:44:36 -05:00
|
|
|
props: {
|
|
|
|
note: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-02-25 04:45:00 -06:00
|
|
|
inject: {
|
|
|
|
narrow: {
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-09-13 03:44:36 -05:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
showContent: false
|
|
|
|
};
|
|
|
|
}
|
2018-02-14 22:42:21 -06:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 05:59:19 -05:00
|
|
|
.yohlumlkhizgfkvvscwfcrcggkotpvry
|
2018-05-29 01:21:03 -05:00
|
|
|
display flex
|
2018-02-14 22:42:21 -06:00
|
|
|
margin 0
|
|
|
|
padding 0
|
2019-02-04 22:54:40 -06:00
|
|
|
overflow hidden
|
2018-05-29 01:21:03 -05:00
|
|
|
font-size 10px
|
2018-02-14 22:42:21 -06:00
|
|
|
|
2019-02-25 04:45:00 -06:00
|
|
|
&:not(.mini)
|
|
|
|
|
|
|
|
@media (min-width 350px)
|
|
|
|
font-size 12px
|
|
|
|
|
|
|
|
@media (min-width 500px)
|
|
|
|
font-size 14px
|
2018-05-29 01:21:03 -05:00
|
|
|
|
2019-02-25 04:45:00 -06: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
|
2018-02-14 22:42:21 -06:00
|
|
|
|
2018-05-25 20:59:18 -05:00
|
|
|
&.smart
|
|
|
|
> .main
|
|
|
|
width 100%
|
|
|
|
|
|
|
|
> header
|
|
|
|
align-items center
|
|
|
|
|
2018-04-29 03:17:15 -05:00
|
|
|
> .avatar
|
2018-05-29 01:21:03 -05:00
|
|
|
flex-shrink 0
|
2018-02-14 22:42:21 -06:00
|
|
|
display block
|
2018-05-29 01:21:03 -05:00
|
|
|
margin 0 10px 0 0
|
|
|
|
width 40px
|
|
|
|
height 40px
|
2018-04-29 03:17:15 -05:00
|
|
|
border-radius 8px
|
2018-02-14 22:42:21 -06:00
|
|
|
|
2018-05-29 01:21:03 -05:00
|
|
|
> .main
|
|
|
|
flex 1
|
|
|
|
min-width 0
|
2018-05-28 01:30:26 -05:00
|
|
|
|
2018-06-08 06:57:02 -05:00
|
|
|
> .header
|
2018-05-26 02:05:02 -05:00
|
|
|
margin-bottom 2px
|
2018-02-14 22:42:21 -06:00
|
|
|
|
|
|
|
> .body
|
|
|
|
|
2018-09-13 03:44:36 -05:00
|
|
|
> .cw
|
2018-02-14 22:42:21 -06:00
|
|
|
cursor default
|
2018-09-13 03:44:36 -05:00
|
|
|
display block
|
2018-02-14 22:42:21 -06:00
|
|
|
margin 0
|
|
|
|
padding 0
|
2018-09-13 03:44:36 -05:00
|
|
|
overflow-wrap break-word
|
2018-09-27 00:32:48 -05:00
|
|
|
color var(--noteText)
|
2018-09-13 03:44:36 -05:00
|
|
|
|
|
|
|
> .text
|
|
|
|
margin-right 8px
|
|
|
|
|
|
|
|
> .content
|
|
|
|
> .text
|
|
|
|
cursor default
|
|
|
|
margin 0
|
|
|
|
padding 0
|
2018-09-27 22:13:08 -05:00
|
|
|
color var(--subNoteText)
|
2018-09-13 03:44:36 -05:00
|
|
|
|
2018-02-14 22:42:21 -06:00
|
|
|
</style>
|