配置 UI 组件
基于 Git 的页面历史插件当前提供有关国际化和贡献者相关的配置选项。
在 VitePress 项目中配置
有两种方式可以配置内容:
在安装 Vue 插件的时候进行配置
如果你未曾见过这种红色绿色的标记
这是一种用于在用户界面(UI)上展示差异对比的标记规则。
红色的部分是你需要删除的,通常也以「减号 -」来表示,或者你可以理解为:这行文本原本的模样;
绿色的部分是你需要添加的,通常也以「加号 +」来表示,或者你可以理解为:这行文本将会被修改为的模样。
如果你想要了解更多有关「差异对比」的知识,你可以查看这篇有关 diffutils 历史的英文回答和 Git 的文档
import type { as ThemeConfig } from 'vitepress'
import from 'vitepress/theme'
import { } from '@nolebase/vitepress-plugin-git-changelog/client'
export const : ThemeConfig = {
: ,
: () => {
// Rest of the code...
},
({ }) {
// Rest of the code...
.(, {
// 把选项填写在这里吧...
})
// Rest of the code...
},
}
单独使用 Vue 的依赖注入的能力进行配置
由于 VitePress 对于默认主题没有提供更多关于主题配置的拓展的功能,从某种程度上来说,如果我们直接修改 VitePress 的配置文件为插件提供配置的话对类型检查和配置的维护并不友好,所以这里我们使用 Vue 的依赖注入来提供配置:
如果你未曾见过这种红色绿色的标记
这是一种用于在用户界面(UI)上展示差异对比的标记规则。
红色的部分是你需要删除的,通常也以「减号 -」来表示,或者你可以理解为:这行文本原本的模样;
绿色的部分是你需要添加的,通常也以「加号 +」来表示,或者你可以理解为:这行文本将会被修改为的模样。
如果你想要了解更多有关「差异对比」的知识,你可以查看这篇有关 diffutils 历史的英文回答和 Git 的文档
import type { as ThemeConfig } from 'vitepress'
import from 'vitepress/theme'
import { } from '@nolebase/vitepress-plugin-git-changelog/client'
export const : ThemeConfig = {
: ,
: () => {
// 剩下的代码...
},
({ }) {
// 剩下的代码...
.(, {
// 配置...
})
// 剩下的代码...
},
}
选项 mapContributors
- 为贡献者添加数据映射
配置选项中的 mapContributors
字段用于映射贡献者信息,可以用来将获取到的 Git 的日志信息中的包括名称和邮箱的贡献者信息映射为另一个贡献者。
如果我们假设有如下的 Git 日志:
commit 1
Author: John Doe <john.doe@example.com>
Date: Fri Oct 1 12:00:00 2021 +0800
Add a new feature
commit 2
Author: John Doe <john.doe@anothersite.com>
Fix a bug
现在我们有两个来自同一个人的提交,只有电子邮件地址不同。在不进行任何配置的默认情况下,插件会将它们视为两个不同的贡献者。 这种情况通常是因为你或者其他贡献者更改了自己的电子邮件地址。
要解决这个问题,我们可以使用 mapAuthors
选项:
import type { as ThemeConfig } from 'vitepress'
import from 'vitepress/theme'
import { } from '@nolebase/vitepress-plugin-git-changelog/client'
export const : ThemeConfig = {
: ,
: () => {
// Rest of the code...
},
({ }) {
// Rest of the code...
.(, {
: [
{
: 'John Doe',
: 'john_doe',
: ['john.doe@anothersite.com']
}
]
})
// Rest of the code...
},
}
配置选项
完整的可以配置的选项
/**
* Options
*/
export interface Options {
/**
* Internationalization configuration
*
* When configuring, please configure according to the language code configured in
* VitePress internationalization configuration. In the following configuration, 'en'
* and 'zh-CN' are the language codes configured in VitePress internationalization
* configuration.
*
* @default undefined
* @example
* ```ts
* {
* locales: {
* 'en': {
* changelog: {
* title: 'Changelog',
* noData: 'No recent changes',
* lastEdited: 'This page was last edited {{daysAgo}}',
* lastEditedDateFnsLocaleName: 'enUS',
* viewFullHistory: 'View full history',
* committedOn: ' on {{date}}',
* }
* },
* 'zh-CN': {
* changelog: {
* title: '页面历史'
* noData: '暂无最近变更历史',
* lastEdited: '本页面最后编辑于 {{daysAgo}}',
* lastEditedDateFnsLocaleName: 'zhCN',
* viewFullHistory: '查看完整历史',
* committedOn: '于 {{date}} 提交',
* }
* },
* }
* }
* ```
*/
?: <string, Locale>
?: <{
/**
* The overriding display name of the contributor
*/
?: string
/**
* The overriding GitHub, GitLab, Gitea username of the contributor
*/
?: string
/**
* The overriding avatar of the contributor
*/
?: string
/**
* Whether to add a link to the contributor's profile
*/
?: string | SocialEntry[]
/**
* More names to be recognized as the same contributor.
*
* Useful when you changed your name or email address in the past.
*/
?: string[]
/**
* More emails to be recognized as the same contributor.
*
* Useful when you changed your email address in the past.
*/
?: string[]
}>
}
国际化
注意
基于 Git 的页面历史插件并没有使用 vue-i18n 来作为国际化的工具库,因为绝大多数 VitePress 可能是直接使用的 VitePress 自带的国际化功能 来进行国际化的,所以基于 Git 的页面历史插件的本地化文案并不能通过 vue-i18n
来覆盖文案,但是你可以通过 配置 中的 locales
字段来覆盖本地化的文案。
基于 Git 的页面历史插件默认提供了国际化的支持,默认支持了英文和简体中文。
你可以通过配置来对插件的本地化文案进行复写,在开始配置之前,你需要了解 VitePress 是如何进行国际化的:VitePress 的国际化。基于 Git 的页面历史插件默认会读取 VitePress 的语言字段,所以你在配置的时候需要注意将国际化的语言代码与 VitePress 的语言代码保持一致。
如何在 VitePress 中进行配置
在 配置 章节中,我们已经了解到了如何在 VitePress 中为基于 Git 的页面历史插件提供配置选项,我们在配置选项中添加 locales
字段就可以配置国际化了:
如果你未曾见过这种红色绿色的标记
这是一种用于在用户界面(UI)上展示差异对比的标记规则。
红色的部分是你需要删除的,通常也以「减号 -」来表示,或者你可以理解为:这行文本原本的模样;
绿色的部分是你需要添加的,通常也以「加号 +」来表示,或者你可以理解为:这行文本将会被修改为的模样。
如果你想要了解更多有关「差异对比」的知识,你可以查看这篇有关 diffutils 历史的英文回答和 Git 的文档
import type { as ThemeConfig } from 'vitepress'
import from 'vitepress/theme'
import { } from '@nolebase/vitepress-plugin-inline-link-preview/client'
// 其他部分的代码...
export const : ThemeConfig = {
: ,
: () => {
// 其他部分的代码...
},
({ }) {
// 其他部分的代码...
.(, {
: { // 配置国际化
'zh-CN': { // configure for Simplified Chinese
: {
: '加载中...',
: '加载中',
}
},
'en': { // configure for English
: {
: 'Loading...',
: 'Loading',
}
}
}
})
// 其他部分的代码...
},
}
国际化字段选项
完整的国际化字段选项
/**
* Locale
*/
interface Locale {
/**
* The changelog section configuration
*/
?: {
/**
* The title of the changelog section
*/
?: string
/**
* What to display when there are no logs
*/
?: string
/**
* What to display when the page was last edited
*/
?: string
/**
* The name of the locale to use for date-fns
*/
?: string
/**
* What to display when the user wants to view the full history
*/
?: string
/**
* What to display when the commit was committed
*/
?: string
}
/**
* The contributors section configuration
*/
?: {
/**
* The title of the contributors section
*/
?: string
/**
* What to display when there are no contributors
*/
?: string
}
}
无障碍
基于 Git 的页面历史插件默认提供了无障碍的支持,你可以通过 配置 来对无障碍的文案进行复写,使用方法和 国际化 一样,有关无障碍有哪些文案可以配置,请参阅 国际化字段选项。
更多自定义能力?
可以的,没问题。
开始之前
默认情况下,GitChangelog
Vite 插件会自动为您配置 optimizeDeps
和 ssr
选项。但是,如果您想要亲自导入 UI 小组件而不需要数据获取插件的话,则必须像这样手动配置 optimizeDeps
和 ssr
选项:
import { } from 'vite'
export default (() => {
return {
: {
: [
// @rive-app/canvas is a CJS/UMD module, so it needs to be included here
// for Vite to properly bundle it.
'@nolebase/vitepress-plugin-git-changelog > @nolebase/ui > @rive-app/canvas',
],
: [
'@nolebase/vitepress-plugin-git-changelog/client',
],
},
: {
: [
'@nolebase/vitepress-plugin-git-changelog',
// @nolebase/ui required here as noExternal to avoid the following error:
// TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".vue" for ...
// Read more here: https://github.com/vuejs/vitepress/issues/2915
// And here: https://stackblitz.com/edit/vite-gjz9zf?file=docs%2F.vitepress%2Fconfig.ts
'@nolebase/ui',
],
},
// other vite configurations...
}
})
注意
自由配置是为那些了解并清楚自己在做什么的用户准备的,如果你不清楚自己在做什么,或者在配置期间遭遇到了问题,那么请使用开箱即用的 VitePress 配置。
基于 Git 的页面历史插件会导出内部使用的组件,所以如果你不喜欢默认组件的样式和封装,你可以创建自己的组件来代替它们。
作为 Vue 插件使用
import {
} from '@nolebase/vitepress-plugin-git-changelog/client'
如果您正在使用 VitePress,并希望将其安装到 Vue 实例中,可以这样做:
import type { as ThemeConfig } from 'vitepress'
import from 'vitepress/theme'
import { } from '@nolebase/vitepress-plugin-git-changelog/client'
// Rest of the code...
export const : ThemeConfig = {
: ,
: () => {
// Rest of the code...
},
({ }) {
.()
},
}
按需导入页面历史组件
import {
,
} from '@nolebase/vitepress-plugin-git-changelog/client'
按需导入贡献者组件组件
import {
,
} from '@nolebase/vitepress-plugin-git-changelog/client'