-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
313 lines (295 loc) · 10.3 KB
/
docusaurus.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
// @ts-check
const lightCodeTheme = require("prism-react-renderer/themes/github");
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
const validDocs = findValidDocsAndReturnIDsArray();
console.log("Valid docs folders found: ", validDocs);
function mapValidPluginsToContentDocs(docs) {
return docs.map((id) => {
return getPluginContentDocs(id);
});
}
function mapValidPluginsToDropDownVersions(docs) {
return docs.map((id) => {
return getPluginDropDownVersions(id);
});
}
const OrgName = "interchainio";
const ProjectName = "dev-portal-docsite";
// The default slug URL for the docs site. Github Pages requires a base URL to be set
// to the name of the repository. The action sets IS_GH_PAGES to true if deploying to Github Pages.
var baseURL = "/"
if (process.env.IS_GH_PAGES) {
baseURL = `/${ProjectName}/`
}
/** @type {import('@docusaurus/types').ReportingSeverity} */
var reportSeverity = "warn";
if (process.env.THROW_ON_BROKEN_LINKS) {
reportSeverity = "throw";
}
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Interchain Stack",
tagline: "Your gateway into your Interchain future",
url: "https://docs-interchain.io", // TODO: docs.interchain.io
baseUrl: baseURL,
onBrokenLinks: reportSeverity,
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.ico",
organizationName: OrgName,
projectName: ProjectName,
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
// removes required default docs/ folder for the project. This project uses nested so it is not required.
docs: false,
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
}),
],
],
plugins: [
// !NOTE: docusaurus/plugin-client-redirects does not work with this version of docusaurus. Check src/theme/NotFound.js for a workaround
...mapValidPluginsToContentDocs(validDocs),
[
// requires cheerio 1.0.0-rc.12, 1.0.0 is API breaking; https://github.com/cmfcmf/docusaurus-search-local/pull/218
require.resolve("@cmfcmf/docusaurus-search-local"),
{
indexDocs: true,
indexBlog: false,
},
],
[
'@docusaurus/plugin-sitemap',
{
id: 'sitemap',
changefreq: 'weekly',
priority: 0.5,
ignorePatterns: ['/tags/**'],
filename: 'sitemap.xml',
},
],
// [
// "@gracefullight/docusaurus-plugin-microsoft-clarity",
// { projectId: "of10fgfl3n" }, // TODO: change to proper project ID @ clarity.microsoft.com
// ],
async function myPlugin(context, options) {
return {
name: "docusaurus-tailwindcss",
configurePostCss(postcssOptions) {
postcssOptions.plugins.push(require("postcss-import"));
postcssOptions.plugins.push(require("tailwindcss/nesting"));
postcssOptions.plugins.push(require("tailwindcss"));
postcssOptions.plugins.push(require("autoprefixer"));
return postcssOptions;
},
};
},
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
announcementBar: {
id: 'in_progress_website',
content:
'The Interchain Stack Docsite is in MVP state; please submit comments with the feedback button. The Ask AI button is also very powerful.',
backgroundColor: '#20232a',
textColor: '#fff',
isCloseable: true,
},
navbar: {
logo: {
alt: "Interchain Docs",
src: "img/interchain_logo.svg",
href: "/",
},
items: [
// new items require updating:
{
position: "left",
to: "/onboarding",
label: "Onboarding",
},
{
to: "/ibc-go", // To highlight the navbar item, you must link to a document, not a top-level directory
position: "left",
label: "IBC-Go",
activeBaseRegex: `/ibc-go/`,
},
{
to: "/cosmos-sdk/learn",
position: "left",
label: "CosmosSDK",
activeBaseRegex: `/cosmos-sdk/`,
},
{
// TODO:
// to: '/cometbft',
to: 'https://docs.cometbft.com/',
position: 'left',
label: 'CometBFT',
activeBaseRegex: `/cometbft/`,
},
{
// TODO:
// to: '/cosmwasm',
to: 'https://docs.cosmwasm.com/',
position: 'left',
label: 'CosmWasm',
activeBaseRegex: `/cosmwasm/`,
},
// Version drop downs are merged via the theme/NavBarItem/DocsVersionDropdownNavbarItem.js
...mapValidPluginsToDropDownVersions(validDocs),
{
href: `https://github.com/${OrgName}/${ProjectName}`,
html: `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="github-icon">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 0.300049C5.4 0.300049 0 5.70005 0 12.3001C0 17.6001 3.4 22.1001 8.2 23.7001C8.8 23.8001 9 23.4001 9 23.1001C9 22.8001 9 22.1001 9 21.1001C5.7 21.8001 5 19.5001 5 19.5001C4.5 18.1001 3.7 17.7001 3.7 17.7001C2.5 17.0001 3.7 17.0001 3.7 17.0001C4.9 17.1001 5.5 18.2001 5.5 18.2001C6.6 20.0001 8.3 19.5001 9 19.2001C9.1 18.4001 9.4 17.9001 9.8 17.6001C7.1 17.3001 4.3 16.3001 4.3 11.7001C4.3 10.4001 4.8 9.30005 5.5 8.50005C5.5 8.10005 5 6.90005 5.7 5.30005C5.7 5.30005 6.7 5.00005 9 6.50005C10 6.20005 11 6.10005 12 6.10005C13 6.10005 14 6.20005 15 6.50005C17.3 4.90005 18.3 5.30005 18.3 5.30005C19 7.00005 18.5 8.20005 18.4 8.50005C19.2 9.30005 19.6 10.4001 19.6 11.7001C19.6 16.3001 16.8 17.3001 14.1 17.6001C14.5 18.0001 14.9 18.7001 14.9 19.8001C14.9 21.4001 14.9 22.7001 14.9 23.1001C14.9 23.4001 15.1 23.8001 15.7 23.7001C20.5 22.1001 23.9 17.6001 23.9 12.3001C24 5.70005 18.6 0.300049 12 0.300049Z" fill="currentColor"/>
</svg>
`,
position: "right",
},
],
},
footer: {
links: [
{},
// {
// items: [
// {
// html: `<a href="https://github.com/cosmos"><img src="/img/cosmossdk-brandmark.svg" alt="Cosmos-SDK"></a>`,
// },
// {
// html: `<a href="https://github.com/cosmos/ibc-go"><img src="/img/ibc-brandmark.svg" alt="IBC-Go"></a>`,
// },
// ],
// },
{
title: "Stack Components",
items: [
{
label: "IBC-Go",
href: "https://github.com/cosmos/ibc-go",
},
{
label: "CosmosSDK",
href: "https://github.com/cosmos/cosmos-sdk",
},
{
label: "CometBFT",
href: "https://github.com/cometbft/cometbft",
},
{
label: "CosmWasm",
href: "https://github.com/CosmWasm/cosmwasm",
},
{
label: "Go Relayer",
href: "https://github.com/cosmos/relayer",
},
{
label: "Hermes Relayer",
href: "https://hermes.informal.systems/",
},
{
label: "IBC-rs",
href: "https://github.com/cosmos/ibc-rs",
},
{
label: "Interchaintest",
href: "https://github.com/strangelove-ventures/interchaintest",
},
],
},
{
title: "Community",
items: [
{
label: "Discord",
href: "https://discord.com/invite/interchain",
},
{
label: "Twitter",
href: "https://twitter.com/interchain_io",
},
{
label: "YouTube",
href: "https://www.youtube.com/@interchain_io",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "https://interchain.io/privacy",
},
],
},
],
copyright: `© ${new Date().getFullYear()} <a href="https://interchain.io/">Interchain Foundation</a>. All rights reserved.`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
}),
scripts: [
{
src: "https://widget.kapa.ai/kapa-widget.bundle.js",
"data-website-id": "be413c15-3002-497e-9e30-676ea0039a9e",
"data-project-name": "InterchainStack",
"data-project-color": "#FFFFFF",
"data-button-text-color": "#000",
"data-submit-query-button-bg-color": "#000000",
"data-modal-disclaimer": "InterchainGPT is a fine-tuned LLM for the Interchain with access to Interchain Stack developer documentation and resources. Please note that answers are generated by an AI so please use your best judgement before implementing",
"data-modal-image":
"img/spirograph.svg",
"data-project-logo":
"img/spirograph.svg",
"data-user-analytics-fingerprint-enabled": "true",
async: true,
},
]
};
function getPluginContentDocs(id) {
return [
"@docusaurus/plugin-content-docs",
{
id: id,
path: id, // must match: plugin-id
routeBasePath: id, // must match: plugin-id
sidebarPath: require.resolve(`./${id}/sidebars.js`),
exclude: ["**/*.template.md"],
},
];
}
function getPluginDropDownVersions(id) {
return {
type: "docsVersionDropdown",
docsPluginId: id, // must match: plugin-id and the url slug (www.com/ibc-go)
position: "right",
dropdownActiveClassDisabled: true,
};
}
function findValidDocsAndReturnIDsArray() {
const fs = require("fs");
const path = require("path");
const dirs = fs.readdirSync("./");
const validDocs = [];
dirs.forEach((dir) => {
if (
fs.existsSync(path.join(dir, "sidebars.js")) &&
fs.existsSync(path.join(dir, "docs"))
) {
if (dir.startsWith("dsource-")) {
return;
}
validDocs.push(dir);
}
});
return validDocs;
}
module.exports = config;