iceshrimp-legacy/src/web/app/mobile/views/components/posts.vue

112 lines
1.9 KiB
Vue
Raw Normal View History

2018-02-14 04:24:49 +01:00
<template>
<div class="mk-posts">
<slot name="head"></slot>
2018-02-22 09:51:08 +01:00
<slot></slot>
2018-02-14 04:24:49 +01:00
<template v-for="(post, i) in _posts">
2018-03-04 06:33:39 +01:00
<mk-post :post="post" :key="post.id" @update:post="onPostUpdated(i, $event)"/>
2018-02-20 17:39:51 +01:00
<p class="date" v-if="i != posts.length - 1 && post._date != _posts[i + 1]._date">
2018-02-14 04:24:49 +01:00
<span>%fa:angle-up%{{ post._datetext }}</span>
<span>%fa:angle-down%{{ _posts[i + 1]._datetext }}</span>
</p>
</template>
2018-02-22 09:37:40 +01:00
<footer>
<slot name="tail"></slot>
</footer>
2018-02-14 04:24:49 +01:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-02-21 21:30:37 +01:00
2018-02-14 04:24:49 +01:00
export default Vue.extend({
props: {
posts: {
type: Array,
default: () => []
}
},
computed: {
_posts(): any[] {
return (this.posts as any).map(post => {
2018-03-28 09:39:14 +02:00
const date = new Date(post.createdAt).getDate();
const month = new Date(post.createdAt).getMonth() + 1;
2018-02-14 04:24:49 +01:00
post._date = date;
post._datetext = `${month}${date}`;
return post;
});
}
2018-02-22 14:03:44 +01:00
},
methods: {
onPostUpdated(i, post) {
Vue.set((this as any).posts, i, post);
}
2018-02-14 04:24:49 +01:00
}
});
</script>
<style lang="stylus" scoped>
2018-03-03 05:47:55 +01:00
@import '~const.styl'
2018-02-14 04:24:49 +01:00
.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
2018-02-22 09:51:08 +01:00
&:empty
display none
2018-02-14 04:24:49 +01:00
> button
margin 0
padding 16px
width 100%
color $theme-color
border-radius 0 0 8px 8px
&:disabled
opacity 0.7
</style>