feat:初始化工程
This commit is contained in:
5
.eslintrc.js
Normal file
5
.eslintrc.js
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
module.exports = {
|
||||||
|
extends: [
|
||||||
|
'./node_modules/vue3-eslint'
|
||||||
|
]
|
||||||
|
}
|
||||||
24
.gitignore
vendored
Normal file
24
.gitignore
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
dist
|
||||||
|
dist-ssr
|
||||||
|
*.local
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/extensions.json
|
||||||
|
.idea
|
||||||
|
.DS_Store
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
||||||
3
.vscode/extensions.json
vendored
Normal file
3
.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"recommendations": ["Vue.volar"]
|
||||||
|
}
|
||||||
5
README.md
Normal file
5
README.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Vue 3 + TypeScript + Vite
|
||||||
|
|
||||||
|
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
||||||
|
|
||||||
|
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
|
||||||
13
index.html
Normal file
13
index.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Cxx0822の拾光记</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
<script type="module" src="/src/main.ts"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
49
package.json
Normal file
49
package.json
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
{
|
||||||
|
"name": "blog-ui",
|
||||||
|
"private": true,
|
||||||
|
"version": "0.0.1",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vite",
|
||||||
|
"build": "vue-tsc -b && vite build",
|
||||||
|
"preview": "vite preview"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@fortawesome/fontawesome-free": "^6.7.2",
|
||||||
|
"@tsparticles/slim": "^3.8.1",
|
||||||
|
"@tsparticles/vue3": "^3.0.1",
|
||||||
|
"@vueuse/core": "^13.1.0",
|
||||||
|
"animate.css": "^4.1.1",
|
||||||
|
"dayjs": "^1.11.13",
|
||||||
|
"element-plus": "~2.9.7",
|
||||||
|
"font-awesome": "^4.7.0",
|
||||||
|
"md-editor-v3": "^4.21.3",
|
||||||
|
"pinia": "^2.3.1",
|
||||||
|
"ua-parser-js": "^2.0.3",
|
||||||
|
"vue": "3.5.12",
|
||||||
|
"vue3-common": "git+https://gitee.com/Cxx0822/vue3-common",
|
||||||
|
"vue3-emoji-picker": "^1.1.8",
|
||||||
|
"vue3-eslint": "git+https://gitee.com/Cxx0822/vue3-eslint"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^18.19.86",
|
||||||
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
||||||
|
"@typescript-eslint/parser": "^5.62.0",
|
||||||
|
"@vitejs/plugin-vue": "5.2.1",
|
||||||
|
"autoprefixer": "^10.4.21",
|
||||||
|
"eslint": "^7.32.0",
|
||||||
|
"eslint-config-standard": "^16.0.3",
|
||||||
|
"eslint-plugin-import": "^2.31.0",
|
||||||
|
"eslint-plugin-node": "^11.1.0",
|
||||||
|
"eslint-plugin-promise": "^5.2.0",
|
||||||
|
"eslint-plugin-vue": "^8.7.1",
|
||||||
|
"postcss": "^8.5.3",
|
||||||
|
"sass": "^1.86.3",
|
||||||
|
"tailwindcss": "^3.4.17",
|
||||||
|
"typescript": "^5.8.3",
|
||||||
|
"vfonts": "^0.0.3",
|
||||||
|
"vite": "5.2.0",
|
||||||
|
"vite-plugin-mock": "^3.0.2",
|
||||||
|
"vite-plugin-svg-icons": "^2.0.1",
|
||||||
|
"vue-tsc": "^1.8.27"
|
||||||
|
}
|
||||||
|
}
|
||||||
7064
pnpm-lock.yaml
generated
Normal file
7064
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
1
public/vite.svg
Normal file
1
public/vite.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
10
src/App.vue
Normal file
10
src/App.vue
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<template>
|
||||||
|
<router-view />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@use '@/styles/index.module.scss';
|
||||||
|
</style>
|
||||||
107
src/apis/blog.ts
Normal file
107
src/apis/blog.ts
Normal file
@@ -0,0 +1,107 @@
|
|||||||
|
import { cloudService } from './index'
|
||||||
|
import { IBlog, IBlogCategory, IBlogComment, IBlogStats, IBlogVisit, INewBlog, IQueryBlog } from '@/types/blog'
|
||||||
|
|
||||||
|
import qs from 'qs'
|
||||||
|
import { IPageRecord } from '@/types'
|
||||||
|
|
||||||
|
export const queryBlogApi = (currentPage: number, pageSize: number): Promise<IPageRecord<IBlog>> =>
|
||||||
|
cloudService({
|
||||||
|
url: '/blog-service/blog/page',
|
||||||
|
method: 'get',
|
||||||
|
params: { currentPage, pageSize }
|
||||||
|
})
|
||||||
|
|
||||||
|
export const queryBlogByConditionApi = (query: IQueryBlog): Promise<IBlog[]> =>
|
||||||
|
cloudService({
|
||||||
|
url: '/blog-service/blog/condition',
|
||||||
|
method: 'get',
|
||||||
|
params: query,
|
||||||
|
paramsSerializer: (params) => {
|
||||||
|
return qs.stringify(params, { arrayFormat: 'indices' })
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
export const queryBlogByIdApi = (id: number): Promise<IBlog> =>
|
||||||
|
cloudService({
|
||||||
|
url: `/blog-service/blog/content/${id}`,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
|
||||||
|
export const queryBlogCategoryApi = (): Promise<IBlogCategory[]> =>
|
||||||
|
cloudService({
|
||||||
|
url: '/blog-service/blog/category',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
|
||||||
|
export const queryBlogStatsApi = (): Promise<IBlogStats> =>
|
||||||
|
cloudService({
|
||||||
|
url: '/blog-service/blog/stats',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
|
||||||
|
export const queryLatestBlogApi = (): Promise<IBlog[]> =>
|
||||||
|
cloudService({
|
||||||
|
url: '/blog-service/blog/latest',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
|
||||||
|
export const queryBlogCommentApi = (blogId: number): Promise<IBlogComment[]> =>
|
||||||
|
cloudService({
|
||||||
|
url: `/blog-service/blog/comment/${blogId}`,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
|
||||||
|
export const addBlogCommentApi = (blogComment: IBlogComment): Promise<boolean> =>
|
||||||
|
cloudService({
|
||||||
|
url: '/blog-service/blog/comment',
|
||||||
|
method: 'put',
|
||||||
|
data: blogComment
|
||||||
|
})
|
||||||
|
|
||||||
|
export const queryAdminBlogApi = (currentPage: number,
|
||||||
|
pageSize: number): Promise<IPageRecord<IBlog>> =>
|
||||||
|
cloudService({
|
||||||
|
url: '/admin-service/blog-manage/page',
|
||||||
|
method: 'get',
|
||||||
|
params: { currentPage, pageSize }
|
||||||
|
})
|
||||||
|
|
||||||
|
export const queryAdminBlogByIdApi = (id: number): Promise<IBlog> =>
|
||||||
|
cloudService({
|
||||||
|
url: `/admin-service/blog-manage/content/${id}`,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
|
||||||
|
export const queryAdminBlogCategoryApi = (): Promise<IBlogCategory[]> =>
|
||||||
|
cloudService({
|
||||||
|
url: '/admin-service/blog-manage/category',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
|
||||||
|
export const addBlogApi = (blog: INewBlog): Promise<boolean> =>
|
||||||
|
cloudService({
|
||||||
|
url: '/admin-service/blog-manage',
|
||||||
|
method: 'post',
|
||||||
|
data: blog
|
||||||
|
})
|
||||||
|
|
||||||
|
export const updateBlogApi = (id: number, blog: INewBlog): Promise<boolean> =>
|
||||||
|
cloudService({
|
||||||
|
url: `/admin-service/blog-manage/${id}`,
|
||||||
|
method: 'put',
|
||||||
|
data: blog
|
||||||
|
})
|
||||||
|
|
||||||
|
export const deleteBlogApi = (id: number): Promise<boolean> =>
|
||||||
|
cloudService({
|
||||||
|
url: `/admin-service/blog-manage/${id}`,
|
||||||
|
method: 'DELETE'
|
||||||
|
})
|
||||||
|
|
||||||
|
export const queryBlogVisitApi = (currentPage: number,
|
||||||
|
pageSize: number): Promise<IPageRecord<IBlogVisit>> =>
|
||||||
|
cloudService({
|
||||||
|
url: '/admin-service/blog-manage/visit',
|
||||||
|
method: 'get',
|
||||||
|
params: { currentPage, pageSize }
|
||||||
|
})
|
||||||
3
src/apis/index.ts
Normal file
3
src/apis/index.ts
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
import createService from 'vue3-common/utils/axiosUtil'
|
||||||
|
|
||||||
|
export const cloudService = createService()
|
||||||
BIN
src/assets/avatar.jpg
Normal file
BIN
src/assets/avatar.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 77 KiB |
BIN
src/assets/font/custom.ttf
Normal file
BIN
src/assets/font/custom.ttf
Normal file
Binary file not shown.
1
src/assets/vue.svg
Normal file
1
src/assets/vue.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>
|
||||||
|
After Width: | Height: | Size: 496 B |
62
src/components/Archive/BlogArchive.vue
Normal file
62
src/components/Archive/BlogArchive.vue
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-archive blog-section">
|
||||||
|
<h4 class="module-title">文章归档</h4>
|
||||||
|
|
||||||
|
<el-date-picker
|
||||||
|
v-model="currentYear"
|
||||||
|
type="year" placeholder="请选择年份"
|
||||||
|
style="width: 100px"
|
||||||
|
@change="changeDateEvent"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<span class="total">共计{{ blogStore.blogList.length }}篇文章</span>
|
||||||
|
|
||||||
|
<el-timeline class="time-line">
|
||||||
|
<el-timeline-item v-for="(value, index) in blogStore.blogList" :key="index">
|
||||||
|
<div class="item">
|
||||||
|
<span class="date">{{ value.createTime }}</span>
|
||||||
|
<span class="title" @click="viewBlogClick(index)">{{ value.title }}</span>
|
||||||
|
</div>
|
||||||
|
</el-timeline-item>
|
||||||
|
</el-timeline>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { useRouter } from 'vue-router'
|
||||||
|
import { onMounted, ref } from 'vue'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
const router = useRouter()
|
||||||
|
const currentYear = ref(new Date())
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
blogStore.queryBlogByCondition({
|
||||||
|
year: (new Date()).getFullYear()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 选择年份事件
|
||||||
|
* @param value 年份
|
||||||
|
*/
|
||||||
|
const changeDateEvent = async (value: Date) => {
|
||||||
|
await blogStore.queryBlogByCondition({
|
||||||
|
year: value.getFullYear()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点击查看博客按钮
|
||||||
|
* @param index 索引
|
||||||
|
*/
|
||||||
|
const viewBlogClick = async (index: number) => {
|
||||||
|
const blogId = blogStore.blogList[index].id
|
||||||
|
await router.push({ name: 'BlogDetail', params: { id: blogId } })
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@use "@/styles/blog/blog.archive.module.scss";
|
||||||
|
</style>
|
||||||
40
src/components/Category/BlogCategory.vue
Normal file
40
src/components/Category/BlogCategory.vue
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-category blog-section">
|
||||||
|
<h4 class="module-title">文章分类</h4>
|
||||||
|
|
||||||
|
<span class="total">目前共计{{ blogStore.blogCategoryList.length }}个分类</span>
|
||||||
|
|
||||||
|
<div class="category-list">
|
||||||
|
<div v-for="(item, index) in blogStore.blogCategoryList"
|
||||||
|
:key="index" class="item" @click="viewBlogCategoryClick(item.name)">
|
||||||
|
<span class="label">{{ item.name }}</span>
|
||||||
|
<span class="value">{{ `(${item.count})` }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { useRouter } from 'vue-router'
|
||||||
|
import { onMounted } from 'vue'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
const router = useRouter()
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
blogStore.queryBlogCategory()
|
||||||
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点击查看博客分类信息
|
||||||
|
* @param name 类别名称
|
||||||
|
*/
|
||||||
|
const viewBlogCategoryClick = async (name: string) => {
|
||||||
|
await router.push({ name: 'BlogCategoryName', params: { name } })
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@use "@/styles/blog/blog.category.module.scss";
|
||||||
|
</style>
|
||||||
41
src/components/Category/BlogCategoryDetail.vue
Normal file
41
src/components/Category/BlogCategoryDetail.vue
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-category-detail blog-section">
|
||||||
|
<span class="name">{{ route.params?.name }}</span>
|
||||||
|
|
||||||
|
<div class="category-detail-list">
|
||||||
|
<div v-for="(item, index) in blogStore.blogList"
|
||||||
|
:key="index" class="item" @click="viewBlogClick(index)">
|
||||||
|
<span class="number">{{ index+1 }}</span>
|
||||||
|
<span class="date">{{ item?.createTime }}</span>
|
||||||
|
<span class="title">{{ item.title }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { useRouter } from 'vue-router'
|
||||||
|
import { useRoute } from 'vue-router'
|
||||||
|
import { onMounted } from 'vue'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
const router = useRouter()
|
||||||
|
const route = useRoute()
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
const categoryName = route.params.name as string
|
||||||
|
await blogStore.queryBlogByCondition({
|
||||||
|
category: categoryName
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
const viewBlogClick = async (index: number) => {
|
||||||
|
const blogId = blogStore.blogList[index].id
|
||||||
|
await router.push({ name: 'BlogDetailId', params: { id: blogId } })
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@use "@/styles/blog/blog.category.detail.module.scss";
|
||||||
|
</style>
|
||||||
34
src/components/Comment/BlogComment.vue
Normal file
34
src/components/Comment/BlogComment.vue
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-comment">
|
||||||
|
<div class="comment-total">
|
||||||
|
<span>共 {{ blogStore.blogNestedCommentList.length }} 条评论</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="comment-list">
|
||||||
|
<blog-comment-item v-for="(item, index) in blogStore.blogNestedCommentList" :key="index"
|
||||||
|
:comment="item.comment" :replyList="item.replies"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogCommentItem from '@/components/Comment/BlogCommentItem.vue'
|
||||||
|
import { useBlogStore } from '@/store/blog'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.blog-comment {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border: 1px solid #EEEEEE;
|
||||||
|
border-radius: 10px;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
125
src/components/Comment/BlogCommentEdit.vue
Normal file
125
src/components/Comment/BlogCommentEdit.vue
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-comment-edit">
|
||||||
|
<div class="comment-title">
|
||||||
|
<el-input v-model="blogComment.name"
|
||||||
|
:maxlength="10" show-word-limit
|
||||||
|
placeholder="请输入昵称"/>
|
||||||
|
<el-input v-model="blogComment.website"
|
||||||
|
:maxlength="50" show-word-limit
|
||||||
|
placeholder="请输入个人博客网站"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<el-input v-model="blogComment.content"
|
||||||
|
placeholder="有什么想和我说的呢" :maxlength="500"
|
||||||
|
:rows="7" show-word-limit type="textarea"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div class="comment-button">
|
||||||
|
<el-popover ref="emojiPopoverRef" placement="top" :width="300" trigger="hover">
|
||||||
|
<template #default>
|
||||||
|
<div class="emoji-panel">
|
||||||
|
<EmojiPicker :native="true" @select="onSelectEmoji" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template #reference>
|
||||||
|
<el-button circle>
|
||||||
|
<i class="fa-regular fa-face-smile"></i>
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-popover>
|
||||||
|
|
||||||
|
<el-button type="primary"
|
||||||
|
:disabled="blogComment.content.length === 0"
|
||||||
|
@click="sendCommentClick"
|
||||||
|
class="send-button">发送</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import EmojiPicker from 'vue3-emoji-picker'
|
||||||
|
import 'vue3-emoji-picker/css'
|
||||||
|
import { defineProps, ref, onMounted } from 'vue'
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { deepCopyObject } from 'vue3-common/utils/dataUtil'
|
||||||
|
import { IBlogComment } from '@/types/blog.ts'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
const emojiPopoverRef = ref()
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
parentId: {
|
||||||
|
required: true,
|
||||||
|
type: Number,
|
||||||
|
default: 0
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const blogComment = ref<IBlogComment>({
|
||||||
|
id: 0,
|
||||||
|
blogId: 0,
|
||||||
|
name: '',
|
||||||
|
website: '',
|
||||||
|
content: '',
|
||||||
|
ipAddress: '',
|
||||||
|
userAgent: '',
|
||||||
|
parentId: 0,
|
||||||
|
isApproved: true,
|
||||||
|
createTime: ''
|
||||||
|
})
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
blogComment.value = deepCopyObject(blogStore.getEmptyBlogComment())
|
||||||
|
})
|
||||||
|
|
||||||
|
const onSelectEmoji = (emoji) => {
|
||||||
|
if (blogComment.value.content.length <= 498) {
|
||||||
|
blogComment.value.content += emoji.i
|
||||||
|
}
|
||||||
|
|
||||||
|
emojiPopoverRef.value.hide()
|
||||||
|
}
|
||||||
|
|
||||||
|
const sendCommentClick = async () => {
|
||||||
|
blogComment.value.parentId = props.parentId
|
||||||
|
blogComment.value.blogId = blogStore.currentBlogId
|
||||||
|
|
||||||
|
if (!blogComment.value.name) {
|
||||||
|
blogComment.value.name = 'Anonymous'
|
||||||
|
}
|
||||||
|
|
||||||
|
await blogStore.addBlogComment(blogComment.value)
|
||||||
|
blogComment.value = deepCopyObject(blogStore.getEmptyBlogComment())
|
||||||
|
blogStore.isShowBlogCommentEdit = false
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.blog-comment-edit {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border: 1px solid #EEEEEE;
|
||||||
|
border-radius: 10px;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
|
||||||
|
.comment-title {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-button {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
.send-button {
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
127
src/components/Comment/BlogCommentItem.vue
Normal file
127
src/components/Comment/BlogCommentItem.vue
Normal file
@@ -0,0 +1,127 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-comment-card">
|
||||||
|
<el-avatar :src="`https://api.dicebear.com/6.x/adventurer/svg?seed=${props.comment.name}`"
|
||||||
|
:size="50" alt="未加载"/>
|
||||||
|
|
||||||
|
<div class="blog-comment-content">
|
||||||
|
<div class="basic-info">
|
||||||
|
<span>{{ props.comment.name }}</span>
|
||||||
|
<span class="content">{{ getBrowser(props.comment.userAgent) }}</span>
|
||||||
|
<span class="content">{{ getOsInfo(props.comment.userAgent) }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="sub-info">
|
||||||
|
<span class="content">{{ props.comment.createTime }}</span>
|
||||||
|
<el-button v-if="!blogComment.isShowEdit"
|
||||||
|
type="primary" text @click="replyClick">回复</el-button>
|
||||||
|
<el-button v-else type="primary"
|
||||||
|
text @click="cancelClick">取消</el-button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>{{ props.comment.content }}</p>
|
||||||
|
|
||||||
|
<blog-comment-edit v-if="blogComment.isShowEdit"
|
||||||
|
:parent-id="props.comment.id"/>
|
||||||
|
|
||||||
|
<div class="reply-list">
|
||||||
|
<div class="blog-comment-card" v-for="(item, index) in props.replyList" :key="index">
|
||||||
|
<el-avatar :src="`https://api.dicebear.com/6.x/adventurer/svg?seed=${item.name}`"
|
||||||
|
:size="50" alt="未加载"/>
|
||||||
|
|
||||||
|
<div class="blog-comment-content">
|
||||||
|
<div class="basic-info">
|
||||||
|
<span>{{ item.name }}</span>
|
||||||
|
<span class="content">{{ getBrowser(props.comment.userAgent) }}</span>
|
||||||
|
<span class="content">{{ getOsInfo(props.comment.userAgent) }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="sub-info">
|
||||||
|
<span class="content">{{ item.createTime }}</span>
|
||||||
|
</div>
|
||||||
|
<p>{{ item.content }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogCommentEdit from '@/components/Comment/BlogCommentEdit.vue'
|
||||||
|
import 'vue3-emoji-picker/css'
|
||||||
|
import { defineProps, PropType, reactive } from 'vue'
|
||||||
|
import { IBlogComment } from '@/types/blog'
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { UAParser } from 'ua-parser-js'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
comment: {
|
||||||
|
required: true,
|
||||||
|
type: Object as PropType<IBlogComment>
|
||||||
|
},
|
||||||
|
replyList: {
|
||||||
|
required: true,
|
||||||
|
type: Object as PropType<IBlogComment[]>
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const blogComment = reactive({
|
||||||
|
isShowEdit: false
|
||||||
|
})
|
||||||
|
|
||||||
|
const replyClick = () => {
|
||||||
|
blogStore.currentBlogComment = blogStore.getEmptyBlogComment()
|
||||||
|
blogComment.isShowEdit = true
|
||||||
|
}
|
||||||
|
|
||||||
|
const cancelClick = () => {
|
||||||
|
blogComment.isShowEdit = false
|
||||||
|
}
|
||||||
|
|
||||||
|
const getOsInfo = (userAgent: string) => {
|
||||||
|
const uaParse = new UAParser(userAgent)
|
||||||
|
return `${uaParse.getOS().name} ${uaParse.getOS().version}`
|
||||||
|
}
|
||||||
|
|
||||||
|
const getBrowser = (userAgent: string) => {
|
||||||
|
const uaParse = new UAParser(userAgent)
|
||||||
|
return `${uaParse.getBrowser().name} ${uaParse.getBrowser().version}`
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.blog-comment-card {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 60px 1fr;
|
||||||
|
gap: 5px;
|
||||||
|
|
||||||
|
.blog-comment-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 5px;
|
||||||
|
|
||||||
|
.basic-info {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-info {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
font-size: small;
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
65
src/components/Content/BlogDetail.vue
Normal file
65
src/components/Content/BlogDetail.vue
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-detail blog-section" id="blog-section">
|
||||||
|
<div class="blog-title">
|
||||||
|
<span class="title">{{ blogStore.currentBlog.title }}</span>
|
||||||
|
<blog-label :basic-blog="getBasicBlog(blogStore.currentBlog)"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="blog-md">
|
||||||
|
<MdPreview editorId="blog-id" v-model="blogStore.currentBlog.content" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="blog-copyright">
|
||||||
|
<span>
|
||||||
|
<strong>本文作者: </strong> Cxx
|
||||||
|
</span>
|
||||||
|
<span>
|
||||||
|
<strong>本文链接: </strong>
|
||||||
|
<a href="https://www.microsoft.com/">{{ currentUrl.href }}</a>
|
||||||
|
</span>
|
||||||
|
<span>
|
||||||
|
<strong>版权声明: </strong>
|
||||||
|
本博客所有文章除特别声明外,均采用
|
||||||
|
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">©BY-NC-SA</a>
|
||||||
|
许可协议。转载请注明出处!
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="blog-ending">
|
||||||
|
<span>-------------本文结束♥感谢您的阅读♥给个五星好评吧~~-------------</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<blog-comment-edit :parent-id="0"/>
|
||||||
|
|
||||||
|
<blog-comment />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogLabel from '@/components/Content/BlogLabel.vue'
|
||||||
|
import BlogCommentEdit from '@/components/Comment/BlogCommentEdit.vue'
|
||||||
|
import BlogComment from '@/components/Comment/BlogComment.vue'
|
||||||
|
import { MdPreview } from 'md-editor-v3'
|
||||||
|
import 'md-editor-v3/lib/style.css'
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { getBasicBlog } from '@/utils/blog/blogUtil.ts'
|
||||||
|
import { useRoute } from 'vue-router'
|
||||||
|
import { computed, onMounted } from 'vue'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
const route = useRoute()
|
||||||
|
|
||||||
|
const currentUrl = new URL(window.location.href)
|
||||||
|
|
||||||
|
const blogComment = computed(() => blogStore.getEmptyBlogComment())
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
const blogId = route.params.id as number
|
||||||
|
blogStore.currentBlogId = blogId
|
||||||
|
await blogStore.queryBlogById(blogId)
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@use "@/styles/blog/blog.detail.module.scss";
|
||||||
|
</style>
|
||||||
92
src/components/Content/BlogLabel.vue
Normal file
92
src/components/Content/BlogLabel.vue
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
<template>
|
||||||
|
<div class="label-list">
|
||||||
|
<div class="container">
|
||||||
|
<div class="top-value item" v-if="props.basicBlog?.topValue > 1">
|
||||||
|
<i class="fa-solid fa-thumbtack"></i>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="props.basicBlog?.topValue > 1" class="item">|</div>
|
||||||
|
|
||||||
|
<div class="great item" v-if="props.basicBlog?.isGreat">
|
||||||
|
<i class="fa-regular fa-newspaper"></i>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="props.basicBlog?.isGreat" class="item">|</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<i class="fa-regular fa-calendar"></i>
|
||||||
|
<span class="date">{{ formatDate(props.basicBlog.createTime) }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">|</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<i class="fa-regular fa-calendar-check"></i>
|
||||||
|
<span class="date">{{ formatDate(props.basicBlog.createTime) }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">|</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<i class="fa-regular fa-folder"></i>
|
||||||
|
<span class="category" @click="viewBlogCategoryClick">
|
||||||
|
{{ props.basicBlog.category }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">|</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<i class="fa-solid fa-eye"></i>
|
||||||
|
<span>{{ props.basicBlog.visitCount }} 次</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="item">
|
||||||
|
<i class="fa-regular fa-file-word"></i>
|
||||||
|
<span>{{ props.basicBlog.wordCount }} 字</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">|</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<i class="fa-regular fa-clock"></i>
|
||||||
|
<span>{{ props.basicBlog.readDuration.toFixed(0) }} 分钟</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { defineProps, PropType } from 'vue'
|
||||||
|
import { IBasicBlog } from '@/types/blog.ts'
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { useRouter } from 'vue-router'
|
||||||
|
import { formatDate } from 'vue3-common/utils/dateUtil'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
const router = useRouter()
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
basicBlog: {
|
||||||
|
required: true,
|
||||||
|
type: Object as PropType<IBasicBlog>
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点击查看博客分类按钮
|
||||||
|
*/
|
||||||
|
const viewBlogCategoryClick = async () => {
|
||||||
|
const category = props.basicBlog?.category as string
|
||||||
|
await blogStore.queryBlogByCondition({
|
||||||
|
category
|
||||||
|
})
|
||||||
|
await router.push({ name: 'CategoriesBlog', params: { name: category } })
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@use "@/styles/blog/blog.label.module.scss";
|
||||||
|
</style>
|
||||||
66
src/components/Content/BlogOverview.vue
Normal file
66
src/components/Content/BlogOverview.vue
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-content-list blog-section">
|
||||||
|
<div v-if="blogStore.blogList.length === 0"
|
||||||
|
class="blog-content blog-content-empty" >
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="blog-content blog-content-summary"
|
||||||
|
v-for="(item, index) in blogStore.blogList" :key="index">
|
||||||
|
<span class="title">{{ item.title }}</span>
|
||||||
|
|
||||||
|
<blog-label :basic-blog="getBasicBlog(item)"/>
|
||||||
|
|
||||||
|
<p class="content">
|
||||||
|
{{ item.summary }}
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<el-button type="primary" @click="readBlogClick(index)">阅读全文 »</el-button>
|
||||||
|
<hr/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<el-pagination
|
||||||
|
v-model:current-page="blogStore.pageInfo.currentPage"
|
||||||
|
:page-size="blogStore.pageInfo.pageSize"
|
||||||
|
:total="blogStore.pageInfo.totalSize"
|
||||||
|
layout="total, prev, pager, next"
|
||||||
|
@current-change="changePageClick"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogLabel from '@/components/Content/BlogLabel.vue'
|
||||||
|
import { useRouter } from 'vue-router'
|
||||||
|
import { onMounted } from 'vue'
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { getBasicBlog } from '@/utils/blog/blogUtil.ts'
|
||||||
|
|
||||||
|
const router = useRouter()
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
await blogStore.queryBlog()
|
||||||
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点击阅读博客按钮
|
||||||
|
* @param index 索引
|
||||||
|
*/
|
||||||
|
const readBlogClick = async (index: number) => {
|
||||||
|
const blogId = blogStore.blogList[index].id
|
||||||
|
await router.push({ name: 'BlogDetailId', params: { id: blogId } })
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点击切换博客页数按钮
|
||||||
|
* @param page 页码
|
||||||
|
*/
|
||||||
|
const changePageClick = async (page: number) => {
|
||||||
|
blogStore.pageInfo.currentPage = page
|
||||||
|
await blogStore.queryBlog()
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@use "@/styles/blog/blog.overview.module.scss";
|
||||||
|
</style>
|
||||||
20
src/layout/components/FooterBar/index.vue
Normal file
20
src/layout/components/FooterBar/index.vue
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<template>
|
||||||
|
<footer class="blog-site-footer">
|
||||||
|
<span>© {{ new Date(startDay).getFullYear() }}-{{ new Date().getFullYear() }} Cxx</span>
|
||||||
|
<span>本网站已安全运行{{ getBlogRunTotalTime(startDay) }}</span>
|
||||||
|
<span>博客全站共{{ formatBlogWordCount(blogStore.blogStats.wordCount) }}字</span>
|
||||||
|
</footer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { formatBlogWordCount, getBlogRunTotalTime } from '@/utils/blog/blogUtil.ts'
|
||||||
|
|
||||||
|
const startDay = '2025-01-07'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@use "@/styles/blog/blog.footbar.module.scss";
|
||||||
|
</style>
|
||||||
30
src/layout/components/Sidebar/BlogMenu.vue
Normal file
30
src/layout/components/Sidebar/BlogMenu.vue
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<template>
|
||||||
|
<el-menu router class="blog-menu-container">
|
||||||
|
<el-menu-item index="/blog/overview">
|
||||||
|
<i class="fa fa-fw fa-home" />
|
||||||
|
<span class="menu-title">首页</span>
|
||||||
|
</el-menu-item>
|
||||||
|
|
||||||
|
<el-menu-item index="/blog/category">
|
||||||
|
<i class="fa fa-fw fa-th" />
|
||||||
|
<span class="menu-title">分类</span>
|
||||||
|
<span class="value">{{ blogStore.blogStats.categoryCount }}</span>
|
||||||
|
</el-menu-item>
|
||||||
|
|
||||||
|
<el-menu-item index="/blog/archive">
|
||||||
|
<i class="fa fa-fw fa-archive" />
|
||||||
|
<span class="menu-title">归档</span>
|
||||||
|
<span class="value">{{ blogStore.blogStats.blogCount }}</span>
|
||||||
|
</el-menu-item>
|
||||||
|
|
||||||
|
<el-menu-item>
|
||||||
|
<i class="fa fa-search fa-fw" />
|
||||||
|
<span class="menu-title">搜索</span>
|
||||||
|
</el-menu-item>
|
||||||
|
</el-menu>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
</script>
|
||||||
82
src/layout/components/Sidebar/BlogSiteBrief.vue
Normal file
82
src/layout/components/Sidebar/BlogSiteBrief.vue
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-brief">
|
||||||
|
<div class="avatar">
|
||||||
|
<img :src="getAssetsImageFile('avatar.jpg')" alt="暂无图片"/>
|
||||||
|
<span>Cxx</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="info">
|
||||||
|
<div class="item" @click="viewBlogArchiveClick">
|
||||||
|
<span class="value">{{ blogStore.blogStats.blogCount }}</span>
|
||||||
|
<span class="name">日志</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item" @click="viewBlogCategoryClick">
|
||||||
|
<span class="value">{{ blogStore.blogStats.categoryCount }}</span>
|
||||||
|
<span class="name">分类</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="social">
|
||||||
|
<div class="item">
|
||||||
|
<i class="fa fab fa-github"></i>
|
||||||
|
<span class="name">Github</span>
|
||||||
|
</div>
|
||||||
|
<div class="item">
|
||||||
|
<i class="fa fab fa-weixin"></i>
|
||||||
|
<span class="name">微信</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="latest-blog">
|
||||||
|
<div class="title">
|
||||||
|
<i class="fa fa-history fa-" />
|
||||||
|
<span>近期文章</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="blog-list">
|
||||||
|
<span v-for="(item, index) in blogStore.latestBlogList"
|
||||||
|
:key="index" @click="viewBlogClick(index)">
|
||||||
|
{{ item.title }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- <div class="blog-time">-->
|
||||||
|
<!-- <blog-time />-->
|
||||||
|
<!-- </div>-->
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogTime from '@/layout/components/Tools/BlogTime.vue'
|
||||||
|
import { getAssetsImageFile } from '@/utils'
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { useRouter } from 'vue-router'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
const router = useRouter()
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点击查看博客归档按钮
|
||||||
|
*/
|
||||||
|
const viewBlogArchiveClick = () => {
|
||||||
|
router.push('/blog/archive')
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点击查看博客分类按钮
|
||||||
|
*/
|
||||||
|
const viewBlogCategoryClick = () => {
|
||||||
|
router.push('/blog/category')
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点击查看博客按钮
|
||||||
|
* @param index 索引
|
||||||
|
*/
|
||||||
|
const viewBlogClick = async (index: number) => {
|
||||||
|
const blogId = blogStore.latestBlogList[index].id
|
||||||
|
await router.push({ name: 'BlogDetail', params: { id: blogId } })
|
||||||
|
}
|
||||||
|
</script>
|
||||||
73
src/layout/components/Sidebar/BlogSummary.vue
Normal file
73
src/layout/components/Sidebar/BlogSummary.vue
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-summary">
|
||||||
|
<div v-if="blogSummaryInfo.isBlogDetail" class="blog-summary-tab">
|
||||||
|
<span @click="changeTabClick('Catalog', $event)" class="tab-active">
|
||||||
|
文章目录
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span @click="changeTabClick('Summary', $event)">
|
||||||
|
站点概览
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<blog-site-brief v-if="blogSummaryInfo.activePanelName === 'Summary'
|
||||||
|
|| !blogSummaryInfo.isBlogDetail"/>
|
||||||
|
<MdCatalog v-if="blogSummaryInfo.activePanelName === 'Catalog'
|
||||||
|
&& blogSummaryInfo.isBlogDetail"
|
||||||
|
editorId="blog-id" :scrollElement="scrollElement"/>
|
||||||
|
|
||||||
|
<div class="scroll-container" @click="back2topClick()">
|
||||||
|
<i class="fa fa-arrow-up"></i>
|
||||||
|
<span>{{ blogStore.progressValue }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogSiteBrief from '@/layout/components/Sidebar/BlogSiteBrief.vue'
|
||||||
|
import { MdCatalog } from 'md-editor-v3'
|
||||||
|
import { setActiveClass } from '@/utils'
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { reactive, watch } from 'vue'
|
||||||
|
import { useRouter } from 'vue-router'
|
||||||
|
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
const router = useRouter()
|
||||||
|
|
||||||
|
const scrollElement = document.documentElement
|
||||||
|
|
||||||
|
const blogSummaryInfo = reactive({
|
||||||
|
activePanelName: 'Catalog',
|
||||||
|
isBlogDetail: false
|
||||||
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 监听路由变化 如果当前是查看博客 则需要显示博客目录
|
||||||
|
*/
|
||||||
|
watch(() => router.currentRoute.value.path, (path) => {
|
||||||
|
blogSummaryInfo.isBlogDetail = path.includes('/blog/detail')
|
||||||
|
if (blogSummaryInfo.isBlogDetail) {
|
||||||
|
blogSummaryInfo.activePanelName = 'Catalog'
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
immediate: true
|
||||||
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 切换tab标签
|
||||||
|
* @param panelName panel名称
|
||||||
|
* @param e 点击事件
|
||||||
|
*/
|
||||||
|
const changeTabClick = (panelName: string, e: Event) => {
|
||||||
|
blogSummaryInfo.activePanelName = panelName
|
||||||
|
const element = e.target as Element
|
||||||
|
setActiveClass('blog-summary-tab', 'span', element, 'tab-active')
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点击返回顶部按钮
|
||||||
|
*/
|
||||||
|
const back2topClick = () => {
|
||||||
|
document.body.scrollTop = document.documentElement.scrollTop = 0
|
||||||
|
}
|
||||||
|
</script>
|
||||||
15
src/layout/components/Sidebar/BlogTitle.vue
Normal file
15
src/layout/components/Sidebar/BlogTitle.vue
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<template>
|
||||||
|
<div class="title-container">
|
||||||
|
<span class="title">{{ blogTitleInfo.title }}</span>
|
||||||
|
<span class="sub-title">{{ blogTitleInfo.subTitle }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { reactive } from 'vue'
|
||||||
|
|
||||||
|
const blogTitleInfo = reactive({
|
||||||
|
title: 'NJCxx0822',
|
||||||
|
subTitle: '不要因为别人5%的负面评价而否定自己100%的努力。'
|
||||||
|
})
|
||||||
|
</script>
|
||||||
28
src/layout/components/Sidebar/index.vue
Normal file
28
src/layout/components/Sidebar/index.vue
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
<template>
|
||||||
|
<aside class="blog-aside">
|
||||||
|
<div class="top-container card-container">
|
||||||
|
<blog-title />
|
||||||
|
<blog-menu />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<blog-summary class="card-container"/>
|
||||||
|
</aside>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogTitle from '@/layout/components/Sidebar/BlogTitle.vue'
|
||||||
|
import BlogMenu from '@/layout/components/Sidebar/BlogMenu.vue'
|
||||||
|
import BlogSummary from '@/layout/components/Sidebar/BlogSummary.vue'
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
import { onMounted } from 'vue'
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
await blogStore.queryBlogStats()
|
||||||
|
await blogStore.queryLatestBlog()
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@use "@/styles/blog/blog.sidebar.module.scss";
|
||||||
|
</style>
|
||||||
123
src/layout/components/Tools/BlogCube.vue
Normal file
123
src/layout/components/Tools/BlogCube.vue
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
<template>
|
||||||
|
<div class="cube-container">
|
||||||
|
<div class="cube">
|
||||||
|
<div class="front">
|
||||||
|
<span>欢迎光临</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="back">
|
||||||
|
<span>❤</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="right">
|
||||||
|
<span>Cxx0822</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="left">
|
||||||
|
<span>请多关照</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="top">
|
||||||
|
<span>❤</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="bottom">
|
||||||
|
<span>❤</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.cube-container {
|
||||||
|
width: 50px;
|
||||||
|
height: 60px;
|
||||||
|
margin: 0 auto;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 2;
|
||||||
|
-webkit-perspective: 1000px;
|
||||||
|
perspective: 1000px;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cube {
|
||||||
|
width: 0; /* 大角度旋转 */
|
||||||
|
position: absolute;
|
||||||
|
-webkit-transform-style: preserve-3d;
|
||||||
|
transform-style: preserve-3d;
|
||||||
|
transform: rotateX(-15deg) rotateY(-20deg) translateZ(-100px);
|
||||||
|
-webkit-transform-origin: center center -100px;
|
||||||
|
transform-origin: center center -100px;
|
||||||
|
-webkit-animation: around 5s cubic-bezier(0.94, -0.6, 0.45, 1.31) infinite;
|
||||||
|
animation: around 5s cubic-bezier(0.94, -0.6, 0.45, 1.31) infinite;
|
||||||
|
|
||||||
|
div {
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
display: block;
|
||||||
|
margin: 0;
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: white;
|
||||||
|
font-size: 12px;
|
||||||
|
text-decoration: none;
|
||||||
|
text-align: center;
|
||||||
|
position: fixed;
|
||||||
|
top: 50%;
|
||||||
|
left: 45%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.front {
|
||||||
|
transform: rotateY(0deg) translateZ(25px);
|
||||||
|
background-color: rgba(0, 191, 255, 0.7);
|
||||||
|
border: 1px solid rgba(0, 191, 255, 0.7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.back {
|
||||||
|
transform: rotateX(180deg) translateZ(25px);
|
||||||
|
background-color: rgba(124, 252, 0, 0.7);
|
||||||
|
border: 1px solid rgba(124, 252, 0, 0.7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.left {
|
||||||
|
transform: rotateY(-90deg) translateZ(25px);
|
||||||
|
background-color: rgba(255, 215, 0, 0.7);
|
||||||
|
border: 1px solid rgba(255, 215, 0, 0.7);
|
||||||
|
}
|
||||||
|
.right {
|
||||||
|
transform: rotateY(90deg) translateZ(25px);
|
||||||
|
background-color: rgba(255, 69, 0, 0.7);
|
||||||
|
border: 1px solid rgba(255, 69, 0, 0.7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.top {
|
||||||
|
transform: rotateX(90deg) translateZ(25px);
|
||||||
|
background-color: rgba(255, 0, 157, 0.7);
|
||||||
|
border: 1px solid rgba(255, 0, 157, 0.7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom {
|
||||||
|
transform: rotateX(-90deg) translateZ(25px);
|
||||||
|
background-color: rgba(184, 111, 220, 0.7);
|
||||||
|
border: 1px solid rgba(184, 111, 220, 0.7);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@-webkit-keyframes around {
|
||||||
|
100% {
|
||||||
|
transform: rotateX(-15deg) rotateY(-380deg) translateZ(-100px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes around {
|
||||||
|
100% {
|
||||||
|
transform: rotateX(-15deg) rotateY(-380deg) translateZ(-100px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
29
src/layout/components/Tools/BlogTime.vue
Normal file
29
src/layout/components/Tools/BlogTime.vue
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<template>
|
||||||
|
<canvas id="time-canvas"></canvas>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { onMounted, onUnmounted } from 'vue'
|
||||||
|
import { TimeCanvas } from '@/utils/blog/timeCanvas'
|
||||||
|
|
||||||
|
let timeInterval: any = null
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
const canvas = document.getElementById('time-canvas') as HTMLCanvasElement
|
||||||
|
canvas.width = canvas.parentElement?.offsetWidth as number
|
||||||
|
canvas.height = canvas.parentElement?.offsetHeight as number
|
||||||
|
const context = canvas.getContext('2d') as CanvasRenderingContext2D
|
||||||
|
const timeCanvas = new TimeCanvas(context, canvas.width, canvas.height)
|
||||||
|
|
||||||
|
timeInterval = setInterval(() => {
|
||||||
|
// 清空整个Canvas,重新绘制内容
|
||||||
|
context.clearRect(0, 0, context.canvas.width, context.canvas.height)
|
||||||
|
timeCanvas.drawDatetime()
|
||||||
|
}, 1000)
|
||||||
|
})
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
clearInterval(timeInterval)
|
||||||
|
})
|
||||||
|
|
||||||
|
</script>
|
||||||
196
src/layout/components/Tools/index.vue
Normal file
196
src/layout/components/Tools/index.vue
Normal file
@@ -0,0 +1,196 @@
|
|||||||
|
<template>
|
||||||
|
<div class="blog-tools">
|
||||||
|
<a class="book-mark-link fa fa-bookmark"/>
|
||||||
|
|
||||||
|
<a href="https://github.com/Cxx0822" class="github-corner" aria-label="View source on GitHub" target="_blank">
|
||||||
|
<svg width="80" height="80" viewBox="0 0 250 250"
|
||||||
|
style="fill:#FD6C6C; color:#fff; position: absolute; top: 0; border: 0; right: 0;"
|
||||||
|
aria-hidden="true">
|
||||||
|
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
|
||||||
|
<path
|
||||||
|
d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6
|
||||||
|
C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3
|
||||||
|
C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
|
||||||
|
fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
|
||||||
|
<path
|
||||||
|
d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6
|
||||||
|
C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0
|
||||||
|
C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1
|
||||||
|
C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4
|
||||||
|
C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9
|
||||||
|
C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5
|
||||||
|
C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5
|
||||||
|
C139.8,137.7 141.6,141.9 141.8,141.8 Z"
|
||||||
|
fill="currentColor" class="octo-body"></path>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<!-- <vue-particles id="particles" :options="particlesOptions"/>-->
|
||||||
|
<progress class="blog-progress" id="blog_progress" value="0" />
|
||||||
|
<blog-cube/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogCube from '@/layout/components/Tools/BlogCube.vue'
|
||||||
|
import { createHeartDiv } from '@/utils/blog/blogUtil.ts'
|
||||||
|
import { Ribbon } from '@/utils/blog/ribbon'
|
||||||
|
import { onMounted, onUnmounted } from 'vue'
|
||||||
|
import { useBlogStore } from '@/store/blog.ts'
|
||||||
|
|
||||||
|
const ribbon = new Ribbon()
|
||||||
|
const blogStore = useBlogStore()
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理点击事件
|
||||||
|
* @param event 事件
|
||||||
|
*/
|
||||||
|
const handleClick = (event) => {
|
||||||
|
createHeartDiv(event.clientX, event.clientY)
|
||||||
|
|
||||||
|
if (event.target.classList.contains('ribbon-canvas')) {
|
||||||
|
ribbon.reDraw()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
document.addEventListener('scroll', () => {
|
||||||
|
const progressBar = document.getElementById('blog_progress') as HTMLProgressElement
|
||||||
|
progressBar.max = document.documentElement.scrollHeight - window.innerHeight
|
||||||
|
progressBar.value = window.scrollY
|
||||||
|
blogStore.progressValue = `${(progressBar.value / progressBar.max * 100).toFixed(0)}%`
|
||||||
|
})
|
||||||
|
|
||||||
|
document.addEventListener('click', handleClick)
|
||||||
|
})
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
ribbon.clear()
|
||||||
|
document.removeEventListener('click', handleClick)
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@use "@/styles/blog/blog.variable.module.scss" as blog;
|
||||||
|
|
||||||
|
.blog-tools {
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
.book-mark-link {
|
||||||
|
border-bottom: none;
|
||||||
|
display: block;
|
||||||
|
position: fixed;
|
||||||
|
top: -2px;
|
||||||
|
left: 20px;
|
||||||
|
color: #222;
|
||||||
|
font-size: 26px;
|
||||||
|
transition: .3s;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.github-corner {
|
||||||
|
border-bottom: none;
|
||||||
|
display: block;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
color: #222;
|
||||||
|
font-size: 26px;
|
||||||
|
transition: .3s;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.github-corner:hover .octo-arm {
|
||||||
|
animation: octocat-wave 560ms ease-in-out
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes octocat-wave {
|
||||||
|
0%, 100% {
|
||||||
|
transform: rotate(0)
|
||||||
|
}
|
||||||
|
20%, 60% {
|
||||||
|
transform: rotate(-25deg)
|
||||||
|
}
|
||||||
|
40%, 80% {
|
||||||
|
transform: rotate(10deg)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 500px) {
|
||||||
|
.github-corner:hover .octo-arm {
|
||||||
|
animation: none
|
||||||
|
}
|
||||||
|
.github-corner .octo-arm {
|
||||||
|
animation: octocat-wave 560ms ease-in-out
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#particles {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.heart {
|
||||||
|
position: fixed;
|
||||||
|
opacity: 1;
|
||||||
|
scale: 1;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
background: red;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heart:after, .heart:before {
|
||||||
|
content: "";
|
||||||
|
width: inherit;
|
||||||
|
height: inherit;
|
||||||
|
background: inherit;
|
||||||
|
border-radius: 50%;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heart:after {
|
||||||
|
top: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heart:before {
|
||||||
|
left: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes move {
|
||||||
|
100% {
|
||||||
|
transform: translateY(-20px) rotate(45deg);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-progress {
|
||||||
|
/* Positioning */
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 3px;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
border: none;
|
||||||
|
background-color: transparent;
|
||||||
|
color: blog.$theme-color;
|
||||||
|
z-index: 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-progress::-webkit-progress-bar {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-progress::-webkit-progress-value {
|
||||||
|
background-color: blog.$theme-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-progress::-moz-progress-bar {
|
||||||
|
background-color: blog.$theme-color;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
23
src/layout/index.vue
Normal file
23
src/layout/index.vue
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<template>
|
||||||
|
<section class="blog-container" id="blog-container">
|
||||||
|
<tools />
|
||||||
|
|
||||||
|
<sidebar />
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<router-view/>
|
||||||
|
|
||||||
|
<footer-bar />
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import Tools from '@/layout/components/Tools/index.vue'
|
||||||
|
import Sidebar from '@/layout/components/Sidebar/index.vue'
|
||||||
|
import FooterBar from '@/layout/components/FooterBar/index.vue'
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@use "@/styles/blog/blog.module.scss";
|
||||||
|
</style>
|
||||||
48
src/main.ts
Normal file
48
src/main.ts
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
import { createApp } from 'vue'
|
||||||
|
import { createPinia } from 'pinia'
|
||||||
|
import App from './App.vue'
|
||||||
|
|
||||||
|
// 引入路由
|
||||||
|
import router from './router'
|
||||||
|
|
||||||
|
// 引入element-ui组件
|
||||||
|
import ElementPlus from 'element-plus'
|
||||||
|
import 'element-plus/theme-chalk/src/index.scss'
|
||||||
|
import 'element-plus/theme-chalk/dark/css-vars.css'
|
||||||
|
import 'dayjs/locale/zh-cn'
|
||||||
|
import zhCn from 'element-plus/es/locale/lang/zh-cn'
|
||||||
|
|
||||||
|
// 引入日历组件
|
||||||
|
import VCalendar from 'v-calendar'
|
||||||
|
import 'v-calendar/style.css'
|
||||||
|
|
||||||
|
// 引入粒子特效
|
||||||
|
// import Particles from '@tsparticles/vue3'
|
||||||
|
// import { loadSlim } from '@tsparticles/slim'
|
||||||
|
|
||||||
|
// 引入font-awesome
|
||||||
|
import 'font-awesome/css/font-awesome.min.css'
|
||||||
|
import '@fortawesome/fontawesome-free/css/all.css'
|
||||||
|
|
||||||
|
import 'animate.css'
|
||||||
|
|
||||||
|
// 注册svg-icon
|
||||||
|
import 'virtual:svg-icons-register'
|
||||||
|
|
||||||
|
// 创建Vue3实例
|
||||||
|
const app = createApp(App)
|
||||||
|
// 使用路由
|
||||||
|
app.use(router)
|
||||||
|
// 使用Pinia 需要ts 4.5以上
|
||||||
|
app.use(createPinia())
|
||||||
|
// 使用Element UI Plus
|
||||||
|
app.use(ElementPlus, { locale: zhCn })
|
||||||
|
// app.use(Particles, {
|
||||||
|
// init: async (engine: any) => {
|
||||||
|
// // 加载精简版
|
||||||
|
// await loadSlim(engine)
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
app.use(VCalendar, {})
|
||||||
|
// 挂载到根组件上
|
||||||
|
app.mount('#app')
|
||||||
8
src/router/blog.ts
Normal file
8
src/router/blog.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
import BlogLayout from '@/layout/index.vue'
|
||||||
|
import { getRoutersByModules } from 'vue3-common/utils/routerUtil'
|
||||||
|
import { blogMeta } from '@/views/blog/meta'
|
||||||
|
|
||||||
|
|
||||||
|
const blogRoutes = getRoutersByModules(import.meta.glob('@/views/blog/**/*.vue'), BlogLayout, blogMeta)
|
||||||
|
|
||||||
|
export default blogRoutes
|
||||||
10
src/router/constant.ts
Normal file
10
src/router/constant.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import { RouteRecordRaw } from 'vue-router'
|
||||||
|
|
||||||
|
const constantRoutes: RouteRecordRaw[] = [
|
||||||
|
{
|
||||||
|
path: '/',
|
||||||
|
redirect: '/blog/overview'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
export default constantRoutes
|
||||||
20
src/router/index.ts
Normal file
20
src/router/index.ts
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
|
||||||
|
import { setupRouteGuard } from 'vue3-common/utils/permissionUtil'
|
||||||
|
|
||||||
|
// 使用 import.meta.glob 自动导入所有 src/router 目录下的 .ts 文件
|
||||||
|
const routeModules = import.meta.glob('./*.ts', { eager: true })
|
||||||
|
|
||||||
|
// 将所有模块的默认导出(即路由配置)合并成一个路由数组
|
||||||
|
const routes: RouteRecordRaw[] = Object.values(routeModules)
|
||||||
|
.map((module: any) => module.default) // 获取每个模块的默认导出
|
||||||
|
.flat() // 扁平化数组,确保所有路由项都在一个数组中
|
||||||
|
|
||||||
|
const router = createRouter({
|
||||||
|
history: createWebHashHistory(),
|
||||||
|
scrollBehavior: () => ({ top: 0 }),
|
||||||
|
routes
|
||||||
|
})
|
||||||
|
|
||||||
|
setupRouteGuard(router)
|
||||||
|
|
||||||
|
export default router
|
||||||
168
src/store/blog.ts
Normal file
168
src/store/blog.ts
Normal file
@@ -0,0 +1,168 @@
|
|||||||
|
import { defineStore } from 'pinia'
|
||||||
|
import {
|
||||||
|
IBlog, IBlogCategory, IBlogComment,
|
||||||
|
IBlogLatest, IBlogNestedComment, IBlogStats, INewBlog, IQueryBlog
|
||||||
|
} from '@/types/blog'
|
||||||
|
import {
|
||||||
|
addBlogApi, addBlogCommentApi, deleteBlogApi, queryAdminBlogApi, queryAdminBlogByIdApi, queryAdminBlogCategoryApi,
|
||||||
|
queryBlogApi, queryBlogByConditionApi, queryBlogByIdApi,
|
||||||
|
queryBlogCategoryApi, queryBlogCommentApi, queryBlogStatsApi, queryLatestBlogApi, updateBlogApi
|
||||||
|
} from '@/apis/blog.ts'
|
||||||
|
import { IHandleApi } from 'vue3-common/types'
|
||||||
|
import { ElMessage } from 'element-plus'
|
||||||
|
import { ImagePathEnum } from '@/types'
|
||||||
|
import { flattenToTwoLevel } from '@/utils/blog/blogUtil.ts'
|
||||||
|
|
||||||
|
export const useBlogStore = defineStore('blog', {
|
||||||
|
state: () => ({
|
||||||
|
blogList: [] as IBlog[],
|
||||||
|
blogCommentList: [] as IBlogComment[],
|
||||||
|
blogNestedCommentList: [] as IBlogNestedComment[],
|
||||||
|
currentBlogComment: {
|
||||||
|
id: 0,
|
||||||
|
blogId: 0,
|
||||||
|
name: '',
|
||||||
|
website: '',
|
||||||
|
content: '',
|
||||||
|
ipAddress: '',
|
||||||
|
userAgent: '',
|
||||||
|
parentId: 0,
|
||||||
|
isApproved: true,
|
||||||
|
createTime: ''
|
||||||
|
} as IBlogComment,
|
||||||
|
currentBlogId: 0,
|
||||||
|
currentBlog: {
|
||||||
|
id: 0,
|
||||||
|
title: '',
|
||||||
|
topValue: 0,
|
||||||
|
isGreat: false,
|
||||||
|
categoryId: 0,
|
||||||
|
category: '',
|
||||||
|
summary: '',
|
||||||
|
content: '',
|
||||||
|
wordCount: 0,
|
||||||
|
readDuration: 0,
|
||||||
|
visitCount: 0,
|
||||||
|
createTime: '',
|
||||||
|
updateTime: ''
|
||||||
|
} as IBlog,
|
||||||
|
newBlog: {} as INewBlog,
|
||||||
|
blogCategoryList: [] as IBlogCategory[],
|
||||||
|
blogStats: {} as IBlogStats,
|
||||||
|
latestBlogList: [] as IBlogLatest[],
|
||||||
|
queryBlog: {} as IQueryBlog,
|
||||||
|
blogImagePath: ImagePathEnum.BLOG,
|
||||||
|
blogApiType: 'ADD' as IHandleApi,
|
||||||
|
pageInfo: {
|
||||||
|
currentPage: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
totalSize: 1
|
||||||
|
},
|
||||||
|
isScrollEnd: false,
|
||||||
|
adminPageInfo: {
|
||||||
|
currentPage: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
totalSize: 1
|
||||||
|
},
|
||||||
|
progressValue: '0%'
|
||||||
|
}),
|
||||||
|
actions: {
|
||||||
|
async queryBlog() {
|
||||||
|
const { currentPage, pageSize } = this.pageInfo
|
||||||
|
const result = await queryBlogApi(currentPage, pageSize)
|
||||||
|
this.blogList = result.records
|
||||||
|
this.pageInfo.totalSize = result.total
|
||||||
|
},
|
||||||
|
async queryMobileBlog() {
|
||||||
|
const { currentPage, pageSize } = this.pageInfo
|
||||||
|
const result = await queryBlogApi(currentPage, pageSize)
|
||||||
|
this.blogList.push(...result.records)
|
||||||
|
this.pageInfo.totalSize = result.total
|
||||||
|
},
|
||||||
|
async queryAdminBlog() {
|
||||||
|
const { currentPage, pageSize } = this.adminPageInfo
|
||||||
|
const result = await queryAdminBlogApi(currentPage, pageSize)
|
||||||
|
this.blogList = result.records
|
||||||
|
this.pageInfo.totalSize = result.total
|
||||||
|
},
|
||||||
|
async queryBlogByCondition(query: IQueryBlog) {
|
||||||
|
this.blogList = await queryBlogByConditionApi(query)
|
||||||
|
},
|
||||||
|
async queryBlogById(id: number) {
|
||||||
|
this.currentBlog = await queryBlogByIdApi(id)
|
||||||
|
await this.queryBlogComment(this.currentBlogId)
|
||||||
|
this.blogNestedCommentList = flattenToTwoLevel(this.blogCommentList)
|
||||||
|
},
|
||||||
|
async queryAdminBlogById(id: number) {
|
||||||
|
this.currentBlog = await queryAdminBlogByIdApi(id)
|
||||||
|
},
|
||||||
|
async queryBlogComment(blogId: number) {
|
||||||
|
this.blogCommentList = await queryBlogCommentApi(blogId)
|
||||||
|
},
|
||||||
|
async addBlogComment(blogComment: IBlogComment) {
|
||||||
|
await addBlogCommentApi(blogComment)
|
||||||
|
await this.queryBlogById(blogComment.blogId)
|
||||||
|
},
|
||||||
|
async queryBlogCategory() {
|
||||||
|
this.blogCategoryList = await queryBlogCategoryApi()
|
||||||
|
},
|
||||||
|
async queryAdminBlogCategory() {
|
||||||
|
this.blogCategoryList = await queryAdminBlogCategoryApi()
|
||||||
|
},
|
||||||
|
async queryBlogStats() {
|
||||||
|
this.blogStats = await queryBlogStatsApi()
|
||||||
|
},
|
||||||
|
async queryLatestBlog() {
|
||||||
|
this.latestBlogList = await queryLatestBlogApi()
|
||||||
|
},
|
||||||
|
async handleBlogApi(id?: number) {
|
||||||
|
switch (this.blogApiType) {
|
||||||
|
case 'ADD':
|
||||||
|
await addBlogApi(this.newBlog)
|
||||||
|
ElMessage.success('新增博客成功')
|
||||||
|
break
|
||||||
|
case 'UPDATE':
|
||||||
|
await updateBlogApi(this.newBlog.id as number, this.newBlog)
|
||||||
|
ElMessage.success('更新博客成功')
|
||||||
|
break
|
||||||
|
case 'DELETE':
|
||||||
|
await deleteBlogApi(id as number)
|
||||||
|
ElMessage.success('删除博客成功')
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
break
|
||||||
|
}
|
||||||
|
await this.refreshInfo()
|
||||||
|
},
|
||||||
|
async refreshInfo() {
|
||||||
|
this.pageInfo.currentPage = 1
|
||||||
|
await this.queryBlog()
|
||||||
|
await this.queryBlogStats()
|
||||||
|
await this.queryLatestBlog()
|
||||||
|
},
|
||||||
|
getEmptyBlog(): INewBlog {
|
||||||
|
return {
|
||||||
|
id: 0,
|
||||||
|
category: '',
|
||||||
|
content: '',
|
||||||
|
isGreat: false,
|
||||||
|
title: '',
|
||||||
|
topValue: 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getEmptyBlogComment(): IBlogComment {
|
||||||
|
return {
|
||||||
|
blogId: 0,
|
||||||
|
content: '',
|
||||||
|
createTime: '',
|
||||||
|
id: 0,
|
||||||
|
ipAddress: '',
|
||||||
|
isApproved: true,
|
||||||
|
name: '',
|
||||||
|
parentId: 0,
|
||||||
|
userAgent: '',
|
||||||
|
website: ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
51
src/styles/blog/blog.archive.module.scss
Normal file
51
src/styles/blog/blog.archive.module.scss
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
@use "blog.variable.module.scss" as blog;
|
||||||
|
|
||||||
|
.blog-archive {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 3vh;
|
||||||
|
padding: 10vh 2vw;
|
||||||
|
|
||||||
|
::v-deep(.el-date-editor) {
|
||||||
|
align-self: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.total {
|
||||||
|
align-self: center;
|
||||||
|
font-size: blog.$normal-font-size;
|
||||||
|
color: blog.$normal-text-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.time-line {
|
||||||
|
height: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
.item {
|
||||||
|
height: 5vh;
|
||||||
|
|
||||||
|
.date {
|
||||||
|
color: blog.$normal-text-color;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: blog.$normal-font-size;
|
||||||
|
color: blog.$normal-text-color;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 0.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title:hover {
|
||||||
|
color: blog.$hover-text-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 768px) {
|
||||||
|
.blog-archive {
|
||||||
|
padding: 20px 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
59
src/styles/blog/blog.category.detail.module.scss
Normal file
59
src/styles/blog/blog.category.detail.module.scss
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
@use "blog.variable.module.scss" as blog;
|
||||||
|
|
||||||
|
.blog-category-detail {
|
||||||
|
padding: 10vh 2vw;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 3vh;
|
||||||
|
|
||||||
|
.name {
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
font-size: blog.$large-font-size;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category-detail-list {
|
||||||
|
height: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 2vh;
|
||||||
|
|
||||||
|
.item {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 40px 150px 1fr;
|
||||||
|
justify-items: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
color: blog.$normal-text-color;
|
||||||
|
|
||||||
|
padding-bottom: 0.5vh;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px dashed blog.$gray-text-color;
|
||||||
|
|
||||||
|
.number, .date {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
justify-self: start;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
padding: 0.2vw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.item:hover {
|
||||||
|
color: blog.$hover-text-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 768px) {
|
||||||
|
.blog-category-detail {
|
||||||
|
padding: 20px 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
63
src/styles/blog/blog.category.module.scss
Normal file
63
src/styles/blog/blog.category.module.scss
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
@use "blog.variable.module.scss" as blog;
|
||||||
|
|
||||||
|
.blog-category {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 3vh;
|
||||||
|
padding: 10vh 2vw;
|
||||||
|
|
||||||
|
.total {
|
||||||
|
text-align: center;
|
||||||
|
font-size: blog.$normal-font-size;
|
||||||
|
color: blog.$normal-text-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category-list {
|
||||||
|
height: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 15px;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
.item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 5px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
border-bottom: 1px dashed blog.$gray-text-color;
|
||||||
|
|
||||||
|
i {
|
||||||
|
font-size:28px;
|
||||||
|
color: #0f8bc7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 5px;
|
||||||
|
|
||||||
|
.label {
|
||||||
|
cursor: pointer;
|
||||||
|
color: blog.$normal-text-color;
|
||||||
|
font-size: blog.$normal-font-size;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label:hover {
|
||||||
|
color: blog.$hover-text-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.value {
|
||||||
|
font-size: blog.$normal-font-size;
|
||||||
|
color: blog.$gray-text-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 768px) {
|
||||||
|
.blog-category {
|
||||||
|
padding: 20px 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
73
src/styles/blog/blog.detail.module.scss
Normal file
73
src/styles/blog/blog.detail.module.scss
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
@use "blog.variable.module.scss" as blog;
|
||||||
|
|
||||||
|
.blog-detail {
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 2vh;
|
||||||
|
padding: 10vh 2vw 3vh 2vw;
|
||||||
|
|
||||||
|
.blog-md {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
padding: 1vh 1vw;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 0 5px blog.$border-color;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
.md-editor {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-title {
|
||||||
|
width: 100%;
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: 1fr 1fr;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
background-color: blog.$theme-color;
|
||||||
|
padding: 5px;
|
||||||
|
border: 2px solid blog.$theme-color;
|
||||||
|
border-radius: 10px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: blog.$blog-title-font-size;
|
||||||
|
font-family: "华文楷体", serif;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-copyright {
|
||||||
|
width: 100%;
|
||||||
|
background-color: #F8F8F8;
|
||||||
|
padding: 1vh 1vw;
|
||||||
|
border-left: 3px solid #FD2C17;
|
||||||
|
font-size: blog.$small-font-size;
|
||||||
|
color: #666666;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
strong {
|
||||||
|
margin-right: 0.2vw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-ending {
|
||||||
|
span {
|
||||||
|
color: #CFCFCF;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-detail-mobile {
|
||||||
|
padding: 10px;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 2vh;
|
||||||
|
}
|
||||||
15
src/styles/blog/blog.footbar.module.scss
Normal file
15
src/styles/blog/blog.footbar.module.scss
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
@use "blog.variable.module.scss" as blog;
|
||||||
|
|
||||||
|
.blog-site-footer {
|
||||||
|
padding: 1vh 0;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: blog.$small-font-size;
|
||||||
|
}
|
||||||
|
}
|
||||||
57
src/styles/blog/blog.label.module.scss
Normal file
57
src/styles/blog/blog.label.module.scss
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
@use "blog.variable.module.scss" as blog;
|
||||||
|
|
||||||
|
.label-list {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
margin-bottom: 1vh;
|
||||||
|
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 5px;
|
||||||
|
|
||||||
|
.item {
|
||||||
|
font-size: blog.$small-font-size;
|
||||||
|
color: blog.$gray-text-color;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 5px;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: blog.$small-font-size;
|
||||||
|
font-family: "Times New Roman", serif;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-value {
|
||||||
|
color: #7d26cd !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.great {
|
||||||
|
color: #FFFFFF !important;
|
||||||
|
background-color: #7d26cd;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.date {
|
||||||
|
text-decoration: underline dotted;
|
||||||
|
text-underline-offset: 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category {
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 0.2em;
|
||||||
|
color: blog.$normal-text-color;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category:hover {
|
||||||
|
color: blog.$hover-text-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
66
src/styles/blog/blog.module.scss
Normal file
66
src/styles/blog/blog.module.scss
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
@use "blog.variable.module.scss" as blog;
|
||||||
|
|
||||||
|
.blog-container {
|
||||||
|
// height: 100%;
|
||||||
|
background-color: blog.$bg-color;
|
||||||
|
padding: 0 5vw;
|
||||||
|
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: minmax(13vw, 200px) 1fr;
|
||||||
|
column-gap: 2vw;
|
||||||
|
|
||||||
|
aside {
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: 40vh 60vh;
|
||||||
|
row-gap: 2vh;
|
||||||
|
z-index: 2;
|
||||||
|
|
||||||
|
.blog-summary {
|
||||||
|
// 滚动到顶部固定
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
section {
|
||||||
|
z-index: 2;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 2vh;
|
||||||
|
|
||||||
|
.blog-section {
|
||||||
|
// height: 100%;
|
||||||
|
min-height: 100vh;
|
||||||
|
background-color: blog.$card-bg-color;
|
||||||
|
border: 1px solid blog.$border-color;
|
||||||
|
border-radius: blog.$border-radius;
|
||||||
|
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12),
|
||||||
|
0 3px 1px -2px rgba(0,0,0,0.06),
|
||||||
|
0 1px 5px 0 rgba(0,0,0,0.12),
|
||||||
|
0 -1px 0.5px 0 rgba(0,0,0,0.09);
|
||||||
|
|
||||||
|
.module-title {
|
||||||
|
background-color: blog.$theme-color;
|
||||||
|
padding: 5px;
|
||||||
|
border: 2px solid blog.$theme-color;
|
||||||
|
border-radius: 10px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: blog.$large-font-size;
|
||||||
|
font-family: "华文楷体", serif;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-container {
|
||||||
|
background-color: blog.$card-bg-color;
|
||||||
|
border: 1px solid blog.$border-color;
|
||||||
|
border-radius: blog.$border-radius;
|
||||||
|
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12),
|
||||||
|
0 3px 1px -2px rgba(0,0,0,0.06),
|
||||||
|
0 1px 5px 0 rgba(0,0,0,0.12),
|
||||||
|
0 -1px 0.5px 0 rgba(0,0,0,0.09);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
87
src/styles/blog/blog.overview.module.scss
Normal file
87
src/styles/blog/blog.overview.module.scss
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
@use "blog.variable.module.scss" as blog;
|
||||||
|
|
||||||
|
$blog-content-list-item-height: 38vh;
|
||||||
|
$blog-content-title-font-size: 1.6rem;
|
||||||
|
$hr-color: #CFCFCF;
|
||||||
|
|
||||||
|
.blog-content-list {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
gap: 5vh;
|
||||||
|
padding: 10vh 2vw 2vh 2vw;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.blog-content {
|
||||||
|
width: 100%;
|
||||||
|
height: $blog-content-list-item-height;
|
||||||
|
padding: 4vh 1vw;
|
||||||
|
|
||||||
|
border: 1px solid blog.$border-color;
|
||||||
|
border-radius: 15px;
|
||||||
|
box-shadow: 0 0 5px blog.$border-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-content-empty {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-content-summary {
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: 1fr 1fr 8vh 1fr 1fr;
|
||||||
|
justify-items: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 2vh;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: $blog-content-title-font-size;
|
||||||
|
font-family: "华文楷体", serif;
|
||||||
|
font-weight: bolder;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 自动展开下划线
|
||||||
|
.title:after {
|
||||||
|
content: "";
|
||||||
|
width: 0;
|
||||||
|
height: 2px;
|
||||||
|
background: blog.$theme-color;
|
||||||
|
// 初始位置在底部中间
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
left: 50%;
|
||||||
|
// 动画时间
|
||||||
|
transition: all .8s;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 悬浮式展开到100%
|
||||||
|
.title:hover::after {
|
||||||
|
width: 100%;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
font-size: blog.$normal-font-size;
|
||||||
|
line-height: 150%;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
width: 10%;
|
||||||
|
height: 1px;
|
||||||
|
background-color: $hr-color;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
span, p {
|
||||||
|
font-family: '华为行楷',serif;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 768px) {
|
||||||
|
.blog-content-list {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
282
src/styles/blog/blog.sidebar.module.scss
Normal file
282
src/styles/blog/blog.sidebar.module.scss
Normal file
@@ -0,0 +1,282 @@
|
|||||||
|
@use "blog.variable.module.scss" as blog;
|
||||||
|
|
||||||
|
$title-font-color: #FFFFFF;
|
||||||
|
$title-font-size: 1.8rem;
|
||||||
|
$sub-title-font-size: 1rem;
|
||||||
|
|
||||||
|
.blog-aside {
|
||||||
|
.top-container {
|
||||||
|
width: 100%;
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: 2fr 3fr;
|
||||||
|
|
||||||
|
.title-container {
|
||||||
|
background-color: blog.$theme-color;
|
||||||
|
border-top-left-radius: 15px;
|
||||||
|
border-top-right-radius: 15px;
|
||||||
|
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: 1fr 1fr;
|
||||||
|
justify-items: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
padding: 10px;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
color: $title-font-color;
|
||||||
|
font-size: $title-font-size;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-title {
|
||||||
|
font-family: "华文楷体", serif;
|
||||||
|
font-size: $sub-title-font-size;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 150%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-menu-container {
|
||||||
|
align-self: center;
|
||||||
|
height: 90%;
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: repeat(4, 1fr);
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.el-menu-item {
|
||||||
|
height: 5vh;
|
||||||
|
gap: 0.5vw;
|
||||||
|
font-size: blog.$normal-font-size;
|
||||||
|
|
||||||
|
.menu-title {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.value {
|
||||||
|
position: absolute;
|
||||||
|
right: 10%;
|
||||||
|
line-height: 2vh;
|
||||||
|
|
||||||
|
background-color: blog.$normal-bg-color;
|
||||||
|
padding: 2px;
|
||||||
|
border: solid 1px blog.$normal-bg-color;
|
||||||
|
border-radius: 15px;
|
||||||
|
|
||||||
|
color: white;
|
||||||
|
font-size: blog.$small-font-size;
|
||||||
|
font-family: "Times New Roman",serif;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-menu {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-summary {
|
||||||
|
// padding: 2vh 1vw;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
.blog-summary-tab {
|
||||||
|
margin-top: 1vh;
|
||||||
|
height: 5vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vw;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: blog.$small-font-size;
|
||||||
|
}
|
||||||
|
|
||||||
|
span:hover {
|
||||||
|
color: #FC6423;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-active {
|
||||||
|
color: #FC6423;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 0.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-brief {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: 150px 50px 50px 1fr;
|
||||||
|
justify-items: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
.avatar {
|
||||||
|
padding: 1vh 1vw;
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: 100px 1fr;
|
||||||
|
justify-items: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
border-radius: 50%;
|
||||||
|
transition: all 2.0s;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
img:hover {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
justify-items: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vw;
|
||||||
|
|
||||||
|
.item {
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: 1fr 1fr;
|
||||||
|
justify-items: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
.name {
|
||||||
|
color: blog.$gray-text-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.name:hover {
|
||||||
|
color: blog.$hover-text-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.social {
|
||||||
|
width: 100%;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
.item {
|
||||||
|
width: 100%;
|
||||||
|
padding: 5px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 5px;
|
||||||
|
color: blog.$normal-text-color;
|
||||||
|
font-size: blog.$small-font-size;
|
||||||
|
|
||||||
|
.name {
|
||||||
|
font-size: blog.$small-font-size;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.item:hover {
|
||||||
|
background-color: blog.$hover-bg-color;
|
||||||
|
color: blog.$hover-text-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.latest-blog {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
span {
|
||||||
|
margin-left: 5px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-list {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1.5vh;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
span {
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 0.1em;
|
||||||
|
font-size: blog.$small-font-size;
|
||||||
|
color: blog.$normal-text-color;
|
||||||
|
|
||||||
|
width: 80%;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
span:hover {
|
||||||
|
color: blog.$hover-text-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blog-time {
|
||||||
|
width: 10vw;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: blog.$normal-font-size;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-editor-catalog {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
span {
|
||||||
|
word-break: break-all;
|
||||||
|
white-space: normal;
|
||||||
|
font-size: blog.$smaller-font-size;
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.scroll-container {
|
||||||
|
padding: 2px 0;
|
||||||
|
width: 100%;
|
||||||
|
border-color: blog.$border-color;
|
||||||
|
border-bottom-left-radius: blog.$border-radius;
|
||||||
|
border-bottom-right-radius: blog.$border-radius;
|
||||||
|
background-color: #F8F9FA;
|
||||||
|
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.fa-arrow-up {
|
||||||
|
color: blog.$theme-color;
|
||||||
|
margin-right: 0.2vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: blog.$small-font-size;
|
||||||
|
color: #A19FA0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.scroll-container:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
23
src/styles/blog/blog.variable.module.scss
Normal file
23
src/styles/blog/blog.variable.module.scss
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
$bg-color: #EEEEEE;
|
||||||
|
$card-bg-color: #FFFFFF;
|
||||||
|
|
||||||
|
// 主题颜色
|
||||||
|
$theme-color: #009FA8;
|
||||||
|
// 正常文本颜色
|
||||||
|
$normal-text-color: #555555;
|
||||||
|
// 悬浮文本颜色
|
||||||
|
$hover-text-color: #000000;
|
||||||
|
// 灰色文本颜色
|
||||||
|
$gray-text-color: #9C9C9C;
|
||||||
|
|
||||||
|
$normal-bg-color: #CCCCCC;
|
||||||
|
$hover-bg-color: #F9F9F9;
|
||||||
|
|
||||||
|
$blog-title-font-size: 1.6rem;
|
||||||
|
$large-font-size: 1.3rem;
|
||||||
|
$normal-font-size: 1rem;
|
||||||
|
$small-font-size: 0.9rem;
|
||||||
|
$smaller-font-size: 0.8rem;
|
||||||
|
|
||||||
|
$border-color: #EEEEEE;
|
||||||
|
$border-radius: 15px;
|
||||||
10
src/styles/element/index.module.scss
Normal file
10
src/styles/element/index.module.scss
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
@use 'element-plus/theme-chalk/src/common/var.scss' with (
|
||||||
|
$colors: (
|
||||||
|
'primary': (
|
||||||
|
'base': #009FA8, // 设置你的主题色
|
||||||
|
),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
// 也可以在此引入其他 Element Plus 样式
|
||||||
|
//@use 'element-plus/theme-chalk/src/index.scss' as *;
|
||||||
83
src/styles/index.module.scss
Normal file
83
src/styles/index.module.scss
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
body {
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
text-rendering: optimizeLegibility;
|
||||||
|
font-family: CustomFont, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
*:before,
|
||||||
|
*:after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:focus,
|
||||||
|
a:active {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a,
|
||||||
|
a:focus,
|
||||||
|
a:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#app {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
span, input {
|
||||||
|
font-family: 'CustomFont', serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 明亮主题变量
|
||||||
|
:root {
|
||||||
|
// 基础颜色
|
||||||
|
--color-bg: #F5F5F5;
|
||||||
|
--color-card-bg: #FFFFFF;
|
||||||
|
--color-record-card-bg: #F5F5DC;
|
||||||
|
--color-border-bg: #FFFFFF;
|
||||||
|
--color-text: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 暗黑主题变量
|
||||||
|
.dark {
|
||||||
|
--color-bg: #000000;
|
||||||
|
--color-card-bg: #000000;
|
||||||
|
--color-record-card-bg: #4C4D4F;
|
||||||
|
--color-border-bg: #4C4D4F;
|
||||||
|
--color-text: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
::view-transition-old(root),
|
||||||
|
::view-transition-new(root) {
|
||||||
|
animation: none;
|
||||||
|
}
|
||||||
|
.dark::view-transition-old(root) {
|
||||||
|
z-index: 9999;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1280px) {
|
||||||
|
html {
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'CustomFont';
|
||||||
|
src: url('@/assets/font/custom.ttf') format('truetype');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
84
src/types/blog.ts
Normal file
84
src/types/blog.ts
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
export interface IBlog {
|
||||||
|
id: number;
|
||||||
|
title: string;
|
||||||
|
topValue: number;
|
||||||
|
isGreat: boolean;
|
||||||
|
categoryId: number;
|
||||||
|
category: string;
|
||||||
|
summary: string;
|
||||||
|
content: string;
|
||||||
|
wordCount: number;
|
||||||
|
readDuration: number;
|
||||||
|
visitCount: number;
|
||||||
|
createTime: string;
|
||||||
|
updateTime: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface INewBlog {
|
||||||
|
id: number;
|
||||||
|
title: string;
|
||||||
|
topValue: number;
|
||||||
|
isGreat: boolean;
|
||||||
|
category: string;
|
||||||
|
content: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IQueryBlog {
|
||||||
|
category?: string;
|
||||||
|
title?: string;
|
||||||
|
year?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IBasicBlog {
|
||||||
|
category: string;
|
||||||
|
topValue: number;
|
||||||
|
isGreat: boolean;
|
||||||
|
wordCount: number;
|
||||||
|
readDuration: number;
|
||||||
|
visitCount: number;
|
||||||
|
createTime: string;
|
||||||
|
updateTime: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IBlogCategory {
|
||||||
|
name: string;
|
||||||
|
count: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IBlogStats {
|
||||||
|
blogCount: number;
|
||||||
|
categoryCount: number;
|
||||||
|
wordCount: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IBlogLatest {
|
||||||
|
id: number;
|
||||||
|
title: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IBlogVisit {
|
||||||
|
ip: string;
|
||||||
|
os: string;
|
||||||
|
browser: string;
|
||||||
|
uri: string;
|
||||||
|
title: string;
|
||||||
|
visitTime: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IBlogComment {
|
||||||
|
id: number;
|
||||||
|
blogId: number;
|
||||||
|
name: string;
|
||||||
|
website: string;
|
||||||
|
content: string;
|
||||||
|
ipAddress: string;
|
||||||
|
userAgent: string;
|
||||||
|
parentId: number;
|
||||||
|
isApproved: boolean;
|
||||||
|
createTime: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IBlogNestedComment {
|
||||||
|
comment: IBlogComment;
|
||||||
|
replies: IBlogComment[];
|
||||||
|
}
|
||||||
25
src/types/index.ts
Normal file
25
src/types/index.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
export enum ImagePathEnum {
|
||||||
|
BLOG= 'blog',
|
||||||
|
BILL = 'bill',
|
||||||
|
FOOD = 'food',
|
||||||
|
TRAVEL = 'travel',
|
||||||
|
PRODUCT = 'product',
|
||||||
|
JOURNAL = 'journal',
|
||||||
|
LEDGER = 'ledger',
|
||||||
|
USER = 'user'
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IPageRecord<T> {
|
||||||
|
current: number;
|
||||||
|
size: number;
|
||||||
|
total: number;
|
||||||
|
pages: number;
|
||||||
|
records: T[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export type IDateType = 'month' | 'year'
|
||||||
|
|
||||||
|
export interface ICategory {
|
||||||
|
label: string;
|
||||||
|
value: string;
|
||||||
|
}
|
||||||
194
src/utils/blog/blogUtil.ts
Normal file
194
src/utils/blog/blogUtil.ts
Normal file
@@ -0,0 +1,194 @@
|
|||||||
|
import { ElMessage } from 'element-plus'
|
||||||
|
import { IBasicBlog, IBlog, IBlogComment, IBlogNestedComment } from '@/types/blog.ts'
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 粒子特效
|
||||||
|
*/
|
||||||
|
export const particlesOptions = {
|
||||||
|
background: {
|
||||||
|
color: {}
|
||||||
|
},
|
||||||
|
fpsLimit: 60,
|
||||||
|
interactivity: {
|
||||||
|
events: {
|
||||||
|
// 点击时事件
|
||||||
|
onClick: {
|
||||||
|
enable: false,
|
||||||
|
mode: 'push' // 可用的click模式有: "push", "remove", "repulse", "bubble"。
|
||||||
|
},
|
||||||
|
// 悬浮时事件
|
||||||
|
onHover: {
|
||||||
|
enable: true,
|
||||||
|
mode: 'grab' // 可用的hover模式有: "grab", "repulse", "bubble"。
|
||||||
|
},
|
||||||
|
resize: true
|
||||||
|
},
|
||||||
|
modes: {
|
||||||
|
bubble: {
|
||||||
|
distance: 400,
|
||||||
|
duration: 2,
|
||||||
|
opacity: 0.8,
|
||||||
|
size: 40
|
||||||
|
},
|
||||||
|
push: {
|
||||||
|
quantity: 4
|
||||||
|
},
|
||||||
|
repulse: {
|
||||||
|
distance: 200,
|
||||||
|
duration: 0.4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
particles: {
|
||||||
|
color: {
|
||||||
|
value: '#000000'
|
||||||
|
},
|
||||||
|
links: {
|
||||||
|
color: '#000000', // '#dedede'。线条颜色。
|
||||||
|
distance: 150, // 线条长度
|
||||||
|
enable: true, // 是否有线条
|
||||||
|
opacity: 0.5, // 线条透明度。
|
||||||
|
width: 1 // 线条宽度。
|
||||||
|
},
|
||||||
|
collisions: {
|
||||||
|
enable: false
|
||||||
|
},
|
||||||
|
move: {
|
||||||
|
direction: 'none',
|
||||||
|
enable: true,
|
||||||
|
outMode: 'bounce',
|
||||||
|
random: false,
|
||||||
|
speed: 4, // 粒子运动速度。
|
||||||
|
straight: false
|
||||||
|
},
|
||||||
|
number: {
|
||||||
|
density: {
|
||||||
|
enable: true,
|
||||||
|
area: 800
|
||||||
|
},
|
||||||
|
value: 50 // 粒子数量。
|
||||||
|
},
|
||||||
|
opacity: {
|
||||||
|
value: 0.1 // 粒子透明度。
|
||||||
|
},
|
||||||
|
shape: {
|
||||||
|
type: 'edge' // 可用的粒子外观类型有:"circle","edge","triangle", "polygon","star"
|
||||||
|
},
|
||||||
|
size: {
|
||||||
|
random: true,
|
||||||
|
value: 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
detectRetina: true
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建鼠标点击爱心特效
|
||||||
|
* @param leftPosition 左侧位置
|
||||||
|
* @param topPosition 右侧位置
|
||||||
|
*/
|
||||||
|
export const createHeartDiv = (leftPosition: number, topPosition: number) => {
|
||||||
|
const heart = document.createElement('div')
|
||||||
|
document.body.appendChild(heart)
|
||||||
|
heart.classList.add('heart')
|
||||||
|
heart.style.left = `${leftPosition}px`
|
||||||
|
heart.style.top = `${topPosition}px`
|
||||||
|
heart.style.animation = 'move 1s normal forwards'
|
||||||
|
setTimeout(() => {
|
||||||
|
document.body.removeChild(heart)
|
||||||
|
}, 1000)
|
||||||
|
heart.style.backgroundColor = `rgb(${Math.random() * 255},${Math.random() * 255},${Math.random() * 255})`
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 校验博客上传图片
|
||||||
|
* @param files 文件
|
||||||
|
*/
|
||||||
|
export const validateBlogImage = (files: File[]): boolean => {
|
||||||
|
if (files.length > 1) {
|
||||||
|
ElMessage.error('请上传1张图片')
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
const uploadFile = files[0]
|
||||||
|
const fileTypeList = ['png', 'jpg', 'jpeg', 'bmp', 'gif', 'webp', 'psd', 'svg', 'tiff']
|
||||||
|
if (fileTypeList.indexOf(uploadFile.type.toLowerCase()) !== -1) {
|
||||||
|
ElMessage.error('请上传图片文件')
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
const maxFileSize = 5 * 1024 * 1024
|
||||||
|
if (uploadFile.size > maxFileSize) {
|
||||||
|
ElMessage.error('请上传5M以内的图片')
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
export const formatBlogWordCount = (count: number): string => {
|
||||||
|
if (!count) {
|
||||||
|
return ''
|
||||||
|
}
|
||||||
|
|
||||||
|
if (count < 10000) return count.toString()
|
||||||
|
|
||||||
|
const units = ['万', '亿', '兆']
|
||||||
|
let unitIndex = -1
|
||||||
|
|
||||||
|
while (count >= 10000 && unitIndex < units.length - 1) {
|
||||||
|
count /= 10000
|
||||||
|
unitIndex++
|
||||||
|
}
|
||||||
|
|
||||||
|
// 保留两位小数,并移除末尾可能的零
|
||||||
|
const formattedNum = count.toFixed(2).replace(/\.?0+$/, '')
|
||||||
|
return `${formattedNum}${units[unitIndex]}`
|
||||||
|
}
|
||||||
|
|
||||||
|
export const getBlogRunTotalTime = (startDateStr: string):string => {
|
||||||
|
const startDate = dayjs(startDateStr)
|
||||||
|
const endDate = dayjs() // 当前时间
|
||||||
|
|
||||||
|
// 计算完整时间间隔(年、月、日)
|
||||||
|
const years = endDate.diff(startDate, 'year')
|
||||||
|
const months = endDate.diff(startDate.add(years, 'year'), 'month')
|
||||||
|
const days = endDate.diff(startDate.add(years, 'year').add(months, 'month'), 'day')
|
||||||
|
|
||||||
|
return `${years}年${months}月${days}日`
|
||||||
|
}
|
||||||
|
|
||||||
|
export const getBasicBlog = (blog: IBlog): IBasicBlog => {
|
||||||
|
return {
|
||||||
|
category: blog.category,
|
||||||
|
isGreat: blog.isGreat,
|
||||||
|
readDuration: blog.readDuration,
|
||||||
|
topValue: blog.topValue,
|
||||||
|
wordCount: blog.wordCount,
|
||||||
|
visitCount: blog.visitCount,
|
||||||
|
createTime: blog.createTime,
|
||||||
|
updateTime: blog.updateTime
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 扁平化数据转两层嵌套结构
|
||||||
|
export function flattenToTwoLevel(comments: IBlogComment[]): IBlogNestedComment[] {
|
||||||
|
// 创建评论映射表,快速查找评论
|
||||||
|
const commentMap = new Map<number, IBlogComment>()
|
||||||
|
comments.forEach((comment) => commentMap.set(comment.id, comment))
|
||||||
|
|
||||||
|
// 结果数组
|
||||||
|
const result: IBlogNestedComment[] = []
|
||||||
|
|
||||||
|
// 遍历所有评论,构建两层结构
|
||||||
|
comments.forEach((comment) => {
|
||||||
|
if (comment.parentId === 0) {
|
||||||
|
// 顶层评论
|
||||||
|
const replies = comments.filter((reply) => reply.parentId === comment.id)
|
||||||
|
result.push({ comment, replies })
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
return result
|
||||||
|
}
|
||||||
164
src/utils/blog/ribbon.ts
Normal file
164
src/utils/blog/ribbon.ts
Normal file
@@ -0,0 +1,164 @@
|
|||||||
|
const { random } = Math
|
||||||
|
|
||||||
|
const randomColor = [
|
||||||
|
['#95e1d3', '#eaffd0', '#fce38a', '#f38181'],
|
||||||
|
['#6a2c70', '#b83b5e', '#f08a5d', '#f9ed69'],
|
||||||
|
['#edb1f1', '#d59bf6', '#9896f1', '#8ef6e4'],
|
||||||
|
['#ff9de2', '#8c82fc', '#b693fe', '#7effdb'],
|
||||||
|
['#fff5a5', '#ffaa64', '#ff8264', '#ff6464']
|
||||||
|
]
|
||||||
|
|
||||||
|
export interface IRibbonOptions {
|
||||||
|
zIndex: number;
|
||||||
|
alpha: number;
|
||||||
|
size: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface IRibbonPoint {
|
||||||
|
x: number;
|
||||||
|
y: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
const getRandomInt = (value: number) => {
|
||||||
|
return Math.floor(Math.random() * value)
|
||||||
|
}
|
||||||
|
|
||||||
|
export class Ribbon {
|
||||||
|
/**
|
||||||
|
* 画布元素
|
||||||
|
*/
|
||||||
|
canvas: HTMLCanvasElement;
|
||||||
|
/**
|
||||||
|
* Canvas中的Context
|
||||||
|
*/
|
||||||
|
ctx: CanvasRenderingContext2D;
|
||||||
|
/**
|
||||||
|
* 轨迹路径
|
||||||
|
*/
|
||||||
|
path: IRibbonPoint[];
|
||||||
|
/**
|
||||||
|
* 区域宽度
|
||||||
|
*/
|
||||||
|
width: number;
|
||||||
|
/**
|
||||||
|
* 区域高度
|
||||||
|
*/
|
||||||
|
height: number;
|
||||||
|
/**
|
||||||
|
* 颜色色系
|
||||||
|
*/
|
||||||
|
colorIndex: number;
|
||||||
|
/**
|
||||||
|
* 配置项
|
||||||
|
*/
|
||||||
|
options: IRibbonOptions
|
||||||
|
|
||||||
|
constructor(options: IRibbonOptions = {
|
||||||
|
alpha: 0.6,
|
||||||
|
size: 300,
|
||||||
|
zIndex: 0
|
||||||
|
}) {
|
||||||
|
this.options = options
|
||||||
|
// 生成Canvas元素 并添加到Body中
|
||||||
|
this.canvas = document.createElement('canvas')
|
||||||
|
this.canvas.classList.add('ribbon-canvas')
|
||||||
|
this.canvas.style.cssText = `position:fixed;top:0;left:0;z-index:${this.options.zIndex}`
|
||||||
|
document.getElementsByTagName('body')[0].appendChild(this.canvas)
|
||||||
|
|
||||||
|
this.ctx = this.canvas.getContext('2d') as CanvasRenderingContext2D
|
||||||
|
this.width = window.innerWidth
|
||||||
|
this.height = window.innerHeight
|
||||||
|
|
||||||
|
// 返回实际宽高
|
||||||
|
const dpr = window.devicePixelRatio || 1
|
||||||
|
this.canvas.width = this.width * dpr
|
||||||
|
this.canvas.height = this.height * dpr
|
||||||
|
// 水平、竖直方向缩放
|
||||||
|
this.ctx.scale(dpr, dpr)
|
||||||
|
// 图形透明度
|
||||||
|
this.ctx.globalAlpha = this.options.alpha
|
||||||
|
this.path = []
|
||||||
|
this.colorIndex = 0
|
||||||
|
|
||||||
|
this.reDraw()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 重新绘制
|
||||||
|
*/
|
||||||
|
reDraw() {
|
||||||
|
// 清除之前绘制的图形
|
||||||
|
this.ctx.clearRect(0, 0, this.width, this.height)
|
||||||
|
// 生成新的点和路径
|
||||||
|
const point1: IRibbonPoint = {
|
||||||
|
x: 0,
|
||||||
|
y: this.height * 0.7 + this.options.size
|
||||||
|
}
|
||||||
|
const point2: IRibbonPoint = {
|
||||||
|
x: 0,
|
||||||
|
y: this.height * 0.7 - this.options.size
|
||||||
|
}
|
||||||
|
this.path = [point1, point2]
|
||||||
|
// 随机选择色系
|
||||||
|
this.colorIndex = getRandomInt(randomColor.length)
|
||||||
|
// 路径没有填满屏幕宽度时,绘制路径
|
||||||
|
while (this.path[1].x < this.width + this.options.size) {
|
||||||
|
this.draw(this.path[0], this.path[1])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 绘制线
|
||||||
|
* @param start 起点
|
||||||
|
* @param end 终点
|
||||||
|
*/
|
||||||
|
draw(start: IRibbonPoint, end: IRibbonPoint) {
|
||||||
|
// 绘制当前点
|
||||||
|
this.ctx.beginPath()
|
||||||
|
this.ctx.moveTo(start.x, start.y)
|
||||||
|
this.ctx.lineTo(end.x, end.y)
|
||||||
|
const nextX = this.geneX(end.x)
|
||||||
|
const nextY = this.geneY(end.y)
|
||||||
|
this.ctx.lineTo(nextX, nextY)
|
||||||
|
this.ctx.closePath()
|
||||||
|
|
||||||
|
// 随机生成颜色
|
||||||
|
const color = randomColor[this.colorIndex]
|
||||||
|
this.ctx.fillStyle = `${color[getRandomInt(color.length)]}`
|
||||||
|
// 根据当前样式填充路径
|
||||||
|
this.ctx.fill()
|
||||||
|
|
||||||
|
// 继续绘制下一个点
|
||||||
|
// 起点更新为当前终点
|
||||||
|
this.path[0] = this.path[1]
|
||||||
|
// 更新终点
|
||||||
|
this.path[1] = { x: nextX, y: nextY }
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生成下一个x坐标
|
||||||
|
* @param x 当前x坐标
|
||||||
|
*/
|
||||||
|
geneX(x: number) {
|
||||||
|
// 当前坐标向上平移
|
||||||
|
return x + this.options.size
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生成下一个y坐标
|
||||||
|
* @param y 当前y坐标
|
||||||
|
*/
|
||||||
|
geneY(y: number) {
|
||||||
|
// 当前坐标向右平移
|
||||||
|
const temp = y + (random() * 2 - 1.1) * this.options.size
|
||||||
|
return (temp > this.height || temp < 0) ? this.height : temp
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 清除画布
|
||||||
|
*/
|
||||||
|
clear() {
|
||||||
|
this.canvas.remove()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
345
src/utils/blog/timeCanvas.ts
Normal file
345
src/utils/blog/timeCanvas.ts
Normal file
@@ -0,0 +1,345 @@
|
|||||||
|
const timeColors = ['#33B5E5', '#0099CC', '#AA66CC', '#9933CC', '#99CC00', '#669900', '#FFBB33', '#FF8800', '#FF4444', '#CC0000']
|
||||||
|
const timeDigits = [
|
||||||
|
[
|
||||||
|
[0, 0, 1, 1, 1, 0, 0],
|
||||||
|
[0, 1, 1, 0, 1, 1, 0],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[0, 1, 1, 0, 1, 1, 0],
|
||||||
|
[0, 0, 1, 1, 1, 0, 0]
|
||||||
|
], // 0
|
||||||
|
[
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 1, 1, 1, 1, 0, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[1, 1, 1, 1, 1, 1, 1]
|
||||||
|
], // 1
|
||||||
|
[
|
||||||
|
[0, 1, 1, 1, 1, 1, 0],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 0, 1, 1, 0, 0, 0],
|
||||||
|
[0, 1, 1, 0, 0, 0, 0],
|
||||||
|
[1, 1, 0, 0, 0, 0, 0],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 1, 1, 1, 1, 1]
|
||||||
|
], // 2
|
||||||
|
[
|
||||||
|
[1, 1, 1, 1, 1, 1, 1],
|
||||||
|
[0, 0, 0, 0, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 0, 1, 1, 1, 0, 0],
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 0, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[0, 1, 1, 1, 1, 1, 0]
|
||||||
|
], // 3
|
||||||
|
[
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 1, 1, 1, 0],
|
||||||
|
[0, 0, 1, 1, 1, 1, 0],
|
||||||
|
[0, 1, 1, 0, 1, 1, 0],
|
||||||
|
[1, 1, 0, 0, 1, 1, 0],
|
||||||
|
[1, 1, 1, 1, 1, 1, 1],
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 1, 1, 1, 1]
|
||||||
|
], // 4
|
||||||
|
[
|
||||||
|
[1, 1, 1, 1, 1, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 0, 0],
|
||||||
|
[1, 1, 0, 0, 0, 0, 0],
|
||||||
|
[1, 1, 1, 1, 1, 1, 0],
|
||||||
|
[0, 0, 0, 0, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[0, 1, 1, 1, 1, 1, 0]
|
||||||
|
], // 5
|
||||||
|
[
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 1, 1, 0, 0, 0],
|
||||||
|
[0, 1, 1, 0, 0, 0, 0],
|
||||||
|
[1, 1, 0, 0, 0, 0, 0],
|
||||||
|
[1, 1, 0, 1, 1, 1, 0],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[0, 1, 1, 1, 1, 1, 0]
|
||||||
|
], // 6
|
||||||
|
[
|
||||||
|
[1, 1, 1, 1, 1, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 0, 1, 1, 0, 0, 0],
|
||||||
|
[0, 0, 1, 1, 0, 0, 0],
|
||||||
|
[0, 0, 1, 1, 0, 0, 0],
|
||||||
|
[0, 0, 1, 1, 0, 0, 0]
|
||||||
|
], // 7
|
||||||
|
[
|
||||||
|
[0, 1, 1, 1, 1, 1, 0],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[0, 1, 1, 1, 1, 1, 0],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[0, 1, 1, 1, 1, 1, 0]
|
||||||
|
], // 8
|
||||||
|
[
|
||||||
|
[0, 1, 1, 1, 1, 1, 0],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[1, 1, 0, 0, 0, 1, 1],
|
||||||
|
[0, 1, 1, 1, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 0, 1, 1],
|
||||||
|
[0, 0, 0, 0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 1, 1, 0, 0],
|
||||||
|
[0, 1, 1, 0, 0, 0, 0]
|
||||||
|
], // 9
|
||||||
|
[
|
||||||
|
[0, 0, 0, 0],
|
||||||
|
[0, 0, 0, 0],
|
||||||
|
[0, 1, 1, 0],
|
||||||
|
[0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 0],
|
||||||
|
[0, 0, 0, 0],
|
||||||
|
[0, 1, 1, 0],
|
||||||
|
[0, 1, 1, 0],
|
||||||
|
[0, 0, 0, 0],
|
||||||
|
[0, 0, 0, 0]
|
||||||
|
]// :
|
||||||
|
]
|
||||||
|
|
||||||
|
interface ITimeCanvasNum {
|
||||||
|
num: number;
|
||||||
|
offsetX: number;
|
||||||
|
offsetY: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ITimeCanvasBall {
|
||||||
|
offsetX: number;
|
||||||
|
offsetY: number;
|
||||||
|
color: string;
|
||||||
|
g: number;
|
||||||
|
vx: number;
|
||||||
|
vy: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class TimeCanvas {
|
||||||
|
context: CanvasRenderingContext2D
|
||||||
|
width: number
|
||||||
|
height: number
|
||||||
|
options: {
|
||||||
|
RADIUS: number; // 球半径
|
||||||
|
NUMBER_GAP: number; // 数字之间的间隙
|
||||||
|
u: number; // 碰撞能量损耗系数
|
||||||
|
timeColor: string; // 时间颜色
|
||||||
|
colors: string[]; // 彩色小球的颜色
|
||||||
|
digit: any[]; // 数字显示
|
||||||
|
offsetX: number; // 初始x偏移
|
||||||
|
offsetY: number; // 初始y偏移
|
||||||
|
}
|
||||||
|
currentNums: ITimeCanvasNum[] = [] // 屏幕显示的8个字符
|
||||||
|
balls: ITimeCanvasBall[] = [] // 存储彩色的小球
|
||||||
|
|
||||||
|
constructor(context: CanvasRenderingContext2D, width: number, height: number) {
|
||||||
|
this.context = context
|
||||||
|
this.width = width
|
||||||
|
this.height = height
|
||||||
|
this.options = {
|
||||||
|
RADIUS: 1.2, // 球半径
|
||||||
|
NUMBER_GAP: 10, // 数字之间的间隙
|
||||||
|
u: 0.4, // 碰撞能量损耗系数
|
||||||
|
timeColor: '#1677FF',
|
||||||
|
colors: timeColors, // 彩色小球的颜色
|
||||||
|
digit: timeDigits, // 数字显示
|
||||||
|
offsetX: 0,
|
||||||
|
offsetY: 10
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 绘制时间
|
||||||
|
*/
|
||||||
|
drawDatetime(): void {
|
||||||
|
// 计算需要显示的时间数字信息
|
||||||
|
const timeNums = [] as ITimeCanvasNum[]
|
||||||
|
|
||||||
|
const date = new Date()
|
||||||
|
const hours = date.getHours()
|
||||||
|
const hour1 = Math.floor(hours / 10)
|
||||||
|
const hour2 = hours % 10
|
||||||
|
timeNums.push({ num: hour1, offsetX: 0, offsetY: 0 })
|
||||||
|
timeNums.push({ num: hour2, offsetX: 0, offsetY: 0 })
|
||||||
|
// 添加冒号 下同
|
||||||
|
timeNums.push({ num: 10, offsetX: 0, offsetY: 0 })
|
||||||
|
|
||||||
|
const minutes = date.getMinutes()
|
||||||
|
const minute1 = Math.floor(minutes / 10)
|
||||||
|
const minute2 = minutes % 10
|
||||||
|
timeNums.push({ num: minute1, offsetX: 0, offsetY: 0 })
|
||||||
|
timeNums.push({ num: minute2, offsetX: 0, offsetY: 0 })
|
||||||
|
timeNums.push({ num: 10, offsetX: 0, offsetY: 0 })
|
||||||
|
|
||||||
|
const seconds = date.getSeconds()
|
||||||
|
const second1 = Math.floor(seconds / 10)
|
||||||
|
const second2 = seconds % 10
|
||||||
|
timeNums.push({ num: second1, offsetX: 0, offsetY: 0 })
|
||||||
|
timeNums.push({ num: second2, offsetX: 0, offsetY: 0 })
|
||||||
|
|
||||||
|
// canvas绘制时的初始x偏移
|
||||||
|
let { offsetX } = this.options
|
||||||
|
// canvas绘制时的初始y偏移
|
||||||
|
const { offsetY } = this.options
|
||||||
|
for (let x = 0; x < timeNums.length; x++) {
|
||||||
|
timeNums[x].offsetX = offsetX
|
||||||
|
timeNums[x].offsetY = offsetY
|
||||||
|
offsetX = this.drawSingleNumber(timeNums[x])
|
||||||
|
// 两个数字连一块,应该间隔一些距离
|
||||||
|
if (x < timeNums.length - 1) {
|
||||||
|
offsetX += this.options.NUMBER_GAP
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 第一次绘制
|
||||||
|
if (this.currentNums.length === 0) {
|
||||||
|
this.currentNums = timeNums
|
||||||
|
} else {
|
||||||
|
// 后续绘制时 替换不同的部分 并添加爆炸小球
|
||||||
|
for (let index = 0; index < this.currentNums.length; index++) {
|
||||||
|
if (this.currentNums[index].num !== timeNums[index].num) {
|
||||||
|
// 不一样时,添加彩色小球
|
||||||
|
// this.addBalls(timeNums[index])
|
||||||
|
this.currentNums[index].num = timeNums[index].num
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 渲染小球
|
||||||
|
// this.renderBalls()
|
||||||
|
// 更新小球
|
||||||
|
// this.updateBalls()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 添加小球
|
||||||
|
* @param item 小球数字
|
||||||
|
*/
|
||||||
|
addBalls(item: ITimeCanvasNum) {
|
||||||
|
const { num, offsetX } = item
|
||||||
|
const numMatrix = this.options.digit[num]
|
||||||
|
|
||||||
|
for (let y = 0; y < numMatrix.length; y++) {
|
||||||
|
for (let x = 0; x < numMatrix[y].length; x++) {
|
||||||
|
if (numMatrix[y][x] === 1) {
|
||||||
|
const ball: ITimeCanvasBall = {
|
||||||
|
offsetX: offsetX + this.options.RADIUS + this.options.RADIUS * 2 * x,
|
||||||
|
offsetY: this.options.offsetY + this.options.RADIUS + this.options.RADIUS * 2 * y,
|
||||||
|
color: this.options.colors[Math.floor(Math.random() * this.options.colors.length)],
|
||||||
|
g: 1.5 + Math.random(),
|
||||||
|
vx: Math.pow(-1, Math.ceil(Math.random() * 10)) * 4 + Math.random(),
|
||||||
|
vy: -5
|
||||||
|
}
|
||||||
|
this.balls.push(ball)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 渲染小球
|
||||||
|
*/
|
||||||
|
renderBalls() {
|
||||||
|
for (let index = 0; index < this.balls.length; index++) {
|
||||||
|
const ball = this.balls[index]
|
||||||
|
this.context.beginPath()
|
||||||
|
this.context.fillStyle = this.balls[index].color
|
||||||
|
this.context.arc(ball.offsetX, ball.offsetY, this.options.RADIUS, 0, 2 * Math.PI)
|
||||||
|
this.context.fill()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新小球
|
||||||
|
*/
|
||||||
|
updateBalls() {
|
||||||
|
let i = 0
|
||||||
|
const radius = this.options.RADIUS
|
||||||
|
for (let index = 0; index < this.balls.length; index++) {
|
||||||
|
const ball = this.balls[index]
|
||||||
|
ball.offsetX += ball.vx
|
||||||
|
ball.offsetY += ball.vy
|
||||||
|
ball.vy += ball.g
|
||||||
|
|
||||||
|
if (ball.offsetY > (this.height - radius)) {
|
||||||
|
ball.offsetY = this.height - radius
|
||||||
|
ball.vy = -ball.vy * this.options.u
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ball.offsetX > radius && ball.offsetX < (this.width - radius)) {
|
||||||
|
this.balls[i] = this.balls[index]
|
||||||
|
i++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 去除出边界的球
|
||||||
|
for (;i < this.balls.length; i++) {
|
||||||
|
this.balls.pop()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 防止切换至其他窗口 仍然在生成粒子
|
||||||
|
if (this.balls.length > 100) {
|
||||||
|
this.balls = []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取单个数字
|
||||||
|
* @param timeNums 数字
|
||||||
|
*/
|
||||||
|
drawSingleNumber(timeNums: ITimeCanvasNum): number {
|
||||||
|
const numMatrix = this.options.digit[timeNums.num]
|
||||||
|
const radius = this.options.RADIUS
|
||||||
|
|
||||||
|
for (let y = 0; y < numMatrix.length; y++) {
|
||||||
|
for (let x = 0; x < numMatrix[y].length; x++) {
|
||||||
|
if (numMatrix[y][x] === 1) {
|
||||||
|
this.context.beginPath()
|
||||||
|
const arcX = timeNums.offsetX + radius + radius * 2 * x
|
||||||
|
const arcY = timeNums.offsetY + radius + radius * 2 * y
|
||||||
|
this.context.arc(arcX, arcY, radius, 0, 2 * Math.PI)
|
||||||
|
this.context.fill()
|
||||||
|
this.context.fillStyle = this.options.timeColor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.context.beginPath()
|
||||||
|
timeNums.offsetX += numMatrix[0].length * radius * 2
|
||||||
|
|
||||||
|
return timeNums.offsetX as number
|
||||||
|
}
|
||||||
|
}
|
||||||
41
src/utils/index.ts
Normal file
41
src/utils/index.ts
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
/**
|
||||||
|
* 设置激活样式
|
||||||
|
* @param parentClassName 父组件类名
|
||||||
|
* @param elementTag 元素类型
|
||||||
|
* @param currentElement 当前元素
|
||||||
|
* @param activeClassName 激活的样式名称
|
||||||
|
*/
|
||||||
|
export const setActiveClass = (parentClassName: string, elementTag: string,
|
||||||
|
currentElement: Element, activeClassName: string) => {
|
||||||
|
const container = document.getElementsByClassName(parentClassName)[0]
|
||||||
|
const elementList = container.getElementsByTagName(elementTag)
|
||||||
|
// 去除class样式
|
||||||
|
for (let i = 0; i < elementList.length; i++) {
|
||||||
|
elementList[i].removeAttribute('class')
|
||||||
|
}
|
||||||
|
|
||||||
|
// 增加当前激活的菜单样式
|
||||||
|
currentElement.setAttribute('class', activeClassName)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文件服务器地址
|
||||||
|
*/
|
||||||
|
export const fileServiceUrl = '/home-service/file'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 服务器文件路径根地址
|
||||||
|
*/
|
||||||
|
export const serviceFileRootPath = '/home-service/'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取assets静态资源
|
||||||
|
* @param url 路径
|
||||||
|
*/
|
||||||
|
export const getAssetsImageFile = (url: string) => {
|
||||||
|
return new URL(`/src/assets/${url}`, import.meta.url).href
|
||||||
|
}
|
||||||
|
|
||||||
|
export const isLargeScreen = (innerWidth = 1200): boolean => {
|
||||||
|
return window.innerWidth > innerWidth
|
||||||
|
}
|
||||||
7
src/views/blog/archive.vue
Normal file
7
src/views/blog/archive.vue
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<blog-archive />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogArchive from '@/components/Archive/BlogArchive.vue'
|
||||||
|
</script>
|
||||||
7
src/views/blog/category.vue
Normal file
7
src/views/blog/category.vue
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<blog-category />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogCategory from '@/components/Category/BlogCategory.vue'
|
||||||
|
</script>
|
||||||
7
src/views/blog/category[name].vue
Normal file
7
src/views/blog/category[name].vue
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<blog-category-detail />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogCategoryDetail from '@/components/Category/BlogCategoryDetail.vue'
|
||||||
|
</script>
|
||||||
7
src/views/blog/detail[id].vue
Normal file
7
src/views/blog/detail[id].vue
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<blog-detail/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogDetail from '@/components/Content/BlogDetail.vue'
|
||||||
|
</script>
|
||||||
8
src/views/blog/meta.ts
Normal file
8
src/views/blog/meta.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
import { IRouteMetaConfig } from 'vue3-common/types'
|
||||||
|
|
||||||
|
export const blogMeta: IRouteMetaConfig = {
|
||||||
|
'/blog': {
|
||||||
|
path: '/blog',
|
||||||
|
redirect: '/blog/overview'
|
||||||
|
}
|
||||||
|
}
|
||||||
7
src/views/blog/overview.vue
Normal file
7
src/views/blog/overview.vue
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<blog-overview />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import BlogOverview from '@/components/Content/BlogOverview.vue'
|
||||||
|
</script>
|
||||||
155
src/views/login/index.vue
Normal file
155
src/views/login/index.vue
Normal file
@@ -0,0 +1,155 @@
|
|||||||
|
<template>
|
||||||
|
<div class="login-view">
|
||||||
|
<div class="login-container">
|
||||||
|
<div class="login-title">
|
||||||
|
<span class="title">
|
||||||
|
{{ loginInfo.title }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<common-login v-if="authStore.loginType === 'common'"
|
||||||
|
class="animate__animated animate__bounceIn"/>
|
||||||
|
<phone-login v-if="authStore.loginType === 'phone'"
|
||||||
|
class="animate__animated animate__bounceIn"/>
|
||||||
|
<email-login v-if="authStore.loginType === 'email'"
|
||||||
|
class="animate__animated animate__bounceIn"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import CommonLogin from '@/components/Home/Login/CommonLogin.vue'
|
||||||
|
import PhoneLogin from '@/components/Home/Login/PhoneLogin.vue'
|
||||||
|
import EmailLogin from '@/components/Home/Login/EmailLogin.vue'
|
||||||
|
import { useAuthStore } from '@/store/auth'
|
||||||
|
import { onMounted, onUnmounted, reactive } from 'vue'
|
||||||
|
|
||||||
|
const authStore = useAuthStore()
|
||||||
|
|
||||||
|
const loginInfo = reactive({
|
||||||
|
title: 'Sweet Hut'
|
||||||
|
})
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
authStore.isVerified = false
|
||||||
|
// authStore.resetLoginForm()
|
||||||
|
})
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
authStore.stopCountdown()
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
$form-item-width: 300px;
|
||||||
|
$login-height: 500px;
|
||||||
|
|
||||||
|
.login-view {
|
||||||
|
height: 100%;
|
||||||
|
display: grid;
|
||||||
|
place-items: center;
|
||||||
|
|
||||||
|
.login-container {
|
||||||
|
// height: $login-height;
|
||||||
|
padding: 30px;
|
||||||
|
border-radius: 15px;
|
||||||
|
box-shadow: 2px 2px 5px #D3D3D3, 4px 4px 10px #A9A9A9;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
// justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
.login-title {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
.title {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.common-login {
|
||||||
|
flex-grow: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
.login-form {
|
||||||
|
.el-form-item {
|
||||||
|
width: $form-item-width;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-option {
|
||||||
|
.el-form-item__content {
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-type {
|
||||||
|
width: 100%;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-others-type {
|
||||||
|
margin-top: 5vh;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.el-divider {
|
||||||
|
.el-divider__text {
|
||||||
|
color: #A9A9A9;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.type-list {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
|
||||||
|
i {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
i:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
filter: brightness(1.5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-register {
|
||||||
|
margin-top: 10px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
span {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.phone-login, .email-login {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1vh;
|
||||||
|
|
||||||
|
.login-form {
|
||||||
|
.el-form-item {
|
||||||
|
width: $form-item-width;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-item {
|
||||||
|
.el-form-item__content {
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
1
src/vite-env.d.ts
vendored
Normal file
1
src/vite-env.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/// <reference types="vite/client" />
|
||||||
23
tsconfig.app.json
Normal file
23
tsconfig.app.json
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||||||
|
|
||||||
|
/* Linting */
|
||||||
|
"strict": true,
|
||||||
|
"noUnusedLocals": true,
|
||||||
|
"noUnusedParameters": true,
|
||||||
|
"erasableSyntaxOnly": true,
|
||||||
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
"noUncheckedSideEffectImports": true,
|
||||||
|
|
||||||
|
// 设置 @ 路径
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"@/*": [
|
||||||
|
"src/*"
|
||||||
|
],
|
||||||
|
"vue3-common/*": ["node_modules/vue3-common/dist/*"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
||||||
|
}
|
||||||
7
tsconfig.json
Normal file
7
tsconfig.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"files": [],
|
||||||
|
"references": [
|
||||||
|
{ "path": "./tsconfig.app.json" },
|
||||||
|
{ "path": "./tsconfig.node.json" }
|
||||||
|
]
|
||||||
|
}
|
||||||
25
tsconfig.node.json
Normal file
25
tsconfig.node.json
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
||||||
|
"target": "ES2023",
|
||||||
|
"lib": ["ES2023"],
|
||||||
|
"module": "ESNext",
|
||||||
|
"skipLibCheck": true,
|
||||||
|
|
||||||
|
/* Bundler mode */
|
||||||
|
"moduleResolution": "bundler",
|
||||||
|
"allowImportingTsExtensions": true,
|
||||||
|
"verbatimModuleSyntax": true,
|
||||||
|
"moduleDetection": "force",
|
||||||
|
"noEmit": true,
|
||||||
|
|
||||||
|
/* Linting */
|
||||||
|
"strict": true,
|
||||||
|
"noUnusedLocals": true,
|
||||||
|
"noUnusedParameters": true,
|
||||||
|
"erasableSyntaxOnly": true,
|
||||||
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
"noUncheckedSideEffectImports": true
|
||||||
|
},
|
||||||
|
"include": ["vite.config.ts"]
|
||||||
|
}
|
||||||
51
vite.config.ts
Normal file
51
vite.config.ts
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
import { defineConfig } from 'vite'
|
||||||
|
import vue from '@vitejs/plugin-vue'
|
||||||
|
|
||||||
|
import path from 'path'
|
||||||
|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
|
||||||
|
import { viteMockServe } from 'vite-plugin-mock'
|
||||||
|
|
||||||
|
// const API_HOST = '14.103.235.151'
|
||||||
|
const API_HOST = '127.0.0.1'
|
||||||
|
|
||||||
|
// https://vitejs.dev/config/
|
||||||
|
export default defineConfig({
|
||||||
|
plugins: [
|
||||||
|
vue(),
|
||||||
|
createSvgIconsPlugin({
|
||||||
|
// 指定需要缓存的图标文件夹
|
||||||
|
iconDirs: [path.resolve(process.cwd(), 'src/icons/svg')],
|
||||||
|
// 指定symbolId格式
|
||||||
|
symbolId: 'icon-[dir]-[name]'
|
||||||
|
}),
|
||||||
|
viteMockServe({
|
||||||
|
mockPath: 'src/mock',
|
||||||
|
enable: false
|
||||||
|
})
|
||||||
|
],
|
||||||
|
css: {
|
||||||
|
preprocessorOptions: {
|
||||||
|
scss: {
|
||||||
|
additionalData: '@use "./src/styles/element/index.module.scss" as *;'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
base: '/blog',
|
||||||
|
resolve: {
|
||||||
|
// 配置路径别名
|
||||||
|
alias: {
|
||||||
|
'@': path.resolve(__dirname, './src')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
server: {
|
||||||
|
port: 5174,
|
||||||
|
// 服务器代理 服务器没有部署Nginx的情况下使用
|
||||||
|
proxy: {
|
||||||
|
'/blog-service': {
|
||||||
|
target: `http://${API_HOST}:8082`,
|
||||||
|
changeOrigin: true,
|
||||||
|
rewrite: (item) => item.replace(/^\/blog-service/, '')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user