forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVolume.vue
119 lines (107 loc) · 2.53 KB
/
Volume.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
<!--
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>
<section class="volume">
<VolumeName v-if="name" v-bind="{ name, image, content }" />
<Chapter
v-for="(chapter, i) in chapters"
class="tile"
:content="chapter.content"
:image="chapter.image"
:key="chapter.name"
:name="chapter.name"
:number="i + 1"
:topics="lookupTopics(chapter.tutorials)"
:volumeHasName="!!name"
/>
</section>
</template>
<script>
import VolumeName from 'docc-render/components/TutorialsOverview/VolumeName.vue';
import onIntersectViewport, { intersectionMargins } from 'docc-render/mixins/onIntersectViewport';
import Chapter from './Chapter.vue';
export default {
name: 'Volume',
mixins: [onIntersectViewport],
components: {
VolumeName,
Chapter,
},
computed: {
references: ({ store }) => store.state.references,
intersectionRootMargin: () => intersectionMargins.topOneThird,
},
inject: {
store: {
default: () => ({
setActiveVolume() {},
state: {
references: {},
},
}),
},
},
props: {
chapters: {
type: Array,
required: true,
},
content: {
type: Array,
required: false,
},
image: {
type: String,
required: false,
},
name: {
type: String,
required: false,
},
},
methods: {
lookupTopics(identifiers) {
// map each identifier to a tutorial/article reference while omitting any
// that can't be found
return identifiers.reduce((refs, id) => (
refs.concat(this.references[id] || [])
), []);
},
onIntersectViewport() {
if (this.name) {
this.store.setActiveVolume(this.name);
}
},
},
};
</script>
<style scoped lang="scss">
@import 'docc-render/styles/_core.scss';
$tile-margin: $tutorials-overview-tile-margin-single-side;
.tile {
background: var(--color-tutorials-overview-fill-secondary, dark-color(fill-secondary));
margin: $tile-margin 0;
padding: 50px 60px;
}
.asset {
margin-bottom: 10px;
}
@include breakpoint-between-medium-and-nav-medium {
.tile {
padding: 40px 30px;
}
}
@include breakpoint(small) {
.volume {
border-radius: 0;
}
.tile {
padding: 40px 20px;
}
}
</style>