2018-02-11 01:52:37 -06:00
|
|
|
<template>
|
2018-02-12 17:31:03 -06:00
|
|
|
<div class="mk-timeline">
|
2018-02-11 02:11:30 -06:00
|
|
|
<template v-for="(post, i) in _posts">
|
2018-02-11 02:43:00 -06:00
|
|
|
<mk-timeline-post :post.sync="post" :key="post.id"/>
|
2018-02-11 02:11:30 -06:00
|
|
|
<p class="date" :key="post.id + '-time'" 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>
|
2018-02-11 01:52:37 -06:00
|
|
|
</template>
|
2018-02-12 17:31:03 -06:00
|
|
|
<footer>
|
|
|
|
<slot name="footer"></slot>
|
2018-02-11 01:52:37 -06:00
|
|
|
</footer>
|
2018-02-11 08:26:35 -06:00
|
|
|
</div>
|
2018-02-11 01:52:37 -06:00
|
|
|
</template>
|
|
|
|
|
2018-02-11 02:04:03 -06:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-02-11 01:52:37 -06:00
|
|
|
|
2018-02-11 02:04:03 -06:00
|
|
|
export default Vue.extend({
|
2018-02-12 17:24:44 -06:00
|
|
|
props: {
|
|
|
|
posts: {
|
|
|
|
type: Array,
|
|
|
|
default: []
|
|
|
|
}
|
|
|
|
},
|
2018-02-11 02:04:03 -06:00
|
|
|
computed: {
|
2018-02-12 17:31:03 -06:00
|
|
|
_posts(): any[] {
|
2018-02-11 02:04:03 -06:00
|
|
|
return this.posts.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;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
tail(): any {
|
|
|
|
return this.posts[this.posts.length - 1];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
focus() {
|
2018-02-12 17:31:03 -06:00
|
|
|
(this.$el as any).children[0].focus();
|
2018-02-11 02:04:03 -06:00
|
|
|
}
|
|
|
|
}
|
2018-02-11 01:52:37 -06:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-timeline
|
|
|
|
|
|
|
|
> .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>
|