rudeshark.net/src/client/app/desktop/views/widgets/channel.channel.note.vue

76 lines
1.4 KiB
Vue
Raw Normal View History

2018-02-21 07:30:03 +01:00
<template>
2018-04-07 19:30:37 +02:00
<div class="note">
2018-02-21 07:30:03 +01:00
<header>
2018-04-07 19:30:37 +02:00
<a class="index" @click="reply">{{ note.index }}:</a>
<router-link class="name" :to="`/@${acct}`" v-user-preview="note.user.id"><b>{{ name }}</b></router-link>
2018-03-27 09:51:12 +02:00
<span>ID:<i>{{ acct }}</i></span>
2018-02-21 07:30:03 +01:00
</header>
<div>
2018-04-07 19:30:37 +02:00
<a v-if="note.reply">&gt;&gt;{{ note.reply.index }}</a>
{{ note.text }}
<div class="media" v-if="note.media">
<a v-for="file in note.media" :href="file.url" target="_blank">
2018-02-21 07:30:03 +01:00
<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';
2018-04-02 06:44:32 +02:00
import getAcct from '../../../../../acct/render';
2018-04-05 18:36:34 +02:00
import getUserName from '../../../../../renderers/get-user-name';
2018-03-27 09:51:12 +02:00
2018-02-21 07:30:03 +01:00
export default Vue.extend({
2018-04-07 19:30:37 +02:00
props: ['note'],
2018-03-27 09:51:12 +02:00
computed: {
acct() {
2018-04-07 19:30:37 +02:00
return getAcct(this.note.user);
2018-04-05 18:36:34 +02:00
},
name() {
2018-04-07 19:30:37 +02:00
return getUserName(this.note.user);
2018-03-27 09:51:12 +02:00
}
},
2018-02-21 07:30:03 +01:00
methods: {
reply() {
2018-04-07 19:30:37 +02:00
this.$emit('reply', this.note);
2018-02-21 07:30:03 +01:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-04-07 19:30:37 +02:00
.note
2018-02-21 07:30:03 +01:00
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>