-
Notifications
You must be signed in to change notification settings - Fork 66.8k
Expand file tree
/
Copy pathprocess-learning-tracks.js
More file actions
114 lines (100 loc) · 4.4 KB
/
process-learning-tracks.js
File metadata and controls
114 lines (100 loc) · 4.4 KB
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
import getLinkData from './get-link-data.js'
import getApplicableVersions from '#src/versions/lib/get-applicable-versions.js'
import { getDataByLanguage } from '#src/data-directory/lib/get-data.js'
import { renderContent } from '#src/content-render/index.js'
import { executeWithFallback } from '#src/languages/lib/render-with-fallback.js'
const renderOpts = { textOnly: true }
// This module returns an object that contains a single featured learning track
// and an array of all the other learning tracks for the current version.
export default async function processLearningTracks(rawLearningTracks, context) {
const learningTracks = []
if (!context.currentProduct) {
throw new Error(`Missing context.currentProduct value.`)
}
for (const rawTrackName of rawLearningTracks) {
// Track names in frontmatter may include Liquid conditionals.
const renderedTrackName = rawTrackName.includes('{')
? await executeWithFallback(
context,
() => renderContent(rawTrackName, context, renderOpts),
() => '', // todo use english rawTrackName
)
: rawTrackName
if (!renderedTrackName) continue
// Find the data for the current product and track name.
if (context.currentProduct.includes('.')) {
throw new Error(`currentProduct cannot contain a . (${context.currentProduct})`)
}
if (renderedTrackName.includes('.')) {
throw new Error(`renderedTrackName cannot contain a . (${renderedTrackName})`)
}
// Note: this will use the translated learning tracks and automatically
// fall back to English if they don't exist on disk in the translation.
const track = getDataByLanguage(
`learning-tracks.${context.currentProduct}.${renderedTrackName}`,
context.currentLanguage,
)
if (!track) {
throw new Error(`No learning track called '${renderedTrackName}'.`)
}
// If the current language isn't 'en' we need to prepare and have the
// English equivalent ready.
// We do this for two reasons:
//
// 1. For each learning-track .yml file (in data) always want the
// English values for `guides`, `versions`.
// Meaning, for the translated learning tracks we only keep the
// `title` and `description`.
//
// 2. When we attempt to render the translated learning tracks'
// `title` and `description`, if they are failing to render,
// we need to have the English `title` and `description` to
// fall back to.
//
let enTrack
if (context.currentLanguage !== 'en') {
enTrack = getDataByLanguage(
`learning-tracks.${context.currentProduct}.${renderedTrackName}`,
'en',
)
// Sometimes the translations have more than just translated the
// `title` and `description`, but also things that don't make sense
// to translate like `guides` and `versions`. Always draw that
// from the English equivalent.
track.guides = enTrack.guides
track.versions = enTrack.versions
}
// If there is no `versions` prop in the learning track frontmatter, assume the track should display in all versions.
if (track.versions) {
const trackVersions = getApplicableVersions(track.versions)
// If the current version is not included, do not display the track.
if (!trackVersions.includes(context.currentVersion)) {
continue
}
}
const title = await executeWithFallback(
context,
() => renderContent(track.title, context, renderOpts),
(enContext) => renderContent(enTrack.title, enContext, renderOpts),
)
const description = await executeWithFallback(
context,
() => renderContent(track.description, context, renderOpts),
(enContext) => renderContent(enTrack.description, enContext, renderOpts),
)
const learningTrack = {
trackName: renderedTrackName,
trackProduct: context.currentProduct || null,
title,
description,
// getLinkData respects versioning and only returns guides available in the current version;
// if no guides are available, the learningTrack.guides property will be an empty array.
guides: await getLinkData(track.guides, context),
}
// Only add the track to the array of tracks if there are guides in this version and it's not the featured track.
if (learningTrack.guides.length) {
learningTracks.push(learningTrack)
}
}
return { learningTracks }
}