vuepress-theme-reco/layouts/Category.vue
2019-07-20 23:01:42 +08:00

114 lines
2.4 KiB
Vue

<template>
<div class="categories-wrapper" :class="recoShow ?'reco-show' : 'reco-hide'">
<!-- 公共布局 -->
<Common :sidebar="false" :isComment="false">
<!-- 页面标题 -->
<h2 class="title">{{ title }}</h2>
<!-- 博客列表 -->
<note-abstract
class="list"
:data="posts"
:currentPage="currentPage"
@currentTag="getCurrentTag"></note-abstract>
<!-- 分页 -->
<pagation
class="pagation"
:data="posts"
:currentPage="currentPage"
@getCurrentPage="getCurrentPage"></pagation>
</Common>
</div>
</template>
<script>
import Common from '@theme/components/Common.vue'
import NoteAbstract from '@theme/components/NoteAbstract.vue'
import Pagation from '@theme/components/Pagation.vue'
export default {
components: { Common, NoteAbstract, Pagation },
data () {
return {
// 当前页码
currentPage: 1,
recoShow: false
}
},
computed: {
// 时间降序后的博客列表
posts () {
let posts = this.$category.posts
posts.sort((a, b) => {
return this._getTimeNum(b) - this._getTimeNum(a)
})
this.getCurrentPage(1)
return posts
},
// 标题只显示分类名称
title () {
return this.$frontmatter.title.split('|')[0]
}
},
mounted () {
this.recoShow = true
},
methods: {
// 获取当前tag
getCurrentTag (tag) {
this.$emit('currentTag', tag)
},
// 获取当前页码
getCurrentPage (page) {
this.currentPage = page
this.$page.currentPage = page
},
// 获取时间的数字类型
_getTimeNum (date) {
return parseInt(new Date(date.frontmatter.date).getTime())
}
}
}
</script>
<style src="../styles/theme.styl" lang="stylus"></style>
<style lang="stylus" scoped>
@require '../styles/loadMixin.styl'
.categories-wrapper
max-width: 740px;
margin: 0 auto;
padding: 4.6rem 2.5rem 0;
.title
margin-bottom 3rem
&.reco-hide
.title, .list, .pagation
load-start()
&.reco-show {
.title {
load-end(0.08s)
}
.list {
load-end(0.16s)
}
.pagation {
load-end(0.24s)
}
}
@media (max-width: $MQMobile)
.categories-wrapper
padding: 4.6rem 1rem 0;
.page-edit
.edit-link
margin-bottom .5rem
.last-updated
font-size .8em
float none
text-align left
</style>