Skip to content

Commit f5352c0

Browse files
committed
feat: migrate to vitepress
1 parent f90dd16 commit f5352c0

40 files changed

+1931
-1797
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.github/workflows/build_and_deploy.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727

2828
- name: Setup Node
29-
uses: actions/setup-node@v2
29+
uses: actions/setup-node@v4
3030
with:
31-
node-version: '18'
31+
node-version: '20'
3232

3333
- name: Install and build
3434
run: |
35-
yarn install
36-
yarn docs:build
35+
npm install
36+
npm run docs:build
3737
3838
- name: Deploy
3939
if: github.ref == 'refs/heads/master'
4040
uses: JamesIves/github-pages-deploy-action@v4
4141
with:
4242
branch: publish
43-
folder: docs/.vuepress/dist
43+
folder: docs/.vitepress/dist

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
.temp
3-
.cache
3+
docs/.vitepress/cache
4+
docs/.vitepress/dist

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Sword - Symfony meets WordPress](./docs/.vuepress/public/images/sword-logo-sm.png)
1+
![Sword - Symfony meets WordPress](./docs/public/images/sword-logo-sm.png)
22

33
<br>
44

@@ -8,7 +8,7 @@
88

99
Please check the docs at https://getsword.com
1010

11-
Built with [VuePress 2](https://v2.vuepress.vuejs.org/).
11+
Built with [VitePress](https://vitepress.dev/).
1212

1313
## Contributing
1414

@@ -17,4 +17,3 @@ Feel free to contribute by opening issues or pull requests.
1717
## License
1818

1919
[MIT](LICENSE)
20-

docs/.vitepress/config.mts

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
import { defineConfig } from 'vitepress'
2+
3+
// https://vitepress.dev/reference/site-config
4+
export default defineConfig({
5+
lang: 'en-US',
6+
title: 'Sword',
7+
description: "Documentation for Sword",
8+
lastUpdated: true,
9+
head: [
10+
[
11+
'link',
12+
{ rel: 'icon', href: '/images/favicon-sm.png' },
13+
],
14+
[
15+
'script',
16+
{ async: '', src: 'https://www.googletagmanager.com/gtag/js?id=G-92G4XJ5HFS' }
17+
],
18+
[
19+
'script',
20+
{},
21+
`window.dataLayer = window.dataLayer || [];
22+
function gtag(){dataLayer.push(arguments);}
23+
gtag('js', new Date());
24+
gtag('config', 'G-92G4XJ5HFS');`
25+
]
26+
],
27+
markdown: {
28+
lineNumbers: true,
29+
theme: {
30+
light: 'catppuccin-latte',
31+
dark: 'dracula',
32+
},
33+
},
34+
themeConfig: {
35+
// https://vitepress.dev/reference/default-theme-config
36+
logo: '/images/favicon-sm.png',
37+
siteTitle: 'Sword',
38+
39+
search: {
40+
provider: 'local'
41+
},
42+
43+
footer: {
44+
message: 'Released under the MIT License.',
45+
copyright: 'Copyright © 2022-present William Arin'
46+
},
47+
48+
nav: [
49+
{ text: 'Guide', link: '/guide/' },
50+
],
51+
52+
sidebar: [
53+
{
54+
text: 'Introduction',
55+
items: [
56+
{ text: 'What is Sword?', link: '/guide/index.md' },
57+
{ text: 'Installation', link: '/guide/installation.md' },
58+
{ text: 'Tooling', link: '/guide/tooling.md' },
59+
{ text: 'Production', link: '/guide/production.md' },
60+
{ text: 'Configuration reference', link: '/guide/configuration.md' },
61+
],
62+
},
63+
{
64+
text: 'Tutorial',
65+
items: [
66+
{ text: 'First steps', link: '/guide/tutorial/first-steps.md' },
67+
{ text: 'Services', link: '/guide/tutorial/services.md' },
68+
{ text: 'Widgets', link: '/guide/tutorial/widgets.md' },
69+
{ text: 'Translations', link: '/guide/tutorial/translations.md' },
70+
{ text: 'Database queries', link: '/guide/tutorial/database-queries.md' },
71+
{ text: 'Assets', link: '/guide/tutorial/assets.md' },
72+
{ text: 'Commands for WP-CLI', link: '/guide/tutorial/commands.md' },
73+
],
74+
},
75+
],
76+
77+
socialLinks: [
78+
{ icon: 'github', link: 'https://github.com/phpsword/sword-bundle' },
79+
{ icon: 'twitter', link: 'https://twitter.com/william_arin' },
80+
],
81+
82+
}
83+
})

docs/.vitepress/theme/index.ts

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// https://vitepress.dev/guide/custom-theme
2+
import { h } from 'vue'
3+
import type { Theme } from 'vitepress'
4+
import DefaultTheme from 'vitepress/theme'
5+
import './style.css'
6+
7+
export default {
8+
extends: DefaultTheme,
9+
Layout: () => {
10+
return h(DefaultTheme.Layout, null, {
11+
// https://vitepress.dev/guide/extending-default-theme#layout-slots
12+
})
13+
},
14+
enhanceApp({ app, router, siteData }) {
15+
// ...
16+
}
17+
} satisfies Theme

docs/.vitepress/theme/style.css

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
/**
2+
* Customize default theme styling by overriding CSS variables:
3+
* https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/styles/vars.css
4+
*/
5+
6+
/**
7+
* Colors
8+
*
9+
* Each colors have exact same color scale system with 3 levels of solid
10+
* colors with different brightness, and 1 soft color.
11+
*
12+
* - `XXX-1`: The most solid color used mainly for colored text. It must
13+
* satisfy the contrast ratio against when used on top of `XXX-soft`.
14+
*
15+
* - `XXX-2`: The color used mainly for hover state of the button.
16+
*
17+
* - `XXX-3`: The color for solid background, such as bg color of the button.
18+
* It must satisfy the contrast ratio with pure white (#ffffff) text on
19+
* top of it.
20+
*
21+
* - `XXX-soft`: The color used for subtle background such as custom container
22+
* or badges. It must satisfy the contrast ratio when putting `XXX-1` colors
23+
* on top of it.
24+
*
25+
* The soft color must be semi transparent alpha channel. This is crucial
26+
* because it allows adding multiple "soft" colors on top of each other
27+
* to create a accent, such as when having inline code block inside
28+
* custom containers.
29+
*
30+
* - `default`: The color used purely for subtle indication without any
31+
* special meanings attched to it such as bg color for menu hover state.
32+
*
33+
* - `brand`: Used for primary brand colors, such as link text, button with
34+
* brand theme, etc.
35+
*
36+
* - `tip`: Used to indicate useful information. The default theme uses the
37+
* brand color for this by default.
38+
*
39+
* - `warning`: Used to indicate warning to the users. Used in custom
40+
* container, badges, etc.
41+
*
42+
* - `danger`: Used to show error, or dangerous message to the users. Used
43+
* in custom container, badges, etc.
44+
* -------------------------------------------------------------------------- */
45+
46+
:root {
47+
--vp-c-default-1: var(--vp-c-gray-1);
48+
--vp-c-default-2: var(--vp-c-gray-2);
49+
--vp-c-default-3: var(--vp-c-gray-3);
50+
--vp-c-default-soft: var(--vp-c-gray-soft);
51+
52+
--vp-c-brand-1: #000000;
53+
--vp-c-brand-2: #202325;
54+
--vp-c-brand-3: #474c52;
55+
--vp-c-brand-soft: #484b4e3d;
56+
57+
--vp-c-tip-1: var(--vp-c-brand-1);
58+
--vp-c-tip-2: var(--vp-c-brand-2);
59+
--vp-c-tip-3: var(--vp-c-brand-3);
60+
--vp-c-tip-soft: var(--vp-c-brand-soft);
61+
62+
--vp-c-warning-1: var(--vp-c-yellow-1);
63+
--vp-c-warning-2: var(--vp-c-yellow-2);
64+
--vp-c-warning-3: var(--vp-c-yellow-3);
65+
--vp-c-warning-soft: #fff8d0;
66+
67+
--vp-c-danger-1: var(--vp-c-red-1);
68+
--vp-c-danger-2: var(--vp-c-red-2);
69+
--vp-c-danger-3: var(--vp-c-red-3);
70+
--vp-c-danger-soft: var(--vp-c-red-soft);
71+
}
72+
73+
/**
74+
* Component: Button
75+
* -------------------------------------------------------------------------- */
76+
77+
:root {
78+
--vp-button-brand-border: transparent;
79+
--vp-button-brand-text: var(--vp-c-white);
80+
--vp-button-brand-bg: var(--vp-c-brand-1);
81+
--vp-button-brand-hover-border: transparent;
82+
--vp-button-brand-hover-text: var(--vp-c-white);
83+
--vp-button-brand-hover-bg: var(--vp-c-brand-2);
84+
--vp-button-brand-active-border: transparent;
85+
--vp-button-brand-active-text: var(--vp-c-white);
86+
--vp-button-brand-active-bg: var(--vp-c-brand-1);
87+
}
88+
89+
/**
90+
* Component: Home
91+
* -------------------------------------------------------------------------- */
92+
93+
:root {
94+
--vp-home-hero-name-color: transparent;
95+
--vp-home-hero-name-background: var(--vp-c-brand-1);
96+
97+
--vp-home-hero-image-background-image: none;
98+
--vp-home-hero-image-filter: blur(44px);
99+
}
100+
101+
@media (min-width: 640px) {
102+
:root {
103+
--vp-home-hero-image-filter: blur(56px);
104+
}
105+
}
106+
107+
@media (min-width: 960px) {
108+
:root {
109+
--vp-home-hero-image-filter: blur(68px);
110+
}
111+
}
112+
113+
/**
114+
* Component: Custom Block
115+
* -------------------------------------------------------------------------- */
116+
117+
:root {
118+
--vp-custom-block-tip-border: transparent;
119+
--vp-custom-block-tip-text: var(--vp-c-text-1);
120+
--vp-custom-block-tip-bg: var(--vp-c-green-soft);
121+
--vp-custom-block-tip-code-bg: var(--vp-c-brand-soft);
122+
}
123+
124+
/**
125+
* Component: Algolia
126+
* -------------------------------------------------------------------------- */
127+
128+
.DocSearch {
129+
--docsearch-primary-color: var(--vp-c-brand-1) !important;
130+
}
131+
132+
html.dark {
133+
--vp-c-white: #0e0e0e;
134+
--vp-c-brand-1: #ffffff;
135+
--vp-c-brand-2: #dfdfdf;
136+
--vp-c-brand-3: #ADADAD;
137+
--vp-c-brand-soft: #c8c9ca3d;
138+
139+
--vp-c-warning-soft: #5c4b2c;
140+
}

docs/.vuepress/config.ts

-70
This file was deleted.

0 commit comments

Comments
 (0)