summaryrefslogtreecommitdiff
path: root/src/server/web/app/desktop/views/pages/post.vue
blob: c7b8729b72ea933a0edea3d3ee5cde3321ccb631 (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
<template>
<mk-ui>
	<main v-if="!fetching">
		<a v-if="post.next" :href="post.next">%fa:angle-up%%i18n:desktop.tags.mk-post-page.next%</a>
		<mk-post-detail :post="post"/>
		<a v-if="post.prev" :href="post.prev">%fa:angle-down%%i18n:desktop.tags.mk-post-page.prev%</a>
	</main>
</mk-ui>
</template>

<script lang="ts">
import Vue from 'vue';
import Progress from '../../../common/scripts/loading';

export default Vue.extend({
	data() {
		return {
			fetching: true,
			post: null
		};
	},
	watch: {
		$route: 'fetch'
	},
	created() {
		this.fetch();
	},
	methods: {
		fetch() {
			Progress.start();
			this.fetching = true;

			(this as any).api('posts/show', {
				post_id: this.$route.params.post
			}).then(post => {
				this.post = post;
				this.fetching = false;

				Progress.done();
			});
		}
	}
});
</script>

<style lang="stylus" scoped>
main
	padding 16px
	text-align center

	> a
		display inline-block

		&:first-child
			margin-bottom 4px

		&:last-child
			margin-top 4px

		> [data-fa]
			margin-right 4px

	> .mk-post-detail
		margin 0 auto
		width 640px

</style>