summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/widgets/channel.channel.note.vue
blob: 7767919066fd9e336757754cc7b5c9c6f6d5e188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<template>
<div class="note">
	<header>
		<a class="index" @click="reply">{{ note.index }}:</a>
		<router-link class="name" :to="note.user | userPage" v-user-preview="note.user.id"><b>{{ note.user | userName }}</b></router-link>
		<span>ID:<i>{{ note.user | acct }}</i></span>
	</header>
	<div>
		<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">
				<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';

export default Vue.extend({
	props: ['note'],
	methods: {
		reply() {
			this.$emit('reply', this.note);
		}
	}
});
</script>

<style lang="stylus" scoped>
.note
	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>