-
Notifications
You must be signed in to change notification settings - Fork 508
/
Copy pathindex.js
300 lines (269 loc) · 13.2 KB
/
index.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
import React, { useState, useCallback } from "react";
import Head from "next/head";
import { useRouter } from "next/router";
import { getMenu } from "../lib/api";
import Layout from "../components/layouts/globalTemplate";
import Footer from "../components/navigation/footer";
import SideBar from "../components/navigation/sideBar";
import ArrowLinkContainer from "../components/navigation/arrowLinkContainer";
import ArrowLink from "../components/navigation/arrowLink";
import GDPRBanner, {
setTelemetryPreference,
} from "../components/utilities/gdpr";
import CookieSettingsModal from "../components/utilities/cookieSettingsModal";
import SocialCallouts from "../components/utilities/socialCallout";
import Spacer from "../components/utilities/spacer";
import SummaryTiles from "../components/summaryTiles";
import NewsContainer from "../components/layouts/newsContainer";
import InlineCalloutContainer from "../components/layouts/inlineCalloutContainer";
import TileContainer from "../components/layouts/tileContainer";
import RefCard from "../components/blocks/refCard";
import { H1, H2 } from "../components/blocks/headers";
import NewsFeed from "../components/blocks/newsFeed";
import Button from "../components/blocks/button";
import InlineCallout from "../components/blocks/inlineCallout";
import NoteSplit from "../components/blocks/noteSplit";
import { attributes } from "../content/index.md";
import styles from "../components/layouts/container.module.css";
export default function Home({ window, menu }) {
let { description } = attributes;
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]);
return (
<Layout window={window}>
<Head>
<title>Streamlit documentation</title>
<link rel="icon" href="/favicon.svg" />
<link rel="alternate icon" href="/favicon32.ico" />
<meta name="theme-color" content="#ffffff" />
<link
rel="canonical"
href={`https://${process.env.NEXT_PUBLIC_HOSTNAME}`}
/>
<meta content="Streamlit Docs" property="og:title" />
<meta content="Streamlit Docs" name="twitter:title" />
{description && (
<React.Fragment>
<meta content={description} name="description" />
<meta content={description} property="og:description" />
<meta content={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>
{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 menu={menu} slug={[]} />
<section className={styles.InnerContainer}>
<article>
<H1>Streamlit documentation</H1>
<p>
<a href="https://www.streamlit.io">Streamlit</a> is an open-source
Python framework for data scientists and AI/ML engineers to
deliver dynamic data apps with only a few lines of code. Build and
deploy powerful data apps in minutes. Let's get started!
</p>
<Spacer size="2rem" />
<SummaryTiles />
{/* <H2 className='no-b-m'>What's new</H2>
<TileContainer>
<Tile size="half" background="unset" color="unset" dark={{ background: "unset", color: 'white', border_color: 'gray-90' }} border_color="gray-40" img="/logo.svg" title="Feature title" text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Eleifend a facilisis sagittis, vitae nibh massa in facilisis et. Pretium eget non cursus purus tempus porta sodales." link="/tutorials/get-started" />
<Tile size="half" background="unset" color="unset" dark={{ background: "unset", color: 'white', border_color: 'gray-90' }} border_color="gray-40" icon="visibility" title="Feature title" text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Eleifend a facilisis sagittis, vitae nibh massa in facilisis et. Pretium eget non cursus purus tempus porta sodales." link="/tutorials/get-started" />
<Tile size="half" background="unset" color="unset" dark={{ background: "unset", color: 'white', border_color: 'gray-90' }} border_color="gray-40" icon="edit" title="Feature title" text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Eleifend a facilisis sagittis, vitae nibh massa in facilisis et. Pretium eget non cursus purus tempus porta sodales." link="/tutorials/get-started" />
<Tile size="half" background="unset" color="unset" dark={{ background: "unset", color: 'white', border_color: 'gray-90' }} border_color="gray-40" img="/logo.svg" title="Feature title" text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Eleifend a facilisis sagittis, vitae nibh massa in facilisis et. Pretium eget non cursus purus tempus porta sodales." link="/tutorials/get-started" />
</TileContainer> */}
<H2>How to use our docs</H2>
<InlineCalloutContainer>
<InlineCallout
color="orange-70"
icon="rocket_launch"
bold="Get started"
href="/get-started"
>
with Streamlit! Set up your development environment and learn
the fundamental concepts, and start coding!
</InlineCallout>
<InlineCallout
color="indigo-70"
icon="description"
bold="Develop"
href="/develop"
>
your Streamlit app! Our API reference explains each Streamlit
function with examples. Dive deep into all of our features with
conceptual guides. Try out our step-by-step tutorials.
</InlineCallout>
<InlineCallout
color="lightBlue-70"
icon="cloud"
bold="Deploy"
href="/deploy"
>
your Streamlit app! Streamlit Community Cloud our free platform
for deploying and sharing Streamlit apps. Streamlit in Snowflake
is an enterprise-class solution where you can house your data
and apps in one, unified, global system. Explore all your
options!
</InlineCallout>
<InlineCallout
color="darkBlue-70"
icon="school"
bold="Knowledge base"
href="/knowledge-base"
>
is a self-serve library of tips, tricks, and articles that
answer your questions about creating and deploying Streamlit
apps.
</InlineCallout>
{/* <InlineCallout color="green-70" icon="code" bold="Cookbook" href="/cookbook">
provides short code snippets that you can copy in for specific use cases.
</InlineCallout>
<InlineCallout color="red-70" icon="question_answer" bold="Support" href="/support">
are the bread and butter of how our APIs and configuration files work and will give you short, actionable explanations of specific functions and features.
</InlineCallout> */}
</InlineCalloutContainer>
<H2 className="no-b-m">What's new</H2>
<TileContainer>
<RefCard
size="third"
href="/develop/api-reference/configuration/config.toml#theme"
>
<i className="material-icons-sharp">dark_mode</i>
<h4>Advanced theming</h4>
<p>
Streamlit added a greater variety of theme configuration
options in <code>config.toml</code>, including support for
custom fonts!
</p>
</RefCard>
<RefCard size="third" href="/develop/api-reference/text/st.badge">
<i className="material-icons-sharp">badge</i>
<h4>Colored badges</h4>
<p>
Streamlit has a new Markdown directive,{" "}
<code>:color-badge[]</code>, and a new command,{" "}
<code>st.badge</code>.
</p>
</RefCard>
<RefCard size="third" href="/develop/api-reference/cli/init">
<i className="material-icons-sharp">auto_fix_high</i>
<h4>Streamlit init</h4>
<p>
Streamlit's CLI tool has a new <code>streamlit init</code>{" "}
command to create files to start you next Streamlit project.
</p>
</RefCard>
<RefCard
size="third"
href="/develop/api-reference/caching-and-state/st.context#contextlocale"
>
<i className="material-icons-sharp">language</i>
<h4>User locale</h4>
<p>
<code>st.context</code> lets you read the user's locale.
</p>
</RefCard>
<RefCard
size="third"
href="/develop/api-reference/status/st.exception"
>
<i className="material-icons-sharp">manage_search</i>
<h4>Chat and search links</h4>
<p>
<code>st.exception</code> includes links to Google and ChatGPT
that are prefilled with its error message.
</p>
</RefCard>
<RefCard
size="third"
href="/develop/api-reference/chat/st.chat_input"
>
<i className="material-icons-sharp">attach_file</i>
<h4>
File uploader for <code>st.chat_input</code>
</h4>
<p>
User's can upload files directly within
<code>st.chat_input</code>!
</p>
</RefCard>
</TileContainer>
<H2 className="no-b-m">Latest blog posts</H2>
<NewsContainer>
<NewsFeed />
<Button link="https://blog.streamlit.io/" target="_blank">
View all updates
</Button>
</NewsContainer>
<NoteSplit
background="gray-20"
title="Join the community"
copy="Streamlit is more than just a way to make data apps, it's also a community of creators that share their apps and ideas and help each other make their work better. Please come join us on the community forum. We love to hear your questions, ideas, and help you work through your bugs — stop by today!"
button={{
text: "View forum",
link: "https://discuss.streamlit.io",
target: "_blank",
}}
image="/join.png"
/>
</article>
<SocialCallouts />
<ArrowLinkContainer>
<ArrowLink link="/get-started" type="next" content="Get started" />
</ArrowLinkContainer>
</section>
<Footer setIsTelemetryModalVisible={setIsTelemetryModalVisible} />
</section>
</Layout>
);
}
export async function getStaticProps(context) {
const props = {};
props["menu"] = getMenu();
return {
props: props,
};
}