summaryrefslogtreecommitdiff
path: root/src/server/web/app/mobile/views/components/posts.vue
blob: 4695f1beaa83dc29fe1eec3ae0def23000007465 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<template>
<div class="mk-posts">
	<slot name="head"></slot>
	<slot></slot>
	<template v-for="(post, i) in _posts">
		<mk-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="tail"></slot>
	</footer>
</div>
</template>

<script lang="ts">
import Vue from 'vue';

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

<style lang="stylus" scoped>
@import '~const.styl'

.mk-posts
	background #fff
	border-radius 8px
	box-shadow 0 0 0 1px rgba(0, 0, 0, 0.2)

	> .init
		padding 64px 0
		text-align center
		color #999

		> [data-fa]
			margin-right 4px

	> .empty
		margin 0 auto
		padding 32px
		max-width 400px
		text-align center
		color #999

		> [data-fa]
			display block
			margin-bottom 16px
			font-size 3em
			color #ccc

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

		span
			margin 0 16px

		[data-fa]
			margin-right 8px

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

		&:empty
			display none

		> button
			margin 0
			padding 16px
			width 100%
			color $theme-color
			border-radius 0 0 8px 8px

			&:disabled
				opacity 0.7

</style>