Sharkey/src/web/app/mobile/views/pages/post.vue

77 lines
1.3 KiB
Vue
Raw Normal View History

2018-02-15 22:50:30 +02:00
<template>
<mk-ui>
<span slot="header">%fa:R sticky-note%%i18n:mobile.tags.mk-post-page.title%</span>
<main v-if="!fetching">
<a v-if="post.next" :href="post.next">%fa:angle-up%%i18n:mobile.tags.mk-post-page.next%</a>
<div>
<mk-post-detail :post="parent.post"/>
</div>
<a v-if="post.prev" :href="post.prev">%fa:angle-down%%i18n:mobile.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({
props: ['postId'],
data() {
return {
fetching: true,
post: null
};
},
mounted() {
document.title = 'Misskey';
document.documentElement.style.background = '#313a42';
Progress.start();
2018-02-18 05:35:18 +02:00
(this as any).api('posts/show', {
2018-02-15 22:50:30 +02:00
post_id: this.postId
}).then(post => {
this.post = post;
2018-02-19 16:37:09 +02:00
this.fetching = false;
2018-02-15 22:50:30 +02:00
Progress.done();
});
}
});
</script>
<style lang="stylus" scoped>
main
text-align center
> div
margin 8px auto
padding 0
max-width 500px
width calc(100% - 16px)
@media (min-width 500px)
margin 16px auto
width calc(100% - 32px)
> a
display inline-block
&:first-child
margin-top 8px
@media (min-width 500px)
margin-top 16px
&:last-child
margin-bottom 8px
@media (min-width 500px)
margin-bottom 16px
> [data-fa]
margin-right 4px
</style>