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
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
|
import * as React from 'react';
import Transition from '../Transition';
import { useContext, useRef, useState } from 'react';
import {
ModuleFrequency,
ModuleInfo,
ModuleLinkInfo,
} from '../../models/module';
import { graphql, Link, useStaticQuery } from 'gatsby';
import MODULE_ORDERING, { SECTION_LABELS } from '../../../content/ordering';
import ModuleFrequencyDots from './ModuleFrequencyDots';
import ContactUsSlideover from '../ContactUsSlideover/ContactUsSlideover';
import MarkCompleteButton from './MarkCompleteButton';
import ModuleConfetti from './ModuleConfetti';
import TextTooltip from '../Tooltip/TextTooltip';
import UserDataContext, { UserLang } from '../../context/UserDataContext';
import { SidebarNav } from './SidebarNav/SidebarNav';
import { graphqlToModuleLinks } from '../../utils/utils';
import ModuleLayoutContext from '../../context/ModuleLayoutContext';
import TableOfContentsSidebar from './TableOfContents/TableOfContentsSidebar';
import TableOfContentsBlock from './TableOfContents/TableOfContentsBlock';
import Logo from '../Logo';
const Frequency = ({ frequency }: { frequency: ModuleFrequency }) => {
const textColors = [
'text-red-600',
'text-orange-600',
'text-yellow-600',
'text-teal-600',
'text-green-600',
];
const circleColors = [
'text-red-500',
'text-orange-500',
'text-yellow-500',
'text-teal-500',
'text-green-500',
];
const labels = [
'Has Not Appeared',
'Rare',
'Not Frequent',
'Somewhat Frequent',
'Very Frequent',
];
const hints = [
'Historically, this module has not appeared in this division before. However, it can still show up in future contests.',
'Historically, this module has only appeared in this division once or twice.',
'Historically, this module infrequently appears in this division.',
'Historically, this module has appeared somewhat frequently for this division.',
'Historically, this module has been known to appear at least once per contest. However, this does not guarantee that it will show up again in future contests.',
];
return (
<span
className={`inline-flex items-center font-medium ${textColors[frequency]}`}
>
<ModuleFrequencyDots
count={frequency}
totalCount={4}
color={circleColors[frequency]}
/>
<TextTooltip position="bottom" content={hints[frequency]}>
{labels[frequency]}
</TextTooltip>
</span>
);
};
const Breadcrumbs = () => {
const moduleLayoutInfo = useContext(ModuleLayoutContext);
const module = moduleLayoutInfo.module;
return (
<nav className="flex flex-wrap items-center text-sm leading-loose font-medium">
<Link
to="/dashboard/"
className="text-gray-500 hover:text-gray-700 transition duration-150 ease-in-out"
>
Home
</Link>
<svg
className="flex-shrink-0 mx-2 h-5 w-5 text-gray-400"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fillRule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clipRule="evenodd"
/>
</svg>
<Link
to={`/${module.section}/`}
className="text-gray-500 hover:text-gray-700 transition duration-150 ease-in-out"
>
{SECTION_LABELS[module.section]}
</Link>
<svg
className="flex-shrink-0 mx-2 h-5 w-5 text-gray-400"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fillRule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-gray-500 whitespace-no-wrap">{module.title}</span>
</nav>
);
};
const SidebarBottomButtons = ({ onContactUs }) => {
const languages = {
showAll: 'All',
cpp: 'C++',
java: 'Java',
py: 'Python',
};
const nextLang: { [key: string]: UserLang } = {
showAll: 'cpp',
cpp: 'java',
java: 'py',
py: 'cpp',
};
const userSettings = useContext(UserDataContext);
return (
<>
<div className="flex-shrink-0 border-t border-gray-200 flex">
<button
className="group flex-1 flex items-center p-4 text-sm leading-5 font-medium text-gray-600 hover:text-gray-900 hover:bg-gray-50 focus:outline-none focus:bg-gray-100 transition ease-in-out duration-150"
onClick={() => userSettings.setLang(nextLang[userSettings.lang])}
>
<svg
className="mr-4 h-6 w-6 text-gray-400 group-hover:text-gray-500 group-focus:text-gray-500 transition ease-in-out duration-150"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<path d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4" />
</svg>
Language: {languages[userSettings.lang]}
</button>
</div>
<div className="flex-shrink-0 border-t border-gray-200 flex">
<button
className="group flex-1 flex items-center p-4 text-sm leading-5 font-medium text-gray-600 hover:text-gray-900 hover:bg-gray-50 focus:outline-none focus:bg-gray-100 transition ease-in-out duration-150"
onClick={onContactUs}
>
<svg
className="mr-4 h-6 w-6 text-gray-400 group-hover:text-gray-500 group-focus:text-gray-500 transition ease-in-out duration-150"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<path d="M8 10h.01M12 10h.01M16 10h.01M9 16H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-5l-5 5v-5z" />
</svg>
Contact Us
</button>
</div>
</>
);
};
const NavBar = ({ alignNavButtonsRight = true }) => {
const moduleLayoutInfo = useContext(ModuleLayoutContext);
const { module, moduleLinks } = moduleLayoutInfo;
const sortedModuleLinks = React.useMemo(() => {
let links: ModuleLinkInfo[] = [];
for (let group of MODULE_ORDERING[module.section]) {
for (let id of group.items) {
links.push(moduleLinks.find(x => x.id === id));
}
}
return links;
}, [moduleLinks]);
let moduleIdx = React.useMemo(
() => sortedModuleLinks.findIndex(x => x.id === module.id),
[module, sortedModuleLinks]
);
let prevModule = moduleIdx === 0 ? null : sortedModuleLinks[moduleIdx - 1];
let nextModule =
moduleIdx === sortedModuleLinks.length - 1
? null
: sortedModuleLinks[moduleIdx + 1];
const disabledClasses = 'text-gray-200 pointer-events-none';
const activeClasses =
'text-gray-500 hover:text-gray-800 transition duration-150 ease-in-out';
return (
<div
className={`flex ${
alignNavButtonsRight ? 'sm:justify-between' : 'justify-between'
}`}
>
{alignNavButtonsRight && <div className="flex-1 sm:hidden" />}
<span className="-ml-4 rounded-md">
<Link
to={prevModule === null ? module.url : prevModule.url}
className={
'inline-flex items-center px-4 py-2 text-sm leading-5 font-medium rounded-md ' +
(prevModule === null ? disabledClasses : activeClasses)
}
>
<svg
className="-ml-0.5 mr-1 h-4 w-4"
fill="none"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path d="M15 19l-7-7 7-7" />
</svg>
Prev
</Link>
</span>
<div className="hidden sm:flex items-center">
<Breadcrumbs />
</div>
<span className="rounded-md -mr-4">
<Link
to={nextModule === null ? module.url : nextModule.url}
className={
'inline-flex items-center px-4 py-2 text-sm leading-5 font-medium rounded-md ' +
(nextModule === null ? disabledClasses : activeClasses)
}
>
Next
<svg
className="-mr-0.5 ml-1 h-4 w-4"
fill="none"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path d="M9 5l7 7-7 7" />
</svg>
</Link>
</span>
</div>
);
};
const renderPrerequisite = (prerequisite, moduleLinks: ModuleLinkInfo[]) => {
let moduleLink = moduleLinks.find(x => x.id === prerequisite);
if (moduleLink)
return (
<li key={prerequisite}>
<Link to={moduleLink.url} className="underline text-black">
{SECTION_LABELS[moduleLink.section]} - {moduleLink.title}
</Link>
</li>
);
return <li key={prerequisite}>{prerequisite}</li>;
};
export default function ModuleLayout({
module,
children,
}: {
module: ModuleInfo;
children: React.ReactNode;
}) {
const { userProgressOnModules, setModuleProgress, lang } = useContext(
UserDataContext
);
const [isMobileNavOpen, setIsMobileNavOpen] = useState(false);
const [isContactUsActive, setIsContactUsActive] = useState(false);
const [isConfettiActive, setIsConfettiActive] = useState(false);
const moduleProgress =
(userProgressOnModules && userProgressOnModules[module.id]) ||
'Not Started';
const tableOfContents =
lang in module.toc ? module.toc[lang] : module.toc['cpp'];
const data = useStaticQuery(graphql`
query {
allMdx {
edges {
node {
frontmatter {
title
id
}
fields {
division
}
}
}
}
}
`);
const moduleLinks = React.useMemo(() => graphqlToModuleLinks(data.allMdx), [
data.allMdx,
]);
const handleCompletionChange = progress => {
if (moduleProgress === progress) return;
setModuleProgress(module.id, progress);
if (
moduleProgress !== 'Complete' &&
(progress === 'Practicing' || progress === 'Complete')
)
setIsConfettiActive(true);
};
return (
<ModuleLayoutContext.Provider value={{ module, moduleLinks }}>
<ModuleConfetti
show={isConfettiActive}
onDone={() => setIsConfettiActive(false)}
/>
<Transition show={isMobileNavOpen} timeout={300}>
<div className="lg:hidden">
<div className="fixed inset-0 flex z-40">
<Transition
enter="transition-opacity ease-linear duration-300"
enterFrom="opacity-0"
enterTo="opacity-100"
leave="transition-opacity ease-linear duration-300"
leaveFrom="opacity-100"
leaveTo="opacity-0"
>
<div
className="fixed inset-0"
onClick={() => setIsMobileNavOpen(false)}
>
<div className="absolute inset-0 bg-gray-600 opacity-75" />
</div>
</Transition>
<Transition
enter="transition ease-in-out duration-300 transform"
enterFrom="-translate-x-full"
enterTo="translate-x-0"
leave="transition ease-in-out duration-300 transform"
leaveFrom="translate-x-0"
leaveTo="-translate-x-full"
>
<div className="relative flex-1 flex flex-col max-w-xs w-full bg-white">
<div className="absolute top-0 right-0 -mr-14 p-1">
<button
className="flex items-center justify-center h-12 w-12 rounded-full focus:outline-none focus:bg-gray-600"
aria-label="Close sidebar"
onClick={() => setIsMobileNavOpen(false)}
>
<svg
className="h-6 w-6 text-white"
stroke="currentColor"
fill="none"
viewBox="0 0 24 24"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M6 18L18 6M6 6l12 12"
/>
</svg>
</button>
</div>
<div className="flex-1 h-0 pt-5 overflow-y-auto">
<Link
className="flex-shrink-0 flex items-center px-4"
to="/dashboard/"
>
<Logo />
</Link>
<div className="mt-4 px-6">
<Breadcrumbs />
</div>
<nav className="mt-6">
<SidebarNav />
</nav>
</div>
<SidebarBottomButtons
onContactUs={() => {
setIsMobileNavOpen(false);
setIsContactUsActive(true);
}}
/>
</div>
</Transition>
<div className="flex-shrink-0 w-14">
{/* Force sidebar to shrink to fit close icon */}
</div>
</div>
</div>
</Transition>
{/* Static sidebar for desktop */}
<div className="hidden lg:flex lg:flex-shrink-0">
<div
className="flex flex-col border-r border-gray-200 bg-white"
style={{ width: '20rem' }}
>
<div className="h-0 flex-1 flex flex-col pt-5 overflow-y-auto">
<Link
className="flex items-center flex-shrink-0 px-4 pb-2"
to="/dashboard/"
>
<Logo />
</Link>
{/* Sidebar component, swap this element with another sidebar if you like */}
<nav className="mt-2 flex-1 bg-white">
<SidebarNav />
</nav>
</div>
<SidebarBottomButtons
onContactUs={() => setIsContactUsActive(true)}
/>
</div>
</div>
<div className="flex flex-col w-0 flex-1 overflow-hidden">
<div className="lg:hidden pl-1 pt-1 sm:pl-3 sm:pt-3 flex items-center">
<button
className="flex-shrink-0 -ml-0.5 -mt-0.5 h-12 w-12 inline-flex items-center justify-center rounded-md text-gray-500 hover:text-gray-900 focus:outline-none focus:bg-gray-200 transition ease-in-out duration-150"
aria-label="Open sidebar"
onClick={() => setIsMobileNavOpen(true)}
>
<svg
className="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M4 6h16M4 12h16M4 18h16"
/>
</svg>
</button>
<div className="flex-1 ml-4 mr-4 sm:mr-6">
<NavBar />
</div>
</div>
<main
className="flex-1 relative z-0 overflow-y-auto sm:pt-2 pb-6 focus:outline-none"
tabIndex={0}
>
<div className="mx-auto">
<div className="flex justify-center">
<div className="flex-1 max-w-4xl px-4 sm:px-6 lg:px-8 w-0">
<div className="hidden lg:block">
<NavBar />
</div>
<div className="px-1.5 lg:mt-8">
{module.frequency !== null && (
<Frequency frequency={module.frequency} />
)}
</div>
<div className="sm:flex sm:items-center sm:justify-between mb-4">
<div className="flex-1 min-w-0">
<h1 className="text-2xl font-bold text-gray-900 sm:text-3xl">
{module.title}
</h1>
<p className={`text-gray-500`}>
Author{module.author.indexOf(',') !== -1 ? 's' : ''}:{' '}
{module.author}
</p>
</div>
<div className="hidden lg:flex-shrink-0 lg:flex ml-4">
<MarkCompleteButton
state={moduleProgress}
onChange={handleCompletionChange}
/>
</div>
</div>
{module.prerequisites && (
<div className="rounded-md bg-blue-50 p-4 mb-4">
<div className="flex">
<div className="flex-shrink-0">
<svg
className="h-5 w-5 text-blue-400"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
fillRule="evenodd"
d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z"
clipRule="evenodd"
/>
</svg>
</div>
<div className="ml-3">
<h3 className="text-sm leading-5 font-medium text-blue-800">
Prerequisites
</h3>
<div className="mt-2 text-sm leading-5 text-blue-800">
<ul className="list-disc list-inside pl-3 space-y-1">
{module.prerequisites.map(x =>
renderPrerequisite(x, moduleLinks)
)}
</ul>
</div>
</div>
</div>
</div>
)}
{module.description && (
<p className="font-bold mb-4 bg-green-50 border-l-4 border-green-400 text-green-800 p-4">
{module.description}
</p>
)}
<div className="xl:hidden">
<TableOfContentsBlock tableOfContents={tableOfContents} />
</div>
{children}
<h3 className="text-lg leading-6 font-medium text-gray-900 text-center mb-8 border-t border-gray-200 pt-8">
<TextTooltip content="You can use this as a way to track your progress throughout this guide.">
Module Progress
</TextTooltip>
:
<span className="ml-4">
<MarkCompleteButton
onChange={handleCompletionChange}
state={moduleProgress}
dropdownAbove
/>
</span>
</h3>
<div className="border-t border-gray-200 pt-4">
<NavBar alignNavButtonsRight={false} />
</div>
</div>
<div className="hidden xl:block ml-6 w-64 mt-48 flex-shrink-0">
<TableOfContentsSidebar tableOfContents={tableOfContents} />
</div>
</div>
</div>
</main>
</div>
<ContactUsSlideover
isOpen={isContactUsActive}
onClose={() => setIsContactUsActive(false)}
activeModule={module}
/>
</ModuleLayoutContext.Provider>
);
}
|