You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc-site/pages/$.mdx
+3-3
Original file line number
Diff line number
Diff line change
@@ -29,10 +29,10 @@ It provides many features that help developers **build a React App quickly**:
29
29
-**Fantastic development experience**. Start the local development server in a blink, even when you have many pages. Hot module replacement works with React and Mdx, so you can get instant feedback when you edit your code.
30
30
-**Filesystem based routing**. By following a [simple filesystem routing convention](/fs-routing), It is easy to create, locate and develop pages. You don't need to worry about routing configuration. For advanced users, you can [tell vite-pages how to find page files](/advanced-fs-routing), so that vite-pages can work with any project file structure.
31
31
-**Support Mdx**. You can write content with either "normal React" or [Mdx](https://mdxjs.com/). Normal Reactjs is more flexible and composable. While Mdx is more readable and easier to edit. You can choose the proper format for your task. These formats can import each other like normal esModules.
32
-
-**Powerful [theme customization](/theme-customization)**. Vite-pages itself doesn't render any concrete DOM node. You can customize **anything** on the page with theme. It is easy to write a theme that is sharable and configurable. If you use typescript, the users of your theme will get type-check and intelliSense.
32
+
-**Powerful [theme customization](/theme-customization)**. Vite-pages itself doesn't render any concrete DOM node. You can customize **anything** on the page with a theme. It is easy to write a theme that is sharable and configurable. If you use typescript, the users of your theme will get type-check and intelliSense.
33
33
-**Automatic code splitting based on pages**. Visitors don't need to download the whole app, they only load page data as needed.
34
-
-**Support static site generation out of the box**. By pre-rendering your app into HTML at buildtime, users can see the content before any JS is loaded. With this feature, you can [deploy your single page apps on GitHub Pages](https://github.com/vitejs/vite-plugin-react-pages/tree/main/doc-site)(which [doesn't natively support single page apps](https://www.google.com/search?q=github+pages+single+page+apps&oq=github+pages+single+page+apps)).
35
-
-**Tools for Library documentation**. Vite-pages provides [some tools](/library-documentation-tools) to reduce the maintenance costs for library authors and make their documents more easily to read.
34
+
-**Support static site generation out of the box**. By pre-rendering your app into HTML at build-time, users can see the content before any JS is loaded. With this feature, you can [deploy your single page apps on GitHub Pages](https://github.com/vitejs/vite-plugin-react-pages/tree/main/doc-site)(which [doesn't natively support single page apps](https://www.google.com/search?q=github+pages+single+page+apps&oq=github+pages+single+page+apps)).
35
+
-**Tools for Library documentation**. Vite-pages provides [some tools](/library-documentation-tools) to reduce the maintenance costs for library authors and make their documents easier to read.
Copy file name to clipboardexpand all lines: doc-site/pages/advanced-fs-routing$.mdx
+9-9
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ subGroup: advanced
8
8
9
9
> The "Basic Filesystem Routing Convention" should satisfy most users' needs. **You probably don't need to read this advanced guide**.
10
10
11
-
For advanced users, vite-pages let you implement your own filesystem routing convention: you can **teach vite-pages how to collect page data from your project**.
11
+
For advanced users, vite-pages lets you implement your own filesystem routing convention: you can **teach vite-pages how to collect page data from your project**.
12
12
13
13
When [configuring vite-plugin-react-pages](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/docs/vite.config.ts), you can pass the `pageStrategy` option. It should be an instance of `PageStrategy` class. Here is an example of customizing pageStrategy:
14
14
@@ -19,19 +19,19 @@ vite.config.ts:
19
19
syntax="ts"
20
20
/>
21
21
22
-
With this custom pageStrategy, page files don't need to ends with `$`. Instead, they need to match the pattern `**/index.{md,mdx,js,jsx,ts,tsx}`.
22
+
With this custom pageStrategy, page files don't need to end with `$`. Instead, they need to match the pattern `**/index.{md,mdx,js,jsx,ts,tsx}`.
23
23
24
24
> Checkout complete examples in [the custom-find-pages2 fixture](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/playground/custom-find-pages2/vite.config.ts) or [the project scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/docs/vite.config.ts).
25
25
26
26
### Steps of customizing pageStrategy
27
27
28
-
As shown by the above example, here is the usual steps to customize pageStrategy:
28
+
As shown by the above example, here are the usual steps to customize pageStrategy:
29
29
30
30
1. Define a `findPages` function and pass it to `PageStrategy` constructor.
31
31
2. Inside the `findPages`, use `helpers.watchFiles(baseDir, glob, fileHandler)` to find the files that you need.
32
32
- vite-pages will pass the glob(or glob array) to [chokidar](https://github.com/paulmillr/chokidar). vite-pages use chokidar to scan the fileSystem and watch for files.
33
-
- Whenever a file is scaned, added or updated, vite-pages will call the `fileHandler` with that file. When the file is deleted, vite-pages will automatically delete the related page data.
34
-
3. Inside the `fileHandler`, read the infomation from the `file` and register page data by calling `fileHandlerAPI.addPageData`.
33
+
- Whenever a file is scanned, added or updated, vite-pages will call the `fileHandler` with that file. When the file is deleted, vite-pages will automatically delete the related page data.
34
+
3. Inside the `fileHandler`, read the information from the `file` and register page data by calling `fileHandlerAPI.addPageData`.
35
35
- There are two more helpers inside `fileHandlerAPI` that help you to update page data. We will introduce them in the following section.
36
36
37
37
### Handle file events and update page data
@@ -51,7 +51,7 @@ The `fileHandlerAPI` contains a set of helpers that help you to update page data
51
51
52
52
#### fileHandlerAPI.addPageData(dataPiece)
53
53
54
-
When you have extracted some [page data](/page-data) (which is called dataPiece) in the `fileHandler`, call `addPageData` to register the data. So that vite-pages will load the data into theme for rendering.
54
+
When you have extracted some [page data](/page-data) (which is called dataPiece) in the `fileHandler`, call `addPageData` to register the data. So that vite-pages will load the data into the theme for rendering.
Similar to the `fileHandlerAPI.getRuntimeData` API, you can use `fileHandlerAPI.getStaticData` to get the staticData of a certain page. And tou can read or mutate the properties of it:
117
+
Similar to the `fileHandlerAPI.getRuntimeData` API, you can use `fileHandlerAPI.getStaticData` to get the staticData of a certain page. And you can read or mutate the properties of it:
Copy file name to clipboardexpand all lines: doc-site/pages/examples/component-library$.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ subGroup: advanced
9
9
10
10
This is an example of using "Advanced Filesystem Routing" inside a component library project.
11
11
12
-
Suppose you are developing a React component library. Your project have file structure like this:
12
+
Suppose you are developing a React component library. Your project will have a file structure like this:
13
13
14
14
```text
15
15
src
@@ -30,7 +30,7 @@ src
30
30
└── index.ts
31
31
```
32
32
33
-
You want to use vite as your local demo development environment (because it is blazingly fast). **How to collect all components and all demos from this project?** The file structure doesn't follow the [Basic Filesystem Routing Convention](/fs-routing).
33
+
You want to use Vite as your local demo development environment (because it is blazingly fast). **How to collect all components and all demos from this project?** The file structure doesn't follow the [Basic Filesystem Routing Convention](/fs-routing).
34
34
35
35
The answer: implement your own filesystem routing convention!
36
36
@@ -39,7 +39,7 @@ vite.config.ts:
39
39
40
40
We use `api.getRuntimeData(pageId)` and `api.getStaticData(pageId)` inside fileHandlers to get the pageData object. We can mutate the data object, and vite-pages will update its pages accordingly.
41
41
42
-
Checkout the complete example in [the library project scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/docs/vite.config.ts).
42
+
Check out the complete example in [the library project scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/docs/vite.config.ts).
43
43
You can initialize this project [with one command](/) (choose `lib` template).
44
44
45
45
## Monorepo
@@ -48,7 +48,7 @@ In some cases, we want to publish each component in their own packages.
48
48
49
49
> Monorepo has more advantages when components are complex and tend to evolve independently. If we use a single package to publish all these components like the above example, all components share a version number. If we need to introduce a breaking change in a component, we have to bump the major version of the whole package. But with the monorepo we only need to bump the major version of that sub-package. Users will be more confident to upgrade.
50
50
51
-
In that case, we create a seperate package to run vite-pages, collecting all components and their demos. The project setup will look like this:
51
+
In that case, we create a separate package to run vite-pages, collecting all components and their demos. The project setup will look like this:
52
52
53
53
```text
54
54
packages
@@ -80,5 +80,5 @@ packages
80
80
└── package.json
81
81
```
82
82
83
-
Checkout the complete example in [the lib-monorepo scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib-monorepo/packages/demos/vite.config.ts).
83
+
Check out the complete example in [the lib-monorepo scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib-monorepo/packages/demos/vite.config.ts).
84
84
You can initialize this project [with one command](/) (choose `lib-monorepo` template).
Copy file name to clipboardexpand all lines: doc-site/pages/fs-routing$.mdx
+5-5
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Vite-pages generates page routes based on your project file structure (filesyste
11
11
12
12
The basic filesystem routing convention is very intuitive. It works out of the box and doesn't need any config. It should satisfy most users' needs.
13
13
14
-
**You can create a page by simply creating a file**: `page-name$.tsx`. Notice the `$`**at the end of the filename**. Vite-pages recognizes it and know it is a page entry.
14
+
**You can create a page by simply creating a file**: `page-name$.tsx`. Notice the `$`**at the end of the filename**. Vite-pages recognizes it and knows it is a page entry.
15
15
16
16
If the filename is `index$.tsx`, the page route path will be the path of the directory. See examples below.
17
17
@@ -30,12 +30,12 @@ If the filename is `index$.tsx`, the page route path will be the path of the dir
Theme can decide what to render when no page matches the url. Checkout[the theme doc](/theme-customization).
33
+
Theme can decide what to render when no page matches the URL. Check out[the theme doc](/theme-customization).
34
34
35
-
If a page path contains url paramaters, you can use [useParams](https://reactrouter.com/web/example/url-params) of `react-router-dom` to access the actual paramaters.
35
+
If a page path contains URL parameters, you can use [useParams](https://reactrouter.com/web/example/url-params) of `react-router-dom` to access the actual parameters.
36
36
37
-
Checkout[the basic fixture](https://github.com/vitejs/vite-plugin-react-pages/tree/main/packages/playground/basic/pages) for an example.
37
+
Check out[the basic fixture](https://github.com/vitejs/vite-plugin-react-pages/tree/main/packages/playground/basic/pages) for an example.
38
38
39
39
## Advanced Filesystem Routing
40
40
41
-
The "Basic Filesystem Routing Convention" should satisfy most users' needs. For advanced users, vite-pages let you implement your own filesystem routing convention: you can **teach vite-pages how to collect page data from your project**. Checkout [advanced fs routing](/advanced-fs-routing).
41
+
The "Basic Filesystem Routing Convention" should satisfy most users' needs. For advanced users, vite-pages lets you implement your own filesystem routing convention: you can **teach vite-pages how to collect page data from your project**. Checkout [advanced fs routing](/advanced-fs-routing).
Copy file name to clipboardexpand all lines: doc-site/pages/i18n$.mdx
+11-11
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ subGroup: advanced
6
6
7
7
# Internationalization
8
8
9
-
i18n support can be provided by theme. For example, [the official theme(vite-pages-theme-doc)](/official-theme)support i18n. This document shows how to create a multi-lingual site with it.
9
+
i18n support can be provided by theme. For example, [the official theme(vite-pages-theme-doc)](/official-theme)supports i18n. This document shows how to create a multi-lingual site with it.
10
10
11
11
## Define i18n metadata in the theme config
12
12
@@ -78,17 +78,17 @@ interface LocalConfig {
78
78
}
79
79
```
80
80
81
-
With this i18n metadata, the theme can decide which locale to apply. For any specific page, it match its pagePath with each `LocalConfig.routePrefix`:
81
+
With this i18n metadata, the theme can decide which locale to apply. For any specific page, it matches its pagePath with each `LocalConfig.routePrefix`:
82
82
83
-
- If the pagePath match with a `LocalConfig.routePrefix`, this locale will apply to the page
83
+
- If the pagePath matches with a `LocalConfig.routePrefix`, this locale will apply to the page
84
84
- If the pagePath doesn't match any routePrefix, the `I18nConfig.defaultLocale` will apply to the page
85
85
86
86
With the example config above, page `/foo$.tsx` will have the locale keyed with `en`. Page `/zh/foo$.tsx` will have the locale keyed with `zh`.
87
87
88
88
What does it mean when we say "the page P has locale L" (or "locale L applies to page P")? It means two things:
89
89
90
-
- Most site-level theme configs can decide their value based on the current applied locale. So that you can render `topNavs` and `sideNavs` with the correct language.
91
-
- In any React Component, you can get the current applied locale from `useThemeCtx()` so that you can decide which i18n translated message to render.
90
+
- Most site-level theme configs can decide their value based on the currently applied locale. So that you can render `topNavs` and `sideNavs` with the correct language.
91
+
- In any React Component, you can get the currently applied locale from `useThemeCtx()` so that you can decide which i18n translated message to render.
92
92
93
93
We will talk about these techniques in the following sections.
94
94
@@ -191,18 +191,18 @@ docs
191
191
└─ baz.md
192
192
```
193
193
194
-
Each page with default locale should have its translated version. For example, `/zh/foo$.md` should be the chinese-translated version of `/foo$.md`.
194
+
Each page with the default locale should have its translated version. For example, `/zh/foo$.md` should be the Chinese-translated version of `/foo$.md`.
195
195
196
196
### Markdown pages: translate them into each locale
197
197
198
-
Here is a markdown page for default locale (`/foo$.md`):
198
+
Here is a markdown page for the default locale (`/foo$.md`):
199
199
200
200
```md
201
201
---
202
-
title: This is the title written in default locale
202
+
title: This is the title written in the default locale
203
203
---
204
204
205
-
This is the markdown content written in default locale.
205
+
This is the markdown content written in the default locale.
206
206
```
207
207
208
208
Here is the translated markdown page (`/zh/foo$.md`):
@@ -258,7 +258,7 @@ const messages = {
258
258
exportdefaultPage
259
259
```
260
260
261
-
When defining the page for other locale (`/zh/bar$.tsx`), you can **re-export the React Component**:
261
+
When defining the page for the other locale (`/zh/bar$.tsx`), you can **re-export the React Component**:
262
262
263
263
```tsx
264
264
/**
@@ -272,7 +272,7 @@ Notice that we reuse the same React Component for multiple locales. And we defin
272
272
273
273
> When using i18n library like `react-intl`, and you need to wrap your App with some custom React Component, you can use `ThemeConfig.AppWrapper`.
274
274
275
-
### Get current locale in React Components or Hooks
275
+
### Get the current locale in React Components or Hooks
Copy file name to clipboardexpand all lines: doc-site/pages/library-documentation-tools/index$.mdx
+8-8
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,13 @@ subGroup: advanced
6
6
7
7
# Library Documentation Tools
8
8
9
-
Vite-pages provides some tools to reduce the maintenance costs for library authors and make their documents more easily to read.
9
+
Vite-pages provides some tools to reduce the maintenance costs for library authors and make their documents easier to read.
10
10
11
11
> These tools are mostly for library authors.
12
12
13
13
## Demos
14
14
15
-
Demos (or stories) are the fixtures that you use when you are developing your library locally.
15
+
Demos (or stories) are the fixtures that you use when you are developing your library locally.
16
16
Vite-pages allows you to render demos into your app (which can be the document of your library). Using this feature, vite-pages app can not only serve as your **local develop environment** (so that you can debug your demos and your libary code locally), but also the **document for your library** (so that the users of your library can see your demos and lean how to use it).
17
17
18
18
The following markdown
@@ -40,7 +40,7 @@ export default function Page() {
40
40
41
41
## Extract Type info from Typescript code
42
42
43
-
Vite-pages allows can help you to extract Typescript type info and render it. With this feature, you **no loger need to manually maintain API infomation in your documents**! You can reuse your interfaces (and comments in them) from your source code! This is very conveniently for API documentation.
43
+
Vite-pages can help you to extract Typescript type info and render it. With this feature, you **no longer need to manually maintain API information in your documents**! You can reuse your interfaces (and comments in them) from your source code! This is very convenient for API documentation.
44
44
45
45
### Render Interface
46
46
@@ -58,7 +58,7 @@ will result in:
58
58
59
59
### Render Type Alias
60
60
61
-
Besides interface, TsInfo API also support type alias.
61
+
Besides interfaces, TsInfo API also supports type aliases.
@@ -107,4 +107,4 @@ export default function Page() {
107
107
108
108
## Examples
109
109
110
-
You can checkout[template-lib](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/src/Button/README.md) as an example. (You can [view it online](https://stackblitz.com/fork/github/vitejs/vite-plugin-react-pages/tree/main/packages/create-project/template-lib?file=src%2FButton%2FREADME.md&terminal=dev) or [init this project locally](https://vitejs.github.io/vite-plugin-react-pages/))
110
+
You can check out[template-lib](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/src/Button/README.md) as an example. (You can [view it online](https://stackblitz.com/fork/github/vitejs/vite-plugin-react-pages/tree/main/packages/create-project/template-lib?file=src%2FButton%2FREADME.md&terminal=dev) or [init this project locally](https://vitejs.github.io/vite-plugin-react-pages/))
Copy file name to clipboardexpand all lines: doc-site/pages/magic-import$_deprecate.mdx
+6-6
Original file line number
Diff line number
Diff line change
@@ -5,15 +5,15 @@ order: 4
5
5
6
6
# Magic import
7
7
8
-
Vite-pages support "magic import". Magic import is **normal esModule import sytax** with **tailored path convention**. It enable users to import things with special behavior. Users can use it to do powerful things.
8
+
Vite-pages support "magic import". Magic import is **normal esModule import syntax** with **tailored path convention**. It enables users to import things with special behavior. Users can use it to do powerful things.
9
9
10
-
> If you are familiar with the webpack loader mechanism, you can easily guess how magic import works.
10
+
> If you are familiar with the Webpack loader mechanism, you can easily guess how magic import works.
11
11
12
12
## Analyze source code
13
13
14
-
When you are documenting for some JavaScript/Typescript library, you normally want to show some js/ts code to readers. This magic import help you load source code from a module. It is kind of like [raw-loader from webpack](https://webpack.js.org/loaders/raw-loader/). This is very useful for demo code displaying.
14
+
When you are documenting for some JavaScript/Typescript library, you normally want to show some js/ts code to readers. This magic import helps you load source code from a module. It is kind of like [raw-loader from webpack](https://webpack.js.org/loaders/raw-loader/). This is very useful for demo code displaying.
15
15
16
-
You can get the module tree analysis by importing the module with query `?analyzeSource`.
16
+
You can get the module tree analysis by importing the module with the query `?analyzeSource`.
17
17
18
18
For example:
19
19
@@ -48,15 +48,15 @@ Checkout the [analyze-source-code fixture](https://github.com/vitejs/vite-plugin
48
48
49
49
### Relative module dependencies
50
50
51
-
For relative module dependencies(.e.g `import util from './dir/util.ts'`), their source code will be collected into the analyze result, as shown by the previous example.
51
+
For relative module dependencies(.e.g `import util from './dir/util.ts'`), their source code will be collected into the analysis result, as shown by the previous example.
52
52
53
53
Relative module import can be js, jsx, ts, tsx, css, sass, etc.
54
54
55
55
### External module dependencies
56
56
57
57
For those dependencies from `node_modules` (.e.g `import React from 'react'`), this magic import will **not** load source code for them. Instead, the dependencies' versions are recorded, as shown by the previous example.
58
58
59
-
This magic import gets dependencies' versions by find `package.json` up from the importer, and find the package version from these `package.json` fields:
59
+
This magic import gets dependencies' versions by finding a `package.json` up from the importer, and finds the package version from these `package.json` fields:
Copy file name to clipboardexpand all lines: doc-site/pages/official-theme$.mdx
+8-8
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ export default createTheme({
29
29
30
30
## Auto side menu generation
31
31
32
-
Doc theme can generation a side menu automatically, based on the pages information.
32
+
Doc theme can generate a side menu automatically, based on the pages information.
33
33
34
34
You can control the title/sorting/grouping of the side menu, by notating these [page static data](/page-data#static-data):
35
35
@@ -55,7 +55,7 @@ For example, if your site has these pages:
55
55
/references/error-codes/code2
56
56
```
57
57
58
-
Firstly, the theme will divide pages into `group`s based on the **first segment** of page path:
58
+
Firstly, the theme will divide pages into `group`s based on the **first segment** of the page path:
59
59
60
60
```
61
61
group /:
@@ -78,11 +78,11 @@ group references:
78
78
You can customize `group` in page static data. For example:
79
79
80
80
```
81
-
Put this at top of a markdown page:
81
+
Put this at the top of a markdown page:
82
82
---
83
83
group: references
84
84
---
85
-
Or put this at top of a tsx/jsx page:
85
+
Or put this at the top of a TSX/JSX page:
86
86
/**
87
87
* @group references
88
88
*/
@@ -115,10 +115,10 @@ group references:
115
115
116
116
`subGroup` can also be customized in page static data, just like `group` does.
117
117
118
-
What is the meanings of `group` and `subGroup`?
118
+
What is the meaning of `group` and `subGroup`?
119
119
120
-
-`group` is a site isolation boundary: we only display **one**`group` at a time. If a user open a page in group `references`, he/she will **only see side menu items from that group**. He/She will not see menu items from `components` group.
121
-
-`subGroup`decide how the theme sort side menu items. All side menu items with same `subGroup` will be rendered adjacently. This document site is an example.
120
+
-`group` is a site isolation boundary: we only display **one**`group` at a time. If a user opens a page in the group `references`, he/she will **only see side menu items from that group**. He/She will not see menu items from `components` group.
121
+
-`subGroup`decides how the theme sorts the side menu items. All side menu items with the same `subGroup` will be rendered adjacently. This document site is an example.
122
122
123
123
## Theme configs
124
124
@@ -128,6 +128,6 @@ The `createTheme` exported by `vite-pages-theme-doc` accepts [these options](htt
128
128
129
129
## Fully theme customization
130
130
131
-
If the basic theme doesn't satisfy your need, you can [create your own theme](/theme-customization).
131
+
If the basic theme doesn't satisfy your needs, you can [create your own theme](/theme-customization).
132
132
133
133
> Contributions to [the theme](https://github.com/vitejs/vite-plugin-react-pages/tree/main/packages/theme-doc) are always welcomed.
Copy file name to clipboardexpand all lines: doc-site/pages/page-data$.mdx
+8-8
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ order: 2
5
5
6
6
# Page data
7
7
8
-
**Essentially, vite-pages is a React app framework that collect your pages data and pass them to your theme.** So what kinds of data does it collect?
8
+
**Essentially, vite-pages is a React app framework that collects your pages' data and passes them to your theme.** So what kinds of data does it collect?
9
9
10
10
Each page consists of two kinds of data:
11
11
@@ -18,7 +18,7 @@ Both of these page data are passed to the theme so that it can render the app.
18
18
19
19
## Static data
20
20
21
-
Static data usually contains the matadata of a page. Static data of **all pages** is loaded **eagerly** when the app bootstrap, so that the theme can render a side menu or a search box with this infomation.
21
+
Static data usually contains the metadata of a page. Static data of **all pages** is loaded **eagerly** when the app bootstraps, so that the theme can render a side menu or a search box with this information.
22
22
23
23
> You should try to keep the static data as small as possible.
24
24
@@ -60,7 +60,7 @@ This will be collected as:
60
60
61
61
Runtime page data is whatever value you export from a page file. It contains the actual content of the page.
62
62
63
-
Most themes(.e.g [the official theme](/official-theme)) ask users to `export default` a React component from each page file. But that is not a requirement from vite-pages core. We will talk about this later.
63
+
Most themes(e.g.[the official theme](/official-theme)) ask users to `export default` a React component from each page file. But that is not a requirement from vite-pages core. We will talk about this later.
64
64
65
65
## Difference
66
66
@@ -69,7 +69,7 @@ Both static data and runtime data are passed to the theme, so the theme can use
69
69
Difference:
70
70
71
71
- Static data of **all pages** is loaded **eagerly** when the app bootstrap. So you should try to keep the static data small.
72
-
- Runtime data is loaded **lazily** when user navigate to that page.
72
+
- Runtime data is loaded **lazily** when a user navigates to that page.
73
73
- The value type of static data is limited (string or simple object/array), while the value of runtime data can be any javascript value (.e.g a React component).
74
74
75
75
## How themes consume these data
@@ -88,9 +88,9 @@ Here is the interface of a theme:
88
88
89
89
## Vite-pages core doesn't care what your page data looks like
90
90
91
-
Vite-pages itself doesn't care what the page data looks like. How to interpret the page data and render the view, is totally decided by [the theme](/theme-customization). Vite-pages just collect your pages data and pass them to the theme. This design make the vite-pages core more "simple" and make themes more powerful.
91
+
Vite-pages itself doesn't care what the page data looks like. How to interpret the page data and render the view, is totally decided by [the theme](/theme-customization). Vite-pages just collect your pages' data and pass them to the theme. This design makes the vite-pages core more "simple" and makes themes more powerful.
92
92
93
-
Most themes(.e.g [the official theme](/official-theme)) ask users to `export default` a React component from each page file. But that is not a requirement from vite-pages core.
93
+
Most themes(e.g.[the official theme](/official-theme)) ask users to `export default` a React component from each page file. But that is not a requirement from vite-pages core.
94
94
95
95
## Advanced topic: how vite-pages represent page data internally
96
96
@@ -115,10 +115,10 @@ interface PagesData {
115
115
116
116
### Composed page data
117
117
118
-
You may wonder why runtimeData and staticData are maps and we use a `key` to index into them (instead of just one data for a page). This is because **vite-pages let users create a page with multiple data pieces that originate from multiple files.**
118
+
You may wonder why runtimeData and staticData are maps and we use a `key` to index into them (instead of just one data for a page). This is because **vite-pages lets users create a page with multiple data pieces that originate from multiple files.**
119
119
120
120
> We use this feature in [the project scaffold](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/create-project/template-lib/docs/vite.config.ts). We use it to display demos from multiple files in one page. You can init this sample project [with one command](/) (choose `lib` template).
121
121
122
-
Most filesystem routing mechanism out there assume that each page map to only one file. But vite-pages doesn't enforce that rule! This make page data more flexible and programable.
122
+
Most filesystem routing mechanisms out there assume that each page maps to only one file. But vite-pages doesn't enforce that rule! This makes page data more flexible and programable.
123
123
124
124
Checkout [the advanced-fs-routing doc](/advanced-fs-routing) or ["Example: develop a component library"](/examples/component-library) to learn more about how to create a page with multiple data pieces that originate from multiple files.
Copy file name to clipboardexpand all lines: doc-site/pages/theme-customization$.mdx
+8-8
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ subGroup: advanced
6
6
7
7
# Theme customization
8
8
9
-
> This is an advance guide about how to make a theme by yourself. If there is already themes that meet your needs(.e.g [the official theme](/official-theme)), you don't need to read this guide now!
9
+
> This is an advanced guide about how to make a theme by yourself. If there are already themes that meet your needs(e.g.[the official theme](/official-theme)), you don't need to read this guide now!
10
10
11
-
Vite-pages itself doesn't render any concrete DOM node. Users can customize **anything** with a theme. That's why theme is so powerful.
11
+
Vite-pages itself doesn't render any concrete DOM node. Users can customize **anything** with a theme. That's why themes are so powerful.
12
12
13
-
To use a theme, users should export their theme from `_theme.tsx`. It should export a React compoent. It will be rendered by vite-pages core, and get useful info from props:
13
+
To use a theme, users should export their theme from `_theme.tsx`. It should export a React component. It will be rendered by vite-pages core, and get useful info from props:
14
14
15
15
- All pages' static data
16
16
- All runtime data that is already loaded
@@ -28,15 +28,15 @@ This is probably [the simplest theme](https://github.com/vitejs/vite-plugin-reac
28
28
29
29
> Here is a more useful theme: [vite-pages-theme-doc](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/theme-doc/src/index.tsx). Learn more about it in [this guide](/official-theme).
30
30
31
-
You can customize every bits of UI with theme. Welcome to share your theme with a npm package!
31
+
You can customize every bit of UI with a theme. Welcome to share your theme with a npm package!
32
32
33
33
## Suggestions
34
34
35
35
### To theme providers: make your theme easier to use
36
36
37
-
We encourage theme providers to export your theme as **a config function** that receive user config and return a `Theme`.
37
+
We encourage theme providers to export your theme as **a config function** that receives the user config and returns a `Theme`.
38
38
39
-
For example, the theme provider can export theme like this:
39
+
For example, the theme provider can export a theme like this:
40
40
41
41
```tsx
42
42
// The theme config function accepts navs config
@@ -76,13 +76,13 @@ export default createTheme({
76
76
77
77
As you can see, the theme is easier to use because **theme consumers don't need to know about the `Theme` API of vite-pages**. They only need to know about `createTheme` API from the theme. Users should be talking to the theme, instead of talking directly to vite-pages framework.
78
78
79
-
For this reason, we encourage theme providers to export config function like the `createTheme` above.
79
+
For this reason, we encourage theme providers to export a config function like the `createTheme` above.
80
80
81
81
> You can refer to [vite-pages-theme-doc](https://github.com/vitejs/vite-plugin-react-pages/blob/main/packages/theme-doc/src/index.tsx)
82
82
83
83
#### Release the power of Typescript
84
84
85
-
The above example show another benefit for users: theme users can get Typescript type-check and intelliSense when they are configuring theme. This is because users are calling the theme config function, instead of "exporting some configs".
85
+
The above example shows another benefit for users: theme users can get Typescript type-check and intelliSense when they are configuring a theme. This is because users are calling the theme config function, instead of "exporting some configs".
Copy file name to clipboardexpand all lines: doc-site/pages/upgrade-from-v2-to-v3$.mdx
+10-10
Original file line number
Diff line number
Diff line change
@@ -22,13 +22,13 @@ Upgrade these package versions:
22
22
}
23
23
```
24
24
25
-
Notice that you need to [migrate your app to vite v3](https://vitejs.dev/guide/migration.html) with this setup.
25
+
Notice that you need to [migrate your app to Vite v3](https://vitejs.dev/guide/migration.html) with this setup.
26
26
27
27
It is very recommended to migrate `vite-pages-theme-basic` to [vite-pages-theme-doc](/official-theme).
28
28
29
-
### Stick with vite v2
29
+
### Stick with Vite v2
30
30
31
-
If you are not ready for vite v3 for some reason, you can stick with vite v2:
31
+
If you are not ready for Vite v3 for some reason, you can stick with Vite v2:
32
32
33
33
```json
34
34
{
@@ -42,13 +42,13 @@ If you are not ready for vite v3 for some reason, you can stick with vite v2:
42
42
}
43
43
```
44
44
45
-
Notice the version of `@vitejs/plugin-react`need to be changed together with `vite`.
45
+
Notice the version of `@vitejs/plugin-react`needs to be changed together with `vite`.
46
46
47
-
We also recommend you to migrate `vite-pages-theme-basic` to [vite-pages-theme-doc](/official-theme) with this setup (with vite v2).
47
+
We also recommend you migrate `vite-pages-theme-basic` to [vite-pages-theme-doc](/official-theme) with this setup (with Vite v2).
48
48
49
-
## Install peerDependencies for mdx
49
+
## Install peerDependencies for MDX
50
50
51
-
`vite-plugin-mdx` no longer install mdx-related peerDependencies for you. You should install them in your project:
51
+
`vite-plugin-mdx` no longer installs mdx-related peerDependencies for you. You should install them in your project:
52
52
53
53
```json
54
54
{
@@ -59,13 +59,13 @@ We also recommend you to migrate `vite-pages-theme-basic` to [vite-pages-theme-d
59
59
}
60
60
```
61
61
62
-
> [vite-plugin-mdx](https://github.com/brillout/vite-plugin-mdx) has been moved to a seperate repo. ([related issue](https://github.com/vitejs/vite-plugin-react-pages/issues/6))
62
+
> [vite-plugin-mdx](https://github.com/brillout/vite-plugin-mdx) has been moved to a separate repo. ([related issue](https://github.com/vitejs/vite-plugin-react-pages/issues/6))
63
63
64
64
## A Small update to theme API
65
65
66
66
> **If you have only used the basic theme and haven't created a custom theme. You don't need to care about this API change.**
67
67
68
-
In `vite-plugin-react-pages@3.x`, vite-pages don't pass staticData to the theme component any more. You should use the hook `useStaticData` to get staticData. This API update is for less prop drilling and more efficient HMR update during dev.
68
+
In `vite-plugin-react-pages@3.x`, vite-pages don't pass staticData to the theme component anymore. You should use the hook `useStaticData` to get staticData. This API update is for less prop drilling and more efficient HMR update during dev.
69
69
70
70
```ts
71
71
interfaceThemeProps {
@@ -95,4 +95,4 @@ In `vite-plugin-react-pages@3.x`, vite-pages use chokidar to scan the fileSystem
95
95
96
96
> Thanks [Alec Larson](https://github.com/aleclarson) for the idea and initial implementation.
97
97
98
-
In order to handle the change from from the fileSystem, the "Advanced Filesystem Routing" API has changed from the `findPages` API to the `pageStrategy` API. Checkout [the advanced-fs-routing doc](/advanced-fs-routing) to learn about the latest API.
98
+
In order to handle the change from the fileSystem, the "Advanced Filesystem Routing" API has changed from the `findPages` API to the `pageStrategy` API. Checkout [the advanced-fs-routing doc](/advanced-fs-routing) to learn about the latest API.
The following article will show you the migrate instructions. If you encounter problems, open an issue in the repo. Or checkout the [getting-stated templates](https://vitejs.github.io/vite-plugin-react-pages/#getting-stated) for reference.
22
+
The following article will show you the migration instructions. If you encounter problems, open an issue in the repo. Or check out the [getting-stated templates](https://vitejs.github.io/vite-plugin-react-pages/#getting-stated) for reference.
23
23
24
24
## Upstream libraries migration
25
25
26
-
Most upgrade work for upstream libraries is already done inside `vite-plugin-react-pages` and `vite-pages-theme-doc`. But some migration need to be done in userland, if you are using some old APIs that are dropped by these upstream libraries. For example, you can no longer use `<Switch>` of `react-router`. Checkout the links above for the migration guides of upstream libraries.
26
+
Most upgrade work for upstream libraries is already done inside `vite-plugin-react-pages` and `vite-pages-theme-doc`. But some of the migration needs to be done in userland, if you are using some old APIs that are dropped by these upstream libraries. For example, you can no longer use `<Switch>` of `react-router`. Check out the links above for the migration guides of upstream libraries.
27
27
28
-
We expect upstream libraries migration to be very easy for framwork users, unless you used many `react-router` v5-only APIs.
28
+
We expect upstream libraries migration to be very easy for framework users unless you used many `react-router` v5-only APIs.
29
29
30
30
## Remove vite-plugin-mdx
31
31
32
-
Since `vite-plugin-mdx` doesn't support mdx v2, vite-pages now includes a builtin mdx plugin. So you should remove the `vite-plugin-mdx` in vite-pages v5.
32
+
Since `vite-plugin-mdx` doesn't support mdx v2, vite-pages now includes a built-in MDX plugin. So you should remove the `vite-plugin-mdx` in vite-pages v5.
33
33
34
34
Update `vite.config.ts`:
35
35
@@ -48,12 +48,12 @@ export default defineConfig({
48
48
})
49
49
```
50
50
51
-
Notice that `pages()` now return an array of vite plugins(instead of return a plugin). But vite can understand that and apply every plugin in that array. So the invoke pattern of `vite-plugin-react-pages` looks exactly the same as before! You don't need to apply the new builtin mdx plugin manually.
51
+
Notice that `pages()` now returns an array of Vite plugins(instead of returning a plugin). But Vite can understand that and apply every plugin in that array. So the invoke pattern of `vite-plugin-react-pages` looks exactly the same as before! You don't need to apply the new built-in MDX plugin manually.
52
52
53
53
Update `package.json`:
54
54
55
55
- Remove `vite-plugin-mdx` and `@mdx-js/mdx`.
56
-
- You should upgrade `@mdx-js/react` to `^2.1.5`. It is a peerDependencies of mdx, so it should be installed by your vite project.
56
+
- You should upgrade `@mdx-js/react` to `^2.1.5`. It is a peerDependencies of mdx, so it should be installed by your Vite project.
57
57
58
58
```diff
59
59
{
@@ -68,19 +68,19 @@ Update `package.json`:
68
68
69
69
## MDX Comment Syntax Change
70
70
71
-
mdx v2 drops support for HTML comment syntax `<!-- html comment -->` (actually it drops all HTML syntax), and [the document](https://mdxjs.com/docs/what-is-mdx/#markdown) recommends using jsx comment syntax instead:
71
+
MDX v2 drops support for HTML comment syntax `<!-- html comment -->` (actually it drops all HTML syntax), and [the document](https://mdxjs.com/docs/what-is-mdx/#markdown) recommends using JSX comment syntax instead:
72
72
> HTML syntax doesn’t work in MDX as it’s replaced by JSX. Instead of HTML comments, you can use JavaScript comments in braces: `{/* comment! */}`.
73
73
74
-
The author explain the reason behind this at [this rfc](https://github.com/mdx-js/mdx/issues/1042#issuecomment-622281752). The author hopes that the mdx syntax is only composed of markdown syntax + JSX syntax. The introduction of HTML syntax is not necessary and it would increase the mental burden.
74
+
The author explains the reason behind this at [this rfc](https://github.com/mdx-js/mdx/issues/1042#issuecomment-622281752). The author hopes that the MDX syntax is only composed of markdown syntax + JSX syntax. The introduction of HTML syntax is not necessary and it would increase the mental burden.
75
75
76
-
> Although many markdown parsers support HTML syntax, it is technically not the syntax of markdown itself. Those markdown parsers support it because markdown was not expressive enough in the past (without mdx). mdx has already solved the lack of expressiveness (via JSX syntax), so there is no need to support HTML syntax.
76
+
> Although many markdown parsers support HTML syntax, it is technically not the syntax of markdown itself. Those markdown parsers support it because markdown was not expressive enough in the past (without MDX). MDX has already solved the lack of expressiveness (via JSX syntax), so there is no need to support HTML syntax.
77
77
78
-
The removing of html comment syntax does bring some migration costs. You can quickly migrate it by regular search and replacement: `<!--(.*?)-->` replace to `{/*$0*/}`.
78
+
The removal of HTML comment syntax does bring some migration costs. You can quickly migrate it by regular search and replacement: `<!--(.*?)-->` replace to `{/*$0*/}`.
79
79
80
80
## Use Node.js ECMAScript modules
81
81
82
-
The Node.js community is quickly migrating from CommonJS to ECMAScript modules (esm). And we encourage you to run vite on the esm mode of Node.js.
82
+
The Node.js community is quickly migrating from CommonJS to ECMAScript modules (esm). And we encourage you to run Vite on the esm mode of Node.js.
83
83
84
-
How to enable esm for Node.js? Just add a `"type": "module"` field to the `package.json` of your vite project!
84
+
How to enable ESM for Node.js? Just add a `"type": "module"` field to the `package.json` of your Vite project!
85
85
86
-
> It is encouraged to have a dedicated `package.json` for your vite project. Your vite project should not share a `package.json` with the npm package that you are publishing (or the worspace package in the project root directory, if you are using monorepo).
86
+
> It is encouraged to have a dedicated `package.json` for your Vite project. Your Vite project should not share a `package.json` with the npm package that you are publishing (or the workspace package in the project root directory, if you are using monorepo).
Copy file name to clipboardexpand all lines: doc-site/pages/upgrade-from-v4-to-v5$.mdx
+9-9
Original file line number
Diff line number
Diff line change
@@ -6,18 +6,18 @@ subGroup: upgrade-guides
6
6
7
7
# Upgrade from v4 to v5
8
8
9
-
vite-plugin-react-pages v5 is released with following improvements:
9
+
vite-plugin-react-pages v5 is released with the following improvements:
10
10
11
-
- Upgrade vite to [v5](https://vitejs.dev/guide/migration.html).
12
-
- Upgrade mdx to [v3](https://mdxjs.com/migrating/v3/).
11
+
- Upgrade Vite to [v5](https://vitejs.dev/guide/migration.html).
12
+
- Upgrade MDX to [v3](https://mdxjs.com/migrating/v3/).
13
13
14
-
Most migration is done inside this plugin. And our upstream libraries (vite and mdx) did't bring many significant breaking changes. So it should be **very easy** for our users to migrate! The following article will show you the migrate instructions.
14
+
Most migration is done inside this plugin. Our upstream libraries (Vite and MDX) didn't bring many significant breaking changes. So it should be **very easy** for our users to migrate! The following article will show you the migration instructions.
15
15
16
-
If you encounter problems, open an issue in the repo. Or checkout the [getting-stated templates](https://vitejs.github.io/vite-plugin-react-pages/#getting-stated) for working setup.
16
+
If you encounter problems, open an issue in the repo. Or check out the [getting-stated templates](https://vitejs.github.io/vite-plugin-react-pages/#getting-stated) for working setup.
17
17
18
18
## Upgrade Node.js to 18+
19
19
20
-
As [vite v5](https://vitejs.dev/guide/migration.html)required, you should upgrade Node.js to 18+.
20
+
As [Vite v5](https://vitejs.dev/guide/migration.html)requires Node.js 18+, you should upgrade Node.js to 18+.
21
21
22
22
## Upgrade project dependencies
23
23
@@ -39,7 +39,7 @@ Upgrade these package versions:
39
39
40
40
## Check Upstream libraries migration
41
41
42
-
Most migration is done inside this plugin. Although the upstream libraries (vite and mdx) did't bring many significant breaking changes for you, you should still take a look on their migration guides:
42
+
Most migration is done inside this plugin. Although the upstream libraries (Vite and MDX) didn't bring many significant breaking changes for you, you should still take a look at their migration guides:
0 commit comments