-
Notifications
You must be signed in to change notification settings - Fork 296
/
Copy pathMDXComponents.tsx
394 lines (375 loc) · 9.75 KB
/
MDXComponents.tsx
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
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*/
import * as React from 'react';
import cn from 'classnames';
import CodeBlock from './CodeBlock';
import {CodeDiagram} from './CodeDiagram';
import ConsoleBlock from './ConsoleBlock';
import Convention from './Convention';
import ExpandableCallout from './ExpandableCallout';
import ExpandableExample from './ExpandableExample';
import {H1, H2, H3, H4} from './Heading';
import HomepageHero from './HomepageHero';
import InlineCode from './InlineCode';
import Intro from './Intro';
import Link from './Link';
import {PackageImport} from './PackageImport';
import Recap from './Recap';
import Sandpack from './Sandpack';
import Diagram from './Diagram';
import DiagramGroup from './DiagramGroup';
import SimpleCallout from './SimpleCallout';
import TerminalBlock from './TerminalBlock';
import YouWillLearnCard from './YouWillLearnCard';
import {Challenges, Hint, Solution} from './Challenges';
import {IconNavArrow} from '../Icon/IconNavArrow';
import ButtonLink from 'components/ButtonLink';
function CodeStep({children, step}: {children: any; step: number}) {
return (
<span
data-step={step}
className={cn(
'code-step bg-opacity-10 dark:bg-opacity-20 relative rounded px-[6px] py-[1.5px] border-b-[2px] border-opacity-60',
{
'bg-blue-40 border-blue-40': step === 1,
'bg-yellow-40 border-yellow-40': step === 2,
'bg-green-40 border-green-40': step === 3,
'bg-purple-40 border-purple-40': step === 4,
}
)}>
{children}
</span>
);
}
const P = (p: JSX.IntrinsicElements['p']) => (
<p className="whitespace-pre-wrap my-4" {...p} />
);
const Strong = (strong: JSX.IntrinsicElements['strong']) => (
<strong className="font-bold" {...strong} />
);
const OL = (p: JSX.IntrinsicElements['ol']) => (
<ol className="ml-6 my-3 list-decimal" {...p} />
);
const LI = (p: JSX.IntrinsicElements['li']) => (
<li className="leading-relaxed mb-1" {...p} />
);
const UL = (p: JSX.IntrinsicElements['ul']) => (
<ul className="ml-6 my-3 list-disc" {...p} />
);
const Divider = () => (
<hr className="my-6 block border-b border-border dark:border-border-dark" />
);
const Gotcha = ({children}: {children: React.ReactNode}) => (
<ExpandableCallout type="gotcha">{children}</ExpandableCallout>
);
const Note = ({children}: {children: React.ReactNode}) => (
<ExpandableCallout type="note">{children}</ExpandableCallout>
);
const Blockquote = ({
children,
...props
}: JSX.IntrinsicElements['blockquote']) => {
return (
<>
<blockquote
className="mdx-blockquote py-4 px-8 my-8 shadow-inner bg-highlight dark:bg-highlight-dark bg-opacity-50 rounded-lg leading-6 flex relative"
{...props}>
<span className="block relative">{children}</span>
</blockquote>
<style jsx global>{`
.mdx-blockquote > span > p:first-of-type {
margin-bottom: 0;
}
.mdx-blockquote > span > p:last-of-type {
margin-bottom: 1rem;
}
`}</style>
</>
);
};
function LearnMore({
children,
path,
}: {
title: string;
path?: string;
children: any;
}) {
return (
<>
<section className="p-8 mt-16 mb-16 flex flex-row shadow-inner justify-between items-center bg-card dark:bg-card-dark rounded-lg">
<div className="flex-col">
<h2 className="text-primary dark:text-primary-dark font-bold text-2xl leading-tight">
Ready to learn this topic?
</h2>
{children}
{path ? (
<ButtonLink
className="mt-1"
label="Read More"
href={path}
type="primary">
Read More
<IconNavArrow displayDirection="right" className="inline ml-1" />
</ButtonLink>
) : null}
</div>
</section>
<hr className="border-border dark:border-border-dark mb-14" />
</>
);
}
function Math({children}: {children: any}) {
return (
<span
style={{
fontFamily: 'STIXGeneral-Regular, Georgia, serif',
fontSize: '1.2rem',
}}>
{children}
</span>
);
}
function MathI({children}: {children: any}) {
return (
<span
style={{
fontFamily: 'STIXGeneral-Italic, Georgia, serif',
fontSize: '1.2rem',
}}>
{children}
</span>
);
}
function YouWillLearn({
children,
isChapter,
}: {
children: any;
isChapter?: boolean;
}) {
let title = isChapter ? 'En este capítulo' : 'Aprenderás';
return <SimpleCallout title={title}>{children}</SimpleCallout>;
}
// TODO: typing.
function Recipes(props: any) {
return <Challenges {...props} isRecipes={true} />;
}
function AuthorCredit({
author,
authorLink,
}: {
author: string;
authorLink: string;
}) {
return (
<p className="text-center text-secondary dark:text-secondary-dark text-base mt-2">
<cite>
Illustrated by{' '}
{authorLink ? (
<a className="text-link dark:text-link-dark" href={authorLink}>
{author}
</a>
) : (
author
)}
</cite>
</p>
);
}
function Illustration({
caption,
src,
alt,
author,
authorLink,
}: {
caption: string;
src: string;
alt: string;
author: string;
authorLink: string;
}) {
return (
<div className="my-16 mx-0 2xl:mx-auto max-w-4xl 2xl:max-w-6xl">
<figure className="my-8 flex justify-center">
<img
src={src}
alt={alt}
style={{maxHeight: 300}}
className="bg-white rounded-lg"
/>
{caption ? (
<figcaption className="text-center leading-tight mt-4">
{caption}
</figcaption>
) : null}
</figure>
{author ? <AuthorCredit author={author} authorLink={authorLink} /> : null}
</div>
);
}
function IllustrationBlock({
title,
sequential,
author,
authorLink,
children,
}: {
title: string;
author: string;
authorLink: string;
sequential: boolean;
children: any;
}) {
const imageInfos = React.Children.toArray(children).map(
(child: any) => child.props
);
const images = imageInfos.map((info, index) => (
<figure key={index}>
<div className="bg-white rounded-lg p-4 flex-1 flex xl:p-6 justify-center items-center my-4">
<img src={info.src} alt={info.alt} height={info.height} />
</div>
{info.caption ? (
<figcaption className="text-secondary dark:text-secondary-dark text-center leading-tight mt-4">
{info.caption}
</figcaption>
) : null}
</figure>
));
return (
<div className="my-16 mx-0 2xl:mx-auto max-w-4xl 2xl:max-w-6xl">
{title ? (
<h3 className="text-center text-xl font-bold leading-9 mb-4">
{title}
</h3>
) : null}
{sequential ? (
<ol className="mdx-illustration-block flex">
{images.map((x: any, i: number) => (
<li className="flex-1" key={i}>
{x}
</li>
))}
</ol>
) : (
<div className="mdx-illustration-block">{images}</div>
)}
{author ? <AuthorCredit author={author} authorLink={authorLink} /> : null}
<style jsx global>{`
.mdx-illustration-block {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-content: stretch;
align-items: stretch;
gap: 42px;
}
ol.mdx-illustration-block {
gap: 60px;
}
.mdx-illustration-block li {
display: flex;
align-items: flex-start;
align-content: stretch;
justify-content: space-around;
position: relative;
padding: 1rem;
}
.mdx-illustration-block figure {
display: flex;
flex-direction: column;
align-content: center;
align-items: center;
justify-content: space-between;
position: relative;
height: 100%;
}
.mdx-illustration-block li:after {
content: ' ';
display: block;
position: absolute;
top: 50%;
right: 100%;
transform: translateY(-50%);
width: 60px;
height: 49px;
background: center / contain no-repeat url('/images/g_arrow.png');
}
.mdx-illustration-block li:first-child:after {
content: ' ';
display: none;
}
.mdx-illustration-block img {
max-height: 250px;
width: 100%;
}
@media (max-width: 680px) {
.mdx-illustration-block {
flex-direction: column;
}
.mdx-illustration-block img {
max-height: 200px;
width: auto;
}
.mdx-illustration-block li:after {
top: 0;
left: 50%;
right: auto;
transform: translateX(-50%) translateY(-100%) rotate(90deg);
}
}
`}</style>
</div>
);
}
export const MDXComponents = {
p: P,
strong: Strong,
blockquote: Blockquote,
ol: OL,
ul: UL,
li: LI,
h1: H1,
h2: H2,
h3: H3,
h4: H4,
inlineCode: InlineCode,
hr: Divider,
a: Link,
code: CodeBlock,
// The code block renders <pre> so we just want a div here.
pre: (p: JSX.IntrinsicElements['div']) => <div {...p} />,
CodeDiagram,
ConsoleBlock,
Convention,
DeepDive: (props: {
children: React.ReactNode;
title: string;
excerpt: string;
}) => <ExpandableExample {...props} type="DeepDive" />,
Diagram,
DiagramGroup,
Gotcha,
HomepageHero,
Illustration,
IllustrationBlock,
Intro,
LearnMore,
Math,
MathI,
Note,
PackageImport,
Recap,
Recipes,
Sandpack,
TerminalBlock,
YouWillLearn,
YouWillLearnCard,
Challenges,
Hint,
Solution,
CodeStep,
};