-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.config.js
160 lines (148 loc) · 4.5 KB
/
theme.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import { useState, useEffect } from "react";
import { useRouter } from "next/router";
import { useConfig, useTheme } from "nextra-theme-docs";
import { Footer } from "./components/Footer";
import Navigation from "./components/Navigation";
import HeaderLogo from "./components/HeaderLogo";
import { Discord, Github } from "./components/Social";
const SITE_ROOT = "https://turbo.build";
/**
* @type {import('nextra-theme-docs').DocsThemeConfig}
*/
const theme = {
project: {
icon: Github,
},
chat: {
icon: Discord,
},
docsRepositoryBase: "https://github.com/cn-turbo/docs",
getNextSeoProps: function SEO() {
const router = useRouter();
const { frontMatter } = useConfig();
let section = "Turbo";
if (router?.pathname.startsWith("/pack")) {
section = "Turbopack";
}
if (router?.pathname.startsWith("/repo")) {
section = "Turborepo";
}
const defaultTitle = frontMatter.overrideTitle || section;
return {
description: frontMatter.description,
defaultTitle,
titleTemplate: `%s – ${section}`,
};
},
gitTimestamp({ timestamp }) {
// eslint-disable-next-line react-hooks/rules-of-hooks
const [dateString, setDateString] = useState(timestamp.toISOString());
// eslint-disable-next-line react-hooks/rules-of-hooks
useEffect(() => {
setDateString(
timestamp.toLocaleDateString(navigator.language, {
day: "numeric",
month: "long",
year: "numeric",
})
);
}, [timestamp]);
return <>编辑时间:{dateString}</>;
},
unstable_flexsearch: true,
unstable_staticImage: true,
toc: {
float: true,
},
font: false,
feedback: {
link: "Question? Give us feedback →",
},
logo: HeaderLogo,
logoLink: false,
head: function Head() {
const router = useRouter();
const { systemTheme = "dark" } = useTheme();
const { frontMatter } = useConfig();
const fullUrl =
router.asPath === "/" ? SITE_ROOT : `${SITE_ROOT}${router.asPath}`;
const asPath = router.asPath;
let ogUrl;
if (asPath === "/") {
ogUrl = `${SITE_ROOT}/api/og`;
} else if (frontMatter?.ogImage) {
ogUrl = `${SITE_ROOT}${frontMatter.ogImage}`;
} else {
const type = asPath.startsWith("/repo")
? "repo"
: asPath.startsWith("/pack")
? "pack"
: "";
const title = frontMatter.title
? `&title=${encodeURIComponent(frontMatter.title)}`
: "";
ogUrl = `${SITE_ROOT}/api/og?type=${type}${title}`;
}
return (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="apple-touch-icon"
sizes="180x180"
href={`/images/favicon-${systemTheme}/apple-touch-icon.png`}
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href={`/images/favicon-${systemTheme}/favicon-32x32.png`}
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href={`/images/favicon-${systemTheme}/favicon-16x16.png`}
/>
<link
rel="mask-icon"
href={`/images/favicon-${systemTheme}/safari-pinned-tab.svg`}
color="#000000"
/>
<link
rel="shortcut icon"
href={`/images/favicon-${systemTheme}/favicon.ico`}
/>
<meta name="msapplication-TileColor" content="#000000" />
<meta name="theme-color" content="#000" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@turborepo" />
<meta name="twitter:creator" content="@turborepo" />
<meta property="og:type" content="website" />
<meta property="og:url" content={fullUrl} />
<link rel="canonical" href={fullUrl} />
<meta property="twitter:image" content={ogUrl} />
<meta property="og:image" content={ogUrl} />
<meta property="og:locale" content="en_IE" />
<meta property="og:site_name" content="Turbo" />
<link rel="prefetch" href="/repo" as="document" />
<link rel="prefetch" href="/repo/docs" as="document" />
<link rel="prefetch" href="/pack" as="document" />
<link rel="prefetch" href="/pack/docs" as="document" />
</>
);
},
editLink: {
text: "在 GitHub 上编辑本页",
},
navbar: Navigation,
search: {
placeholder: "搜索文档",
},
footer: {
component: Footer,
},
nextThemes: {
defaultTheme: "dark",
},
};
export default theme;