-
Notifications
You must be signed in to change notification settings - Fork 508
/
Copy path[...slug].js
520 lines (471 loc) · 16.1 KB
/
[...slug].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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
import fs from "fs";
import { join, basename } from "path";
import sortBy from "lodash/sortBy";
import React, { useState, useCallback } from "react";
import Link from "next/link";
import Head from "next/head";
import { serialize } from "next-mdx-remote/serialize";
import { MDXProvider } from "@mdx-js/react";
import { MDXRemote } from "next-mdx-remote";
import matter from "gray-matter";
import remarkUnwrapImages from "remark-unwrap-images";
import remarkGfm from "remark-gfm";
import classNames from "classnames";
import { useRouter } from "next/router";
import rehypeSlug from "rehype-slug";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
// Site Components
import CookieSettingsModal from "../components/utilities/cookieSettingsModal";
import GDPRBanner, {
setTelemetryPreference,
} from "../components/utilities/gdpr";
import {
getArticleSlugs,
getArticleSlugFromString,
pythonDirectory,
getMenu,
getGDPRBanner,
getCookieSettings,
} from "../lib/api";
import { getPreviousNextFromMenu } from "../lib/utils.js";
import useVersion from "../lib/useVersion.js";
import { useAppContext } from "../context/AppContext";
import Layout from "../components/layouts/globalTemplate";
import Footer from "../components/navigation/footer";
import BreadCrumbs from "../components/utilities/breadCrumbs";
import SideBar from "../components/navigation/sideBar";
import Masonry from "../components/layouts/masonry";
import TileContainer from "../components/layouts/tileContainer";
import DataSourcesContainer from "../components/layouts/dataSourcesContainer";
import InlineCalloutContainer from "../components/layouts/inlineCalloutContainer";
import ArrowLinkContainer from "../components/navigation/arrowLinkContainer";
import ArrowLink from "../components/navigation/arrowLink";
import Helpful from "../components/utilities/helpful";
import { H1, H2, H3 } from "../components/blocks/headers";
import Psa from "../components/utilities/psa";
import FloatingNav from "../components/utilities/floatingNav";
// MDX Components
import Autofunction from "../components/blocks/autofunction";
import Code from "../components/blocks/code";
import CodeTile from "../components/blocks/codeTile";
import Collapse from "../components/blocks/collapse";
import Download from "../components/utilities/download";
import Flex from "../components/layouts/flex";
import Image from "../components/blocks/image";
import Deprecation from "../components/blocks/deprecation";
import Important from "../components/blocks/important";
import Note from "../components/blocks/note";
import NoteSplit from "../components/blocks/noteSplit";
import RefCard from "../components/blocks/refCard";
import ComponentSlider from "../components/blocks/componentSlider";
import ComponentCard from "../components/blocks/componentCard";
import DataSourcesCard from "../components/blocks/dataSourcesCard";
import Tile from "../components/blocks/tile";
import InlineCallout from "../components/blocks/inlineCallout";
import Tip from "../components/blocks/tip";
import Warning from "../components/blocks/warning";
import YouTube from "../components/blocks/youTube";
import Cloud from "../components/blocks/cloud";
import SnowflakeTrial from "../components/blocks/snowflakeTrial";
import styles from "../components/layouts/container.module.css";
export default function Article({
data,
source,
streamlit,
slug,
menu,
currMenuItem,
prevMenuItem,
nextMenuItem,
versionFromStaticLoad,
versions,
filename,
}) {
let versionWarning;
let currentLink;
let suggestEditURL;
const { sourceFile } = useAppContext();
const [isTelemetryModalVisible, setIsTelemetryModalVisible] = useState(false);
const [isTelemetryBannerVisible, setIsTelemetryBannerVisible] =
useState(false);
const [insertTelemetryCode, setInsertTelemetryCode] = useState(false);
const router = useRouter();
const allowTelemetryAndCloseBanner = useCallback(() => {
setIsTelemetryBannerVisible(false);
setIsTelemetryModalVisible(false);
setInsertTelemetryCode(true);
setTelemetryPreference(true);
}, [isTelemetryBannerVisible, insertTelemetryCode]);
const declineTelemetryAndCloseBanner = useCallback(() => {
setIsTelemetryBannerVisible(false);
setIsTelemetryModalVisible(false);
setInsertTelemetryCode(false);
setTelemetryPreference(false);
// If previous state was true, and now it's false, reload the page to remove telemetry JS
if (insertTelemetryCode) router.reload();
}, [isTelemetryBannerVisible, insertTelemetryCode]);
suggestEditURL =
Object.keys(streamlit).length > 0 && sourceFile
? sourceFile
: "https://github.com/streamlit/docs/tree/main" +
filename.substring(filename.indexOf("/content/"));
const maxVersion = versions[versions.length - 1];
const version = useVersion(versionFromStaticLoad, versions, currMenuItem);
const components = {
Note,
NoteSplit,
Tip,
Deprecation,
Important,
Code,
Collapse,
Warning,
YouTube,
Cloud,
Masonry,
CodeTile,
InlineCalloutContainer,
InlineCallout,
TileContainer,
Tile,
RefCard,
ComponentCard,
ComponentSlider,
DataSourcesContainer,
DataSourcesCard,
Image,
Download,
Flex,
SnowflakeTrial,
Autofunction: (props) => (
<Autofunction
{...props}
streamlitFunction={props.function}
streamlit={streamlit}
version={version}
versions={versions}
slug={slug}
oldStreamlitFunction={props.oldName ?? ""}
/>
),
pre: (props) => <Code {...props} />,
h1: H1,
h2: H2,
h3: H3,
// iframe : WrappedIFrame
};
let previousArrow;
let nextArrow;
let arrowContainer;
let keywordsTag;
if (version && version != maxVersion && currMenuItem.isVersioned) {
// Slugs don't have the version number, so we just have to join them.
currentLink = `/${slug.join("/")}`;
versionWarning = (
<Warning>
{version && version.startsWith("SiS") ? (
<p>
You are reading the documentation for Streamlit in Snowflake. For
open-source Streamlit, version{" "}
<Link href={currentLink}>{maxVersion}</Link> is the latest version
available.
</p>
) : (
<p>
You are reading the documentation for Streamlit version {version},
but <Link href={currentLink}>{maxVersion}</Link> is the latest
version available.
</p>
)}
</Warning>
);
}
if (prevMenuItem) {
previousArrow = (
<ArrowLink
link={prevMenuItem.url}
type="back"
content={prevMenuItem.name}
/>
);
}
if (nextMenuItem) {
nextArrow = (
<ArrowLink
link={nextMenuItem.url}
type="next"
content={nextMenuItem.name}
/>
);
}
if (nextMenuItem || prevMenuItem) {
arrowContainer = (
<ArrowLinkContainer>
{previousArrow}
{nextArrow}
</ArrowLinkContainer>
);
}
if (data.keywords) {
keywordsTag = <meta name="keywords" content={data.keywords} />;
}
return (
<MDXProvider
components={{
// Override some default Markdown components.
img: Image,
}}
>
<Layout>
{isTelemetryModalVisible && (
<CookieSettingsModal
setIsTelemetryModalVisible={setIsTelemetryModalVisible}
allowTelemetryAndCloseBanner={allowTelemetryAndCloseBanner}
declineTelemetryAndCloseBanner={declineTelemetryAndCloseBanner}
/>
)}
<GDPRBanner
isTelemetryModalVisible={isTelemetryModalVisible}
setIsTelemetryModalVisible={setIsTelemetryModalVisible}
isTelemetryBannerVisible={isTelemetryBannerVisible}
setIsTelemetryBannerVisible={setIsTelemetryBannerVisible}
insertTelemetryCode={insertTelemetryCode}
setInsertTelemetryCode={setInsertTelemetryCode}
allowTelemetryAndCloseBanner={allowTelemetryAndCloseBanner}
declineTelemetryAndCloseBanner={declineTelemetryAndCloseBanner}
/>
<section className={styles.Container}>
<SideBar slug={slug} menu={menu} />
<Head>
<title>{data.title + " - Streamlit Docs"}</title>
<link rel="icon" href="/favicon.svg" />
<link rel="alternate icon" href="/favicon32.ico" />
<meta name="theme-color" content="#ffffff" />
{keywordsTag}
{version ? (
<link
rel="canonical"
href={`https://${process.env.NEXT_PUBLIC_HOSTNAME}/${slug
.slice(1)
.join("/")}`}
/>
) : (
<link
rel="canonical"
href={`https://${process.env.NEXT_PUBLIC_HOSTNAME}/${slug.join(
"/",
)}`}
/>
)}
<meta
content={`${data.title} - Streamlit Docs`}
property="og:title"
/>
<meta
content={`${data.title} - Streamlit Docs`}
name="twitter:title"
/>
{data.description && (
<React.Fragment>
<meta content={data.description} name="description" />
<meta content={data.description} property="og:description" />
<meta content={data.description} name="twitter:description" />
</React.Fragment>
)}
<meta property="og:type" content="website" />
<meta property="og:url" content="https://docs.streamlit.io/" />
<meta content="summary_large_image" name="twitter:card" />
<meta
property="og:image"
content={`https://${process.env.NEXT_PUBLIC_HOSTNAME}/sharing-image-facebook.jpg`}
/>
<meta
name="twitter:image"
content={`https://${process.env.NEXT_PUBLIC_HOSTNAME}/sharing-image-twitter.jpg`}
/>
</Head>
<section className={styles.InnerContainer} id="documentation">
{versionWarning}
<BreadCrumbs slug={slug} menu={menu} version={version} />
<article
id="content-container"
className={classNames("leaf-page", styles.ArticleContainer)}
>
<FloatingNav slug={slug} menu={menu} version={version} />
<div className={classNames("content", styles.ContentContainer)}>
<MDXRemote {...source} components={components} />
{arrowContainer}
<Psa />
{/*<Helpful slug={slug} sourcefile={suggestEditURL} />*/}
</div>
</article>
</section>
<Footer setIsTelemetryModalVisible={setIsTelemetryModalVisible} />
</section>
</Layout>
</MDXProvider>
);
}
export async function getStaticProps(context) {
const paths = await getStaticPaths();
const props = {};
let location = `/${context.params.slug.join("/")}`;
// Sort of documentation versions
const jsonContents = fs.readFileSync(
join(pythonDirectory, "streamlit.json"),
"utf8",
);
const streamlitFuncs = jsonContents ? JSON.parse(jsonContents) : {};
const all_versions = Object.keys(streamlitFuncs);
const versions = sortBy(all_versions, [
(o) => {
const numericPart = parseInt(o, 10);
return isNaN(numericPart) ? Number.NEGATIVE_INFINITY : numericPart;
},
]);
const current_version = versions[versions.length - 1];
const funcs = jsonContents ? JSON.parse(jsonContents) : {};
const menu = getMenu();
props["streamlit"] = {};
props["versions"] = all_versions;
props["versionFromStaticLoad"] = null;
if ("slug" in context.params) {
let filename;
paths.paths.forEach((obj) => {
if (obj.params.location == location) {
filename = obj.params.fileName;
}
});
// Get the last element of the array to find the MD file
const fileContents = fs.readFileSync(filename, "utf8");
const { data, content } = matter(fileContents);
const should_version = /<Autofunction(.*?)\/>/gi.test(fileContents);
if (should_version) {
props["streamlit"] = funcs[current_version];
}
const isnum = /^[\d\.]+$/.test(context.params.slug[0]);
const isSiS = /^SiS[\d\.]*$/.test(context.params.slug[0]);
if (isnum || isSiS) {
props["versionFromStaticLoad"] = context.params.slug[0];
props["streamlit"] = funcs[props["versionFromStaticLoad"]];
location = `/${context.params.slug.slice(1).join("/")}`;
}
const source = await serialize(content, {
scope: data,
mdxOptions: {
rehypePlugins: [rehypeSlug, rehypeAutolinkHeadings],
remarkPlugins: [remarkUnwrapImages, remarkGfm],
},
});
const { current, prev, next } = getPreviousNextFromMenu(menu, location);
// Determine which previous/next links we should be using, the override option coming from the markdown file (if it exists),
// or the one that gets generated automatically above by calling getPreviousNextFromMenu
let prevMenuItem;
if (data.previousLink && data.previousTitle) {
prevMenuItem = {
name: data.previousTitle,
url: data.previousLink,
};
} else {
prevMenuItem = prev;
}
let nextMenuItem;
if (data.nextLink && data.nextTitle) {
nextMenuItem = {
name: data.nextTitle,
url: data.nextLink,
};
} else {
nextMenuItem = next;
}
props["menu"] = menu;
props["data"] = data;
props["filename"] = filename;
props["slug"] = context.params.slug;
props["source"] = source;
props["currMenuItem"] = current
? {
name: current.name,
url: current.url,
isVersioned: !!current.isVersioned,
}
: null;
props["prevMenuItem"] = prevMenuItem ? prevMenuItem : null;
props["nextMenuItem"] = nextMenuItem ? nextMenuItem : null;
}
return {
props: props,
};
}
export async function getStaticPaths() {
// Build up paths based on slugified categories for all docs
const articles = getArticleSlugs();
const paths = [];
// Sort of documentation versions
const jsonContents = fs.readFileSync(
join(pythonDirectory, "streamlit.json"),
"utf8",
);
const streamlitFuncs = jsonContents ? JSON.parse(jsonContents) : {};
const all_versions = Object.keys(streamlitFuncs);
const versions = sortBy(all_versions, [
(o) => {
const numericPart = parseInt(o, 10);
return isNaN(numericPart) ? Number.NEGATIVE_INFINITY : numericPart;
},
]);
const current_version = versions[versions.length - 1];
// Load each file and map a path
for (const index in articles) {
let slug = basename(articles[index]).replace(/\.md$/, "");
let realSlug = [slug];
slug = `/${slug}`;
const fileContents = fs.readFileSync(articles[index], "utf8");
const { data, content } = matter(fileContents);
// Use slug instead of Category if it's present
if ("slug" in data) {
slug = data.slug;
realSlug = data.slug.split("/").map(getArticleSlugFromString);
realSlug.shift();
}
let path = {
params: {
slug: realSlug,
location: slug,
fileName: articles[index],
title: data.title ? data.title : "Untitled",
description: data.description ? data.description : "",
},
};
paths.push(path);
// If the file uses Autofunction, we need to version it.
// Major versions only --TO DO--
const should_version = /<Autofunction(.*?)\/>/gi.test(fileContents);
if (!should_version) {
continue;
}
for (const v_index in versions) {
const version = versions[v_index];
if (version == current_version) {
continue;
}
const versioned_location = `/${version}${slug}`;
const newSlug = [...realSlug];
newSlug.unshift(version);
path = {
params: {
slug: newSlug,
location: versioned_location,
fileName: articles[index],
title: data.title ? data.title : "Untitled",
description: data.description ? data.description : "",
},
};
paths.push(path);
}
}
return {
paths: paths,
fallback: false,
};
}