forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTutorial.vue
173 lines (163 loc) · 4.54 KB
/
Tutorial.vue
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
<!--
This source file is part of the Swift.org open source project
Copyright (c) 2021 Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See https://swift.org/LICENSE.txt for license information
See https://swift.org/CONTRIBUTORS.txt for Swift project authors
-->
<template>
<div class="tutorial">
<NavigationBar
v-if="!isTargetIDE"
:technology="metadata.category"
:chapters="hierarchy.modules"
:topic="tutorialTitle || ''"
:rootReference="hierarchy.reference"
:identifierUrl="identifierUrl"
/>
<main id="main" tabindex="0">
<Section
v-for="(section, index) in sections"
:section="section"
:key="index"
/>
<BreakpointEmitter @change="handleBreakpointChange" />
</main>
<PortalTarget name="modal-destination" multiple />
</div>
</template>
<script>
import { PortalTarget } from 'portal-vue';
import AppStore from 'docc-render/stores/AppStore';
import CodeThemeStore from 'docc-render/stores/CodeThemeStore';
import metadata from 'theme/mixins/metadata';
import isClientMobile from 'docc-render/mixins/isClientMobile';
import Hero from 'theme/components/Tutorial/Hero.vue';
import NavigationBar from 'theme/components/Tutorial/NavigationBar.vue';
import Assessments from './Tutorial/Assessments.vue';
import SectionList from './Tutorial/SectionList.vue';
import CallToAction from './Tutorial/CallToAction.vue';
import BreakpointEmitter from './BreakpointEmitter.vue';
const SectionComponents = {
assessments: Assessments,
hero: Hero,
tasks: SectionList,
callToAction: CallToAction,
};
const ValidSectionTypes = new Set(Object.keys(SectionComponents));
const TutorialSection = {
name: 'TutorialSection',
render: function render(createElement) {
// Dynamically map each section to a static Vue component based on the
// `kind` value of the section payload. Sections with unrecognized `kind`
// values should be ignored.
const {
kind,
...props
} = this.section;
const component = SectionComponents[kind];
return component ? createElement(component, { props }) : null;
},
props: {
section: {
type: Object,
required: true,
validator: section => ValidSectionTypes.has(section.kind),
},
},
};
export default {
name: 'Tutorial',
mixins: [metadata, isClientMobile],
components: {
NavigationBar,
Section: TutorialSection,
PortalTarget,
BreakpointEmitter,
},
inject: [
'isTargetIDE',
'store',
],
computed: {
heroSection() {
return this.sections.find(({ kind }) => kind === 'hero');
},
tutorialTitle() {
return (this.heroSection || {}).title;
},
pageTitle() {
return this.tutorialTitle ? (
`${this.tutorialTitle} — ${this.metadata.category} Tutorials`
) : (
undefined
);
},
pageDescription: ({ heroSection, extractFirstParagraphText }) => (
heroSection ? extractFirstParagraphText(heroSection.content) : null
),
},
props: {
sections: {
type: Array,
required: true,
},
references: {
type: Object,
required: true,
},
hierarchy: {
type: Object,
required: true,
},
metadata: {
type: Object,
required: true,
},
identifierUrl: {
type: String,
required: true,
},
},
methods: {
handleBreakpointChange(breakpoint) {
this.store.updateBreakpoint(breakpoint);
},
handleCodeColorsChange(codeColors) {
CodeThemeStore.updateCodeColors(codeColors);
},
},
created() {
AppStore.setAvailableLocales(this.metadata.availableLocales);
this.store.reset();
this.store.setReferences(this.references);
},
watch: {
// update the references in the store, in case they update, but the component is not re-created
references(references) {
this.store.setReferences(references);
},
'metadata.availableLocales': function availableLocalesWatcher(availableLocales) {
AppStore.setAvailableLocales(availableLocales);
},
},
mounted() {
this.$bridge.on('codeColors', this.handleCodeColorsChange);
this.$bridge.send({ type: 'requestCodeColors' });
},
provide() {
return {
isClientMobile: this.isClientMobile,
};
},
beforeDestroy() {
this.$bridge.off('codeColors', this.handleCodeColorsChange);
},
};
</script>
<style scoped lang="scss">
@import 'docc-render/styles/_core.scss';
.tutorial {
background-color: var(--colors-text-background, var(--color-tutorial-background));
}
</style>