2018-02-11 08:52:37 +01:00
|
|
|
<template>
|
2018-02-20 15:02:24 +01:00
|
|
|
<div class="sub" :title="title">
|
2018-03-27 09:51:12 +02:00
|
|
|
<router-link class="avatar-anchor" :to="`/@${acct}`">
|
2018-03-29 07:48:47 +02:00
|
|
|
<img class="avatar" :src="`${post.user.avatarUrl}?thumbnail&size=64`" alt="avatar" v-user-preview="post.userId"/>
|
2018-02-23 13:45:59 +01:00
|
|
|
</router-link>
|
2018-02-11 08:52:37 +01:00
|
|
|
<div class="main">
|
|
|
|
<header>
|
2018-03-29 07:48:47 +02:00
|
|
|
<router-link class="name" :to="`/@${acct}`" v-user-preview="post.userId">{{ post.user.name }}</router-link>
|
2018-03-27 09:51:12 +02:00
|
|
|
<span class="username">@{{ acct }}</span>
|
|
|
|
<router-link class="created-at" :to="`/@${acct}/${post.id}`">
|
2018-03-29 07:48:47 +02:00
|
|
|
<mk-time :time="post.createdAt"/>
|
2018-02-23 13:45:59 +01:00
|
|
|
</router-link>
|
2018-02-11 08:52:37 +01:00
|
|
|
</header>
|
|
|
|
<div class="body">
|
|
|
|
<mk-sub-post-content class="text" :post="post"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-02-11 16:41:48 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import dateStringify from '../../../common/scripts/date-stringify';
|
2018-04-01 21:15:27 +02:00
|
|
|
import getAcct from '../../../../../misc/user/get-acct';
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-02-11 16:41:48 +01:00
|
|
|
export default Vue.extend({
|
|
|
|
props: ['post'],
|
|
|
|
computed: {
|
2018-03-27 09:51:12 +02:00
|
|
|
acct() {
|
|
|
|
return getAcct(this.post.user);
|
|
|
|
},
|
2018-02-11 16:41:48 +01:00
|
|
|
title(): string {
|
2018-03-29 07:48:47 +02:00
|
|
|
return dateStringify(this.post.createdAt);
|
2018-02-11 16:41:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2018-02-11 08:52:37 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-02-20 15:02:24 +01:00
|
|
|
.sub
|
2018-02-11 08:52:37 +01:00
|
|
|
margin 0
|
2018-02-22 14:27:28 +01:00
|
|
|
padding 16px
|
2018-02-11 08:52:37 +01:00
|
|
|
font-size 0.9em
|
|
|
|
|
2018-02-22 14:27:28 +01:00
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
clear both
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-02-22 14:27:28 +01:00
|
|
|
&:hover
|
|
|
|
> .main > footer > button
|
|
|
|
color #888
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-02-22 14:27:28 +01:00
|
|
|
> .avatar-anchor
|
|
|
|
display block
|
|
|
|
float left
|
|
|
|
margin 0 14px 0 0
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-02-22 14:27:28 +01:00
|
|
|
> .avatar
|
2018-02-11 08:52:37 +01:00
|
|
|
display block
|
2018-02-22 14:27:28 +01:00
|
|
|
width 52px
|
|
|
|
height 52px
|
|
|
|
margin 0
|
|
|
|
border-radius 8px
|
|
|
|
vertical-align bottom
|
|
|
|
|
|
|
|
> .main
|
|
|
|
float left
|
|
|
|
width calc(100% - 66px)
|
|
|
|
|
|
|
|
> header
|
|
|
|
display flex
|
|
|
|
margin-bottom 2px
|
|
|
|
white-space nowrap
|
|
|
|
line-height 21px
|
|
|
|
|
|
|
|
> .name
|
2018-02-11 08:52:37 +01:00
|
|
|
display block
|
2018-02-22 14:27:28 +01:00
|
|
|
margin 0 .5em 0 0
|
|
|
|
padding 0
|
|
|
|
overflow hidden
|
|
|
|
color #607073
|
|
|
|
font-size 1em
|
|
|
|
font-weight bold
|
|
|
|
text-decoration none
|
|
|
|
text-overflow ellipsis
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
text-decoration underline
|
|
|
|
|
|
|
|
> .username
|
|
|
|
margin 0 .5em 0 0
|
|
|
|
color #d1d8da
|
|
|
|
|
|
|
|
> .created-at
|
|
|
|
margin-left auto
|
|
|
|
color #b2b8bb
|
|
|
|
|
|
|
|
> .body
|
|
|
|
|
|
|
|
> .text
|
|
|
|
cursor default
|
2018-02-11 08:52:37 +01:00
|
|
|
margin 0
|
2018-02-22 14:27:28 +01:00
|
|
|
padding 0
|
|
|
|
font-size 1.1em
|
|
|
|
color #717171
|
|
|
|
|
|
|
|
pre
|
|
|
|
max-height 120px
|
|
|
|
font-size 80%
|
2018-02-11 08:52:37 +01:00
|
|
|
|
|
|
|
</style>
|