summaryrefslogtreecommitdiff
path: root/src/web/app/desktop/views/components/posts.vue
blob: ec36889ec8230b4fb85d06d6393151bcc9886efc (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<template>
<div class="mk-posts">
	<template v-for="(post, i) in _posts">
		<x-post :post="post" :key="post.id" @update:post="onPostUpdated(i, $event)"/>
		<p class="date" v-if="i != posts.length - 1 && post._date != _posts[i + 1]._date">
			<span>%fa:angle-up%{{ post._datetext }}</span>
			<span>%fa:angle-down%{{ _posts[i + 1]._datetext }}</span>
		</p>
	</template>
	<footer>
		<slot name="footer"></slot>
	</footer>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
import XPost from './posts.post.vue';

export default Vue.extend({
	components: {
		XPost
	},
	props: {
		posts: {
			type: Array,
			default: () => []
		}
	},
	computed: {
		_posts(): any[] {
			return (this.posts as any).map(post => {
				const date = new Date(post.created_at).getDate();
				const month = new Date(post.created_at).getMonth() + 1;
				post._date = date;
				post._datetext = `${month}${date}日`;
				return post;
			});
		}
	},
	methods: {
		focus() {
			(this.$el as any).children[0].focus();
		},
		onPostUpdated(i, post) {
			Vue.set((this as any).posts, i, post);
		}
	}
});
</script>

<style lang="stylus" scoped>
.mk-posts

	> .date
		display block
		margin 0
		line-height 32px
		font-size 14px
		text-align center
		color #aaa
		background #fdfdfd
		border-bottom solid 1px #eaeaea

		span
			margin 0 16px

		[data-fa]
			margin-right 8px

	> footer
		padding 16px
		text-align center
		color #ccc
		border-top solid 1px #eaeaea
		border-bottom-left-radius 4px
		border-bottom-right-radius 4px

</style>