-
Notifications
You must be signed in to change notification settings - Fork 596
/
Copy pathtutorial.ts
608 lines (537 loc) · 23.3 KB
/
tutorial.ts
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
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
namespace pxt.tutorial {
const _h2Regex = /^##[^#](.*)$([\s\S]*?)(?=^##[^#]|$(?![\r\n]))/gmi;
const _h3Regex = /^###[^#](.*)$([\s\S]*?)(?=^###[^#]|$(?![\r\n]))/gmi;
export function parseTutorial(tutorialmd: string): TutorialInfo {
const { metadata, body } = parseTutorialMetadata(tutorialmd);
const { steps, activities } = parseTutorialMarkdown(body, metadata);
const title = parseTutorialTitle(body);
if (!steps)
return undefined; // error parsing steps
// collect code and infer editor
const {
code,
templateCode,
templateLanguage,
editor,
language,
jres,
assetJson,
customTs,
simThemeJson
} = computeBodyMetadata(body);
// For python HOC, hide the toolbox (we don't support flyoutOnly mode).
if (pxt.BrowserUtils.useOldTutorialLayout() && language === "python" && metadata.flyoutOnly) {
metadata.flyoutOnly = false;
metadata.hideToolbox = true;
}
// noDiffs legacy
if (metadata.diffs === true // enabled in tutorial
|| (metadata.diffs !== false && metadata.noDiffs !== true // not disabled
&& (
(editor == pxt.BLOCKS_PROJECT_NAME && pxt.appTarget.appTheme.tutorialBlocksDiff) //blocks enabled always
|| (editor != pxt.BLOCKS_PROJECT_NAME && pxt.appTarget.appTheme.tutorialTextDiff) // text enabled always
))
) {
diffify(steps, activities);
}
const assetFiles = parseAssetJson(assetJson);
const simTheme = parseSimThemeJson(simThemeJson);
const globalBlockConfig = parseTutorialBlockConfig("global", tutorialmd);
const globalValidationConfig = parseTutorialValidationConfig("global", tutorialmd);
// strip hidden snippets
steps.forEach(step => {
step.contentMd = stripHiddenSnippets(step.contentMd)
step.headerContentMd = stripHiddenSnippets(step.headerContentMd)
step.hintContentMd = stripHiddenSnippets(step.hintContentMd);
});
return {
editor,
title,
steps,
activities,
code,
templateCode,
templateLanguage,
metadata,
language,
jres,
assetFiles,
customTs,
globalBlockConfig,
globalValidationConfig,
simTheme
};
}
export function getMetadataRegex(): RegExp {
return /``` *(sim|block|blocks|filterblocks|spy|ghost|typescript|ts|js|javascript|template|python|jres|assetjson|customts|simtheme|python-template|ts-template|typescript-template|js-template|javascript-template)\s*\n([\s\S]*?)\n```/gmi;
}
function computeBodyMetadata(body: string) {
// collect code and infer editor
let editor: string = undefined;
const regex = getMetadataRegex();
let jres: string;
let code: string[] = [];
let templateCode: string;
let templateLanguage: string;
let language: string;
let idx = 0;
let assetJson: string;
let customTs: string;
let simThemeJson: string;
// Concatenate all blocks in separate code blocks and decompile so we can detect what blocks are used (for the toolbox)
body
.replace(/((?!.)\s)+/g, "\n")
.replace(regex, function (m0, m1, m2) {
switch (m1) {
case "block":
case "blocks":
case "blockconfig.local":
case "blockconfig.global":
case "filterblocks":
if (!checkTutorialEditor(pxt.BLOCKS_PROJECT_NAME))
return undefined;
break;
case "spy":
case "python":
if (!checkTutorialEditor(pxt.PYTHON_PROJECT_NAME))
return undefined;
if (m1 == "python")
language = m1;
break;
case "typescript":
case "ts":
case "javascript":
case "js":
if (!checkTutorialEditor(pxt.JAVASCRIPT_PROJECT_NAME))
return undefined;
break;
case "template":
templateCode = m2;
break;
case "python-template":
if (!checkTutorialEditor(pxt.PYTHON_PROJECT_NAME))
return undefined;
templateCode = m2;
templateLanguage = "python";
language = "python";
break;
case "ts-template":
case "typescript-template":
case "js-template":
case "javascript-template":
if (!checkTutorialEditor(pxt.JAVASCRIPT_PROJECT_NAME))
return undefined;
templateCode = m2;
templateLanguage = "typescript";
break;
case "jres":
jres = m2;
break;
case "assetjson":
assetJson = m2;
break;
case "simtheme":
simThemeJson = m2;
break;
case "customts":
customTs = m2;
m2 = "";
break;
}
code.push(language === "python" ? `\n${m2}\n` : `{\n${m2}\n}`);
idx++
return "";
});
// default to blocks
editor = editor || pxt.BLOCKS_PROJECT_NAME;
return {
code,
templateCode,
templateLanguage,
editor,
language,
jres,
assetJson,
customTs,
simThemeJson
};
function checkTutorialEditor(expected: string) {
if (editor && editor != expected) {
pxt.debug(`tutorial ambiguous: contains snippets of different types`);
return false;
} else {
editor = expected;
return true;
}
}
}
function diffify(steps: TutorialStepInfo[], activities: TutorialActivityInfo[]) {
// convert typescript snippets into diff snippets
let lastSrc: string = undefined;
steps.forEach((step, stepi) => {
// reset diff on each activity or when requested
if (step.resetDiff
|| (activities && activities.find(activity => activity.step == stepi)))
lastSrc = undefined;
// extract typescript snippet from hint or content
if (step.hintContentMd) {
const s = convertSnippetToDiff(step.hintContentMd);
if (s && s != step.hintContentMd) {
step.hintContentMd = s;
return;
}
}
if (step.headerContentMd) {
const s = convertSnippetToDiff(step.headerContentMd);
if (s && s != step.headerContentMd) {
step.headerContentMd = s;
return;
}
}
})
function convertSnippetToDiff(src: string): string {
const diffClasses: pxt.Map<string> = {
"typescript": "diff",
"spy": "diffspy",
"blocks": "diffblocks",
"python": "diff"
}
const highlightRx = /\s*(\/\/|#)\s*@highlight/gm;
if (!src) return src;
return src
.replace(/```(typescript|spy|python|blocks|ghost|template)((?:.|[\r\n])+)```/, function (m, type, code) {
const fileA = lastSrc;
const hidden = /^(template|ghost)$/.test(type);
const hasHighlight = highlightRx.test(code);
code = code.replace(/^\n+/, '').replace(/\n+$/, ''); // always trim lines
if (hasHighlight) code = code.replace(highlightRx, '');
lastSrc = code;
if (!fileA || hasHighlight || hidden)
return m; // leave unchanged or reuse highlight info
else
return `\`\`\`${diffClasses[type]}
${fileA}
----------
${code}
\`\`\``
})
}
}
function parseTutorialTitle(tutorialmd: string): string {
let title = tutorialmd.match(/^#[^#](.*)$/mi);
return title && title.length > 1 ? title[1].trim() : null;
}
function parseTutorialMarkdown(tutorialmd: string, metadata: TutorialMetadata): { steps: TutorialStepInfo[], activities: TutorialActivityInfo[] } {
if (metadata && metadata.activities) {
// tutorial with "## ACTIVITY", "### STEP" syntax
return parseTutorialActivities(tutorialmd, metadata);
} else {
// tutorial with "## STEP" syntax
let steps = parseTutorialSteps(tutorialmd, null, metadata);
// old: "### STEP" syntax (no activity header guaranteed)
if (!steps || steps.length < 1) steps = parseTutorialSteps(tutorialmd, _h3Regex, metadata);
return { steps: steps, activities: null };
}
}
function parseTutorialActivities(markdown: string, metadata: TutorialMetadata): { steps: TutorialStepInfo[], activities: TutorialActivityInfo[] } {
let stepInfo: TutorialStepInfo[] = [];
let activityInfo: TutorialActivityInfo[] = [];
markdown.replace(_h2Regex, function (match, name, activity) {
let i = activityInfo.length;
activityInfo.push({
name: name || lf("Activity {0}", i),
step: stepInfo.length
})
let steps = parseTutorialSteps(activity, _h3Regex, metadata);
steps = steps.map(step => {
step.activity = i;
return step;
})
stepInfo = stepInfo.concat(steps);
return "";
})
return { steps: stepInfo, activities: activityInfo };
}
function parseTutorialSteps(markdown: string, regex?: RegExp, metadata?: TutorialMetadata): TutorialStepInfo[] {
// use regex override if present
let stepRegex = regex || _h2Regex;
let stepInfo: TutorialStepInfo[] = [];
markdown.replace(stepRegex, function (match, flags, step) {
step = step.trim();
let { header, hint } = parseTutorialHint(step, metadata && metadata.explicitHints);
const blockConfig = parseTutorialBlockConfig("local", step);
const validationConfig = parseTutorialValidationConfig("local", step);
// if title is not hidden ("{TITLE HERE}"), strip flags
const title = !flags.match(/^\{.*\}$/)
? flags.replace(/@(fullscreen|unplugged|showdialog|showhint|tutorialCompleted|resetDiff)/gi, "").trim()
: undefined;
let info: TutorialStepInfo = {
title,
contentMd: step,
headerContentMd: header,
localBlockConfig: blockConfig,
localValidationConfig: validationConfig
}
if (/@(fullscreen|unplugged|showdialog|showhint)/i.test(flags))
info.showHint = true;
if (/@(unplugged|showdialog)/i.test(flags))
info.showDialog = true;
if (/@tutorialCompleted/.test(flags))
info.tutorialCompleted = true;
if (/@resetDiff/.test(flags))
info.resetDiff = true;
if (hint)
info.hintContentMd = hint;
stepInfo.push(info);
return "";
});
if (markdown.indexOf("# Not found") == 0) {
pxt.debug(`tutorial not found`);
return undefined;
}
return stepInfo;
}
function parseTutorialHint(step: string, explicitHints?: boolean): { header: string, hint: string } {
// remove hidden code sections
step = stripHiddenSnippets(step);
let header = step, hint;
if (explicitHints) {
// hint is explicitly set with hint syntax "#### ~ tutorialhint" and terminates at the next heading
const hintTextRegex = /#+ ~ tutorialhint([\s\S]*)/i;
header = step.replace(hintTextRegex, function (f, m) {
hint = m;
return "";
});
} else {
// everything after the first ``` section OR the first image is treated as a "hint"
const hintTextRegex = /(^[\s\S]*?\S)\s*((```|\[?\!\[[\s\S]+?\]\(\S+?\)\]?)[\s\S]*)/mi;
let hintText = step.match(hintTextRegex);
if (hintText && hintText.length > 2) {
header = hintText[1].trim();
hint = hintText[2].trim();
}
}
return { header, hint };
}
function parseTutorialBlockConfig(scope: "local" | "global", content: string): TutorialBlockConfig {
let blockConfig: pxt.tutorial.TutorialBlockConfig = {
md: "",
blocks: [],
};
const regex = new RegExp(`\`\`\`\\s*blockconfig\\.${scope}\\s*\\n([\\s\\S]*?)\\n\`\`\``, "gmi");
content.replace(regex, (m0, m1) => {
blockConfig.md += `${m1}\n`;
return "";
});
return blockConfig;
}
function parseTutorialValidationConfig(scope: "local" | "global", content: string): CodeValidationConfig {
let markdown: string;
const regex = new RegExp(`\`\`\`\\s*validation\\.${scope}\\s*\\n([\\s\\S]*?)\\n\`\`\``, "gmi");
content.replace(regex, (m0, m1) => {
markdown = m1;
return "";
});
if(!markdown || markdown == "") {
return null;
}
const validationSections = pxt.getSectionsFromMarkdownMetadata(markdown);
const sectionedMetadata = validationSections.map((v) => {
return {
validatorType: v.header,
properties: v.attributes,
};
});
return { validatorsMetadata: sectionedMetadata };
}
/* Remove hidden snippets from text */
function stripHiddenSnippets(str: string): string {
if (!str) return str;
const hiddenSnippetRegex = /```(filterblocks|package|ghost|config|template|jres|assetjson|simtheme|customts|blockconfig\.local|blockconfig\.global|validation\.local|validation\.global)\s*\n([\s\S]*?)\n```/gmi;
return str.replace(hiddenSnippetRegex, '').trim();
}
/*
Parses metadata at the beginning of tutorial markown. Metadata is a key-value
pair in the format: `### @KEY VALUE`
*/
function parseTutorialMetadata(tutorialmd: string): { metadata: TutorialMetadata, body: string } {
const metadataRegex = /### @(\S+) ([ \S]+)/gi;
const m: pxt.Map<any> = {};
const body = tutorialmd.replace(metadataRegex, function (f, k, v) {
try {
m[k] = JSON.parse(v);
} catch {
m[k] = v;
}
return "";
});
const metadata = (m as TutorialMetadata);
if (metadata.explicitHints !== undefined
&& pxt.appTarget.appTheme
&& pxt.appTarget.appTheme.tutorialExplicitHints)
metadata.explicitHints = true;
return { metadata, body };
}
export function highlight(pre: HTMLElement): void {
let text = pre.textContent;
// collapse image python/js literales
text = text.replace(/img\s*\(\s*"{3}[\s\da-f.#tngrpoyw]*"{3}\s*\)/g, `img(""" """)`);
text = text.replace(/img\s*`[\s\da-f.#tngrpoyw]*`\s*/g, "img` `");
if (!/@highlight/.test(text)) { // shortcut, nothing to do
pre.textContent = text;
return;
}
// render lines
pre.textContent = ""; // clear up and rebuild
const lines = text.split('\n');
for (let i = 0; i < lines.length; ++i) {
if (i > 0 && i < lines.length)
pre.appendChild(document.createTextNode("\n"))
let line = lines[i];
if (/@highlight/.test(line)) {
// highlight next line
line = lines[++i];
if (line !== undefined) {
const span = document.createElement("span");
span.className = "highlight-line";
span.textContent = line;
pre.appendChild(span);
}
} else {
pre.appendChild(document.createTextNode(line));
}
}
}
export function getTutorialOptions(md: string, tutorialId: string, filename: string, reportId: string, recipe: boolean): { options: pxt.tutorial.TutorialOptions, editor: string } {
const tutorialInfo = pxt.tutorial.parseTutorial(md);
if (!tutorialInfo)
throw new Error(lf("Invalid tutorial format"));
const tutorialOptions: pxt.tutorial.TutorialOptions = {
tutorial: tutorialId,
tutorialName: tutorialInfo.title || filename,
tutorialReportId: reportId,
tutorialStep: 0,
tutorialReady: true,
tutorialHintCounter: 0,
tutorialStepInfo: tutorialInfo.steps,
tutorialActivityInfo: tutorialInfo.activities,
tutorialMd: md,
tutorialCode: tutorialInfo.code,
tutorialRecipe: !!recipe,
templateCode: tutorialInfo.templateCode,
templateLanguage: tutorialInfo.templateLanguage,
autoexpandStep: tutorialInfo.metadata?.autoexpandOff ? false : true,
metadata: tutorialInfo.metadata,
language: tutorialInfo.language,
jres: tutorialInfo.jres,
assetFiles: tutorialInfo.assetFiles,
customTs: tutorialInfo.customTs,
globalBlockConfig: tutorialInfo.globalBlockConfig,
globalValidationConfig: tutorialInfo.globalValidationConfig,
simTheme: tutorialInfo.simTheme,
};
return { options: tutorialOptions, editor: tutorialInfo.editor };
}
export function parseCachedTutorialInfo(json: string, id?: string) {
let cachedInfo = pxt.Util.jsonTryParse(json) as pxt.Map<pxt.BuiltTutorialInfo>;
if (!cachedInfo) return Promise.resolve();
return pxt.BrowserUtils.tutorialInfoDbAsync()
.then(db => {
if (id && cachedInfo[id]) {
const info = cachedInfo[id];
if (info.usedBlocks && info.hash) db.setWithHashAsync(id, info.snippetBlocks, info.hash, info.highlightBlocks, info.validateBlocks);
} else {
for (let key of Object.keys(cachedInfo)) {
const info = cachedInfo[key];
if (info.usedBlocks && info.hash) db.setWithHashAsync(key, info.snippetBlocks, info.hash, info.highlightBlocks, info.validateBlocks);
}
}
}).catch((err) => { })
}
export function resolveLocalizedMarkdown(ghid: pxt.github.ParsedRepo, files: pxt.Map<string>, fileName?: string): string {
// if non-default language, find localized file if any
let mfn = (fileName || ghid.fileName || "README");
if (!mfn.endsWith(".md")) {
mfn += ".md";
}
let md: string = undefined;
const [initialLang, baseLang, initialLangLowerCase] = pxt.Util.normalizeLanguageCode(pxt.Util.userLanguage());
if (initialLang && baseLang && initialLangLowerCase) {
//We need to first search base lang and then intial Lang
//Example: normalizeLanguageCode en-IN will return ["en-IN", "en", "en-in"] and nb will be returned as ["nb"]
md = files[`_locales/${initialLang}/${mfn}`]
|| files[`_locales/${initialLangLowerCase}/${mfn}`]
|| files[`_locales/${baseLang}/${mfn}`]
} else {
md = files[`_locales/${initialLang}/${mfn}`];
}
md = md || files[mfn];
return md;
}
export function parseAssetJson(json: string): pxt.Map<string> {
if (!json) return undefined;
const files: pxt.Map<string> = JSON.parse(json);
return {
[pxt.TILEMAP_JRES]: files[pxt.TILEMAP_JRES],
[pxt.TILEMAP_CODE]: files[pxt.TILEMAP_CODE],
[pxt.IMAGES_JRES]: files[pxt.IMAGES_JRES],
[pxt.IMAGES_CODE]: files[pxt.IMAGES_CODE]
}
}
export function parseSimThemeJson(json: string): Partial<pxt.PackageConfig> {
const pxtJson = pxt.Util.jsonTryParse(json);
if (!pxtJson) return undefined;
const res: Partial<pxt.PackageConfig> = {};
if (pxtJson.theme) {
res.theme = pxtJson.theme;
}
if (pxtJson.palette) {
res.palette = pxtJson.palette;
}
return res;
}
export async function getTutorialHighlightedBlocks(tutorial: TutorialOptions): Promise<pxt.Map<pxt.Map<number>> | undefined> {
const db = await pxt.BrowserUtils.tutorialInfoDbAsync();
const entry = await db.getAsync(tutorial.tutorial, tutorial.tutorialCode);
return entry?.highlightBlocks;
}
export async function getTutorialValidateBlocks(tutorial: TutorialOptions): Promise<pxt.Map<pxt.Map<string[]>> | undefined> {
const db = await pxt.BrowserUtils.tutorialInfoDbAsync();
const entry = await db.getAsync(tutorial.tutorial, tutorial.tutorialCode);
return entry?.validateBlocks;
}
export function getRequiredBlockCounts(stepBlocks: pxt.Map<string[]>): pxt.Map<number> {
if (!stepBlocks) return undefined;
const requiredBlocks: pxt.Map<number> = {};
const blocks = stepBlocks["validate-exists"];
if (blocks) {
blocks.forEach(block => {
requiredBlocks[block] = (requiredBlocks[block] || 0) + 1;
});
}
return requiredBlocks;
}
export function getTutorialStepHash(tutorial: TutorialOptions): string {
const { tutorialStepInfo, tutorialStep } = tutorial;
const body = tutorialStepInfo[tutorialStep].hintContentMd;
const codeSnippets = getBlockSnippetCode(body);
return pxt.BrowserUtils.getTutorialCodeHash(codeSnippets);
}
/** TODO: if this gets exported, we probably want to consider generalizing to 'parseMarkdownSnippets'
* that returns { snippetName: string[] }; e.g.
* { "blocks": ["block snippet 1", "block snippet 2"], "package": ["deplist 1"] }
* need to cover getMetadataRegex + stripHiddenSnippets types, maybe more if any happen to be around.
**/
function getBlockSnippetCode(mdSnippet: string): string[] {
let hintCode: string[] = [];
mdSnippet?.replace(/((?!.)\s)+/g, "\n")
.replace(
/``` *(block|blocks)\s*\n([\s\S]*?)\n```/gim,
function (m0, m1, m2) {
hintCode.push(`{\n${m2}\n}`);
return "";
}
);
return hintCode;
}
}