新增:《我的归档》

This commit is contained in:
2022-08-04 18:23:03 +08:00
parent 7a78c8dc65
commit 0d793fc3e9
8 changed files with 151 additions and 19 deletions

View File

@@ -7,7 +7,7 @@ const articleData = await Promise.all(
glob.sync('./repos/**/*.md', {
onlyFiles: true,
objectMode: true,
ignore: ['./repos/**/index.md', './repos/**/tags.md', './repos/**/me.md'], // without !
ignore: ['./repos/**/index.md', './repos/**/tags.md', './repos/**/archives.md', './repos/**/me.md'], // without !
}).map(async (article) => {
const file = matter.read(`${article.path}`)
const { data, path } = file

View File

@@ -22,6 +22,11 @@ export const nav: DefaultTheme.Config['nav'] = [
link: '/tags',
activeMatch: '/tags'
},
{
text: '我的归档',
link: '/archives',
activeMatch: '/archives'
},
{
text: '关于',
items: [

View File

@@ -12,8 +12,8 @@
<script lang="ts" setup>
import DefaultTheme from 'vitepress/theme'
import { useData } from 'vitepress'
import Comment from './Comment.vue'
import Footer from './Footer.vue'
import Comment from './components/Comment.vue'
import Footer from './components/Footer.vue'
const { Layout } = DefaultTheme
const { theme, frontmatter } = useData()

View File

@@ -0,0 +1,118 @@
<template>
<div class="timeline-wrapper">
<el-timeline>
<el-timeline-item
v-for="year in archiveDataObj.yearList"
:key="year"
type="primary"
hollow
placement="top"
>
<div class="year">{{ year }}</div>
<div v-for="article in archiveDataObj.archiveData[year]">
<el-card shadow="never">
<a :href="article.path" class="title" target="_blank">{{ article.title }}</a>
<div class="meta-wrapper">
<div class="meta-item">
<span class="meta-icon author">
<svg role="img" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><title>原创作者</title><path d="M858.5 763.6c-18.9-44.8-46.1-85-80.6-119.5-34.5-34.5-74.7-61.6-119.5-80.6-0.4-0.2-0.8-0.3-1.2-0.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-0.4 0.2-0.8 0.3-1.2 0.5-44.8 18.9-85 46-119.5 80.6-34.5 34.5-61.6 74.7-80.6 119.5C146.9 807.5 137 854 136 901.8c-0.1 4.5 3.5 8.2 8 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c0.1 4.4 3.6 7.8 8 7.8h60c4.5 0 8.1-3.7 8-8.2-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"></path></svg>
</span>
<span class="meta-content">
<a :href="frontmatter?.authorLink ?? theme.articleMetadataConfig.authorLink" title="进入作者主页">{{ article?.author ?? theme.articleMetadataConfig.author }}</a>
</span>
</div>
<div class="meta-item">
<span class="meta-icon date">
<svg role="img" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><title>发布时间</title><path d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64z m0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"></path><path d="M686.7 638.6L544.1 535.5V288c0-4.4-3.6-8-8-8H488c-4.4 0-8 3.6-8 8v275.4c0 2.6 1.2 5 3.3 6.5l165.4 120.6c3.6 2.6 8.6 1.8 11.2-1.7l28.6-39c2.6-3.7 1.8-8.7-1.8-11.2z"></path></svg>
</span>
<time class="meta-content">{{ formatDate(article.date) }}</time>
</div>
<div class="meta-item" v-if="theme.articleMetadataConfig?.showPv ?? false">
<span class="meta-icon pv">
<svg role="img" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><title>阅读数</title><path d="M942.2 486.2C847.4 286.5 704.1 186 512 186c-192.2 0-335.4 100.5-430.2 300.3-7.7 16.2-7.7 35.2 0 51.5C176.6 737.5 319.9 838 512 838c192.2 0 335.4-100.5 430.2-300.3 7.7-16.2 7.7-35 0-51.5zM512 766c-161.3 0-279.4-81.8-362.7-254C232.6 339.8 350.7 258 512 258c161.3 0 279.4 81.8 362.7 254C791.5 684.2 673.4 766 512 766z"></path><path d="M508 336c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176z m0 288c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112z"></path></svg>
</span>
<span id="pv" class="meta-content"></span>
</div>
</div>
</el-card>
</div>
</el-timeline-item>
</el-timeline>
</div>
</template>
<script lang="ts" setup>
import { computed, ref } from 'vue'
import { useData } from 'vitepress'
import articleData from '../../../../article-data.json'
import { formatDate } from '../utils.ts'
import '../styles/article-meta-data.css'
const { theme } = useData()
// 所有归档文章数据
const archiveDataObj = computed(() => initArchiveData(articleData))
console.log(archiveDataObj.value.yearList)
/**
* 初始化归档数据
* [{2020: [article1, article2, ...], ...}]
*/
function initArchiveData(articleData) {
const archiveData: any = {}
const yearList = []
for (let i = 0; i < articleData.length; i++) {
const article = articleData[i]
const year = new Date(article.date).getFullYear()
if (!archiveData[year]) {
archiveData[year] = []
yearList.push(year)
}
archiveData[year].push(article)
// 文章按发布时间降序排序
archiveData[year].sort((a, b) => b.date.localeCompare(a.date))
}
yearList.sort((a, b) => b - a)
return {'archiveData': archiveData, 'yearList': yearList}
}
</script>
<style scoped>
:deep(.el-card) {
--el-card-border-color: var(--vp-c-divider-light);
--el-card-bg-color: var(--vp-c-bg);
color: var(--vp-c-text-1);
margin-bottom: 10px;
}
a.title {
font-size: 15px;
font-weight: 400;
color: var(--vp-c-text-1);
}
ul li {
list-style: none;
}
.timeline-wrapper {
word-break:break-all;
}
.year {
color: #409EFF;
position: absolute;
left: -60px;
top: 1px;
}
.item {
color: var(--vp-c-text-1);
margin-left: 25px;
font-size: 15px;
span {
padding-left: 10px;
}
}
</style>

View File

@@ -4,7 +4,7 @@
<span class="tag-breadcrumb-icon">
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1em" height="1em" class="larkui-icon icon-svg index-module_size_wVASz" style="width: 16px; min-width: 16px; height: 16px;"><defs></defs><path d="M527.744 32c20.8 0.192 40.32 8.32 55.04 23.04l386.112 386.24c14.912 14.848 23.104 34.56 23.104 55.68 0 20.992-8.192 40.704-23.04 55.552l-416.512 416.512c-14.784 14.784-34.624 22.976-55.68 22.976a78.08 78.08 0 0 1-55.616-23.04L55.104 582.784A78.272 78.272 0 0 1 32 527.552V110.72C32 67.2 67.2 32 110.72 32h417.024zM267.136 267.136a128.064 128.064 0 1 0 181.184 181.12 128.064 128.064 0 0 0-181.184-181.12z"></path></svg>
</span>
<span class="tag-breadcrumb-item">查尔斯的标签</span>
<span class="tag-breadcrumb-item">的标签</span>
</div>
<div>
<el-row :gutter="10">
@@ -89,6 +89,7 @@
import { computed, ref } from 'vue'
import { useData } from 'vitepress'
import articleData from '../../../../article-data.json'
import { formatDate } from '../utils.ts'
import '../styles/article-meta-data.css'
const { theme } = useData()
@@ -104,10 +105,10 @@ const toggleTag = (tagTitle: string) => {
/**
* 初始化Tag数据(感谢https://github.com/clark-cui/vitepress-blog-zaun)
* [{tagTitle: [article1, article2, ...], ...}]
* {tagTitle1: [article1, article2, ...}
*/
function initTags(articleData) {
const tags: any = {};
const tags: any = {}
for (let i = 0; i < articleData.length; i++) {
const article = articleData[i]
const articleTags = article.tags
@@ -124,16 +125,6 @@ function initTags(articleData) {
}
return tags
}
/**
* 格式化时间
*/
function formatDate(date) {
const formatDate = computed(() => new Date(date))
const isoDatetime = computed(() => formatDate.value.toISOString())
const datetime = formatDate.value.toLocaleString('zh', {year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: 'numeric'})
return datetime
}
</script>
<style scoped>
@@ -256,11 +247,11 @@ svg:not(:root) {
.result-item-title {
margin: 0;
font-size: 16px;
font-weight: 500;
font-weight: 400;
line-height: 22px;
}
.ant-list-item .title {
font-weight: 500;
font-weight: 400;
color: var(--vp-c-text-1);
}
.result-item-description {

View File

@@ -1,9 +1,10 @@
import DefaultTheme from 'vitepress/theme'
import MyLayout from "./components/MyLayout.vue"
import MyLayout from "./MyLayout.vue"
import ElementPlus from 'element-plus'
import "element-plus/dist/index.css"
import ArticleMetadata from './components/ArticleMetadata.vue'
import Tag from './components/Tag.vue'
import Archive from './components/Archive.vue'
import './styles/vars.css'
import './styles/custom.css'
@@ -16,5 +17,6 @@ export default {
app.component('ArticleMetadata', ArticleMetadata)
app.component('Tag', Tag)
app.component('Archive', Archive)
}
}

View File

@@ -0,0 +1,9 @@
/**
* 格式化时间
* @param date 待格式化时间
* @returns 格式化后的时间(YYYY/MM/dd AM hh:mm)
*/
export function formatDate(date) {
const formatDate = new Date(date)
return formatDate.toLocaleString('zh', {year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: 'numeric'})
}

7
repos/archives.md Normal file
View File

@@ -0,0 +1,7 @@
---
editLink: false
lastUpdated: false
aside: false
---
<Archive />