72 lines
1.3 KiB
Vue
72 lines
1.3 KiB
Vue
<template>
|
|
<div class="post">
|
|
<header>
|
|
<a class="index" @click="reply">{{ post.index }}:</a>
|
|
<router-link class="name" :to="`/@${acct}`" v-user-preview="post.user.id"><b>{{ post.user.name }}</b></router-link>
|
|
<span>ID:<i>{{ acct }}</i></span>
|
|
</header>
|
|
<div>
|
|
<a v-if="post.reply">>>{{ post.reply.index }}</a>
|
|
{{ post.text }}
|
|
<div class="media" v-if="post.media">
|
|
<a v-for="file in post.media" :href="file.url" target="_blank">
|
|
<img :src="`${file.url}?thumbnail&size=512`" :alt="file.name" :title="file.name"/>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import getAcct from '../../../../../misc/user/get-acct';
|
|
|
|
export default Vue.extend({
|
|
props: ['post'],
|
|
computed: {
|
|
acct() {
|
|
return getAcct(this.post.user);
|
|
}
|
|
},
|
|
methods: {
|
|
reply() {
|
|
this.$emit('reply', this.post);
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.post
|
|
margin 0
|
|
padding 0
|
|
color #444
|
|
|
|
> header
|
|
position -webkit-sticky
|
|
position sticky
|
|
z-index 1
|
|
top 0
|
|
padding 8px 4px 4px 16px
|
|
background rgba(255, 255, 255, 0.9)
|
|
|
|
> .index
|
|
margin-right 0.25em
|
|
|
|
> .name
|
|
margin-right 0.5em
|
|
color #008000
|
|
|
|
> div
|
|
padding 0 16px 16px 16px
|
|
|
|
> .media
|
|
> a
|
|
display inline-block
|
|
|
|
> img
|
|
max-width 100%
|
|
vertical-align bottom
|
|
|
|
</style>
|