Configure Vite plugins
Besides the UI widget components, Git-based page histories offer another two Vite plugins for data fetching and rendering. These plugins are GitChangelog
and GitChangelogMarkdownSection
.
Configure Vite plugins
A TypeScript User?
You need to configure at least the following options:
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
},
"include": [
"**/.vitepress/**/*.ts",
"**/.vitepress/**/*.mts",
"**/.vitepress/**/*.vue"
],
"exclude": [
"node_modules"
]
}
And the options
module
option specifies the JavaScript/TypeScript module format, and Nolebase Integrations uses theESNext
-compatible module format by default.moduleResolution
option specifies the module resolution policy, since all Nolebase Integrations plugins follow the latest ECMAScript specifications and export declarations, if you encounter aCannot find module ... or its corresponding type declarations
error you may need to setmoduleResolution
toBundler
.
If you want more configurations, you can refer to the following example:
{
"compilerOptions": {
"jsx": "preserve",
"lib": [
"DOM",
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": true,
"removeComments": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
},
"include": [
"**/.vitepress/**/*.ts",
"**/.vitepress/**/*.mts",
"**/.vitepress/**/*.vue"
],
"exclude": [
"node_modules"
]
}
GitChangelog
plugin
Remember this part back at the time where we first introduced the GitChangelog
plugin?
import { join } from 'node:path'
import { defineConfig } from 'vite'
import {
GitChangelog,
GitChangelogMarkdownSection,
} from '@nolebase/vitepress-plugin-git-changelog/vite'
export default defineConfig(() => {
return {
plugins: [
GitChangelog({
// Fill in your repository URL here
repoURL: () => 'https://github.com/nolebase/integrations',
}),
GitChangelogMarkdownSection(),
]
// other vite configurations...
}
})
In the GitChangelog
plugin, you can configure the repoURL
option to point to your repository URL. This is the only required option for the plugin to work properly.
But the options don't stop there. We have more options to configure the plugin to fit your needs.
Full list of options
interface Options {
/**
* When fetching git logs, what directories should be included?
*/
includeDirs?: string[]
/**
* Your repository URL.
* Yes, you can dynamically generate it.
*
* @default 'https://github.com/example/example'
*/
repoURL?: string | ((commit: Commit) => string)
/**
* A function to get the release tag URL.
*
* @default (commit) => `${commit.repo_url}/releases/tag/${commit.tag}`
*/
getReleaseTagURL?: (commit: Commit) => string
/**
* A function to get the commit URL.
*
* @default (commit) => `${commit.repo_url}/commit/${commit.hash}`
*/
getCommitURL?: (commit: Commit) => string
/**
* A map that contains rewrite rules of paths.
*
* This is quite useful when you have your pages in a different directory than the base url after deployed since the
* data will be calculated again on the client side.
*
* For example:
* - We have a page at `docs/pages/en/integrations/page.md`
* - And we will deploy it to `https://example.com/en/integrations/page`
*
* Then you can set the rewrite paths like this:
* ```json
* {
* "docs/": ""
* }
* ```
*
* This will rewrite the path to `en/integrations/page.md`
* Which is the correct path for the deployed page and runtime scripts to work properly.
*
* Note: in runtime, which is client side, the final extension will be replaced with `.md` if the extension is `.html`.
*/
rewritePaths?: Record<string, string>
/**
* Rules to rewrite paths by patterns.
*
* Same as `rewritePaths`, but it can be a function that returns a promise or plain value.
* Besides that, we offer some built-in handlers to rewrite paths by patterns:
*
* - `rewritePathsByRewritingExtension(from: string, to: string)`: to rewrite paths by rewriting the extension.
*
* @example
*
* ```typescript
* import { GitChangelog, rewritePathsByRewritingExtension } from '@nolebase/vitepress-plugin-git-changelog/vite'
*
* GitChangelog({
* rewritePathsBy: {
* // to rewrite `example.md` to `example.html`
* handler: rewritePathsByRewritingExtension('.md', '.html')
* }
* })
* ```
*
* @see rewritePathsByRewritingExtension
*
*/
rewritePathsBy?: RewritePathsBy
/**
* The maximum number of git logs to fetch.
*/
maxGitLogCount?: number
/**
* The maximum number of concurrent processes to fetch git logs.
*/
maxConcurrentProcesses?: number
}
GitChangelogMarkdownSection
plugin
The GitChangelogMarkdownSection
plugin is a plugin that helps you to inject the Markdown sections into your VitePress pages. It's a plugin that works with the GitChangelog
plugin to provide the data for the Markdown sections.
import { defineConfig } from 'vite'
import {
GitChangelogMarkdownSection,
} from '@nolebase/vitepress-plugin-git-changelog/vite'
export default defineConfig({
plugins: [
GitChangelogMarkdownSection(),
],
// other vite configurations...
})
Behind the scene, what this plugin does it simply appending <NolebaseGitContributors />
and <NolebaseGitChangelog />
components to your Markdown pages.
It does have more options to configure.
Full list of options
interface GitChangelogMarkdownSectionOptions {
/**
* The locales options
*/
locales?: Record<string, Locale>
/**
* The getter function to get the title of the changelog section
*
* @param code - raw markdown code (comes from vite when transform hook is called)
* @param id - the current transforming module ID (comes from vite when transform hook is called)
* @param context - the context object, contains several helper functions
* @returns string
* @default () => 'Changelog'
*/
getChangelogTitle?: (code: string, id: string, context: Context) => string
/**
* The getter function to get the title of the contributors section
*
* @param code - raw markdown code (comes from vite when transform hook is called)
* @param id - the current transforming module ID (comes from vite when transform hook is called)
* @param context - the context object, contains several helper functions
* @returns string
* @default () => 'Contributors'
*/
getContributorsTitle?: (code: string, id: string, context: Context) => string
/**
* The list of file names to exclude from the transformation
*
* @default ['index.md']
*/
excludes?: string[]
/**
* The function to exclude the file from the transformation
*
* @param id - the current transforming module ID (comes from vite when transform hook is called)
* @param context - the context object, contains several helper functions
* @returns boolean
* @default () => false
*/
exclude?: (id: string, context: Context) => boolean
/**
* The sections options
*/
sections?: {
/**
* Whether to disable the changelog section
*/
disableChangelog?: boolean
/**
* Whether to disable the contributors section
*/
disableContributors?: boolean
}
}
Internationalization
The GitChangelogMarkdownSection
plugin supports internationalization. You can configure the locales
option to provide the translations for the section titles.
Why internationalization again, in Vite plugin, seriously?
VitePress has a function called outline, where it read all the heading titles in one page and generate the sidebar navigation based on these data.
So in order to make the changelog (page history) and contributors section titles to be included into outline, we have to inject them into the Markdown before it got rendered into HTML, then pass them to VitePress to render the pages into HTML.
And transforming and manipulating markdown-it
AST tree is a tough work to do by comparing to directly manipulate them in Vite plugins, or through Remark API, but this would be another story for another time.
In conclusion, we have to inject the sections into the Markdown before it got rendered into HTML, as well as the internationalization support.
import { defineConfig } from 'vite'
import {
GitChangelogMarkdownSection,
} from '@nolebase/vitepress-plugin-git-changelog/vite'
export default defineConfig({
plugins: [
GitChangelogMarkdownSection({
locales: {
'zh-CN': {
gitChangelogMarkdownSectionTitles: {
changelog: '文件历史',
contributors: '贡献者',
},
},
'en': {
gitChangelogMarkdownSectionTitles: {
changelog: 'File History',
contributors: 'Contributors',
},
},
},
}),
],
// other vite configurations...
})
or if you would like to dynamically generate the translations:
import { join } from 'node:path'
import { defineConfig } from 'vite'
import {
GitChangelogMarkdownSection,
} from '@nolebase/vitepress-plugin-git-changelog/vite'
export default defineConfig({
plugins: [
GitChangelogMarkdownSection({
getChangelogTitle: (_, __, { helpers }): string => {
if (helpers.idStartsWith(join('pages', 'en')))
return 'File History'
if (helpers.idStartsWith(join('pages', 'zh-CN')))
return '文件历史'
return 'File History'
},
getContributorsTitle: (_, __, { helpers }): string => {
if (helpers.idStartsWith(join('pages', 'en')))
return 'Contributors'
if (helpers.idStartsWith(join('pages', 'zh-CN')))
return '贡献者'
return 'Contributors'
},
}),
],
// other vite configurations...
})
Excluding a page from the transformation of GitChangelogMarkdownSection
You can exclude a page from the transformation of GitChangelogMarkdownSection
by adding the nolebase.gitChangelog
or gitChangelog
frontmatter to the page:
---
nolebase:
gitChangelog: false
---
or
---
gitChangelog: false
---
Globally exclude a page from the transformation of GitChangelogMarkdownSection
You can globally exclude a page from the transformation of GitChangelogMarkdownSection
by configuring the exclude
option:
import { defineConfig } from 'vite'
import {
GitChangelogMarkdownSection,
} from '@nolebase/vitepress-plugin-git-changelog/vite'
export default defineConfig({
plugins: [
GitChangelogMarkdownSection({
exclude: (id) => id.endsWith('index.md'),
}),
],
// other vite configurations...
})
Globally disable the changelog or contributors section
You can globally disable the changelog or contributors section by configuring the sections
option:
import { defineConfig } from 'vite'
import {
GitChangelogMarkdownSection,
} from '@nolebase/vitepress-plugin-git-changelog/vite'
export default defineConfig({
plugins: [
GitChangelogMarkdownSection({
sections: {
disableChangelog: true,
disableContributors: true,
},
}),
],
// other vite configurations...
})