forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeroMetadata.vue
190 lines (168 loc) · 4.2 KB
/
HeroMetadata.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!--
This source file is part of the Swift.org open source project
Copyright (c) 2021-2023 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="metadata">
<div
class="item"
v-if="estimatedTimeInMinutes"
:aria-label="`
${$tc(
'tutorials.time.minutes.full', estimatedTimeInMinutes, { count: estimatedTimeInMinutes }
)}
${$t('tutorials.estimated-time')}
`"
>
<!-- Accessibility warning: if you remove the label above,
also remove the aria-hidden="true" values below. -->
<div class="content" aria-hidden="true">
<i18n path="tutorials.time.format" tag="div" class="duration">
<template #number>
{{ estimatedTimeInMinutes }}
</template>
<template #minutes>
<div class="minutes">{{ $tc(
'tutorials.time.minutes.short', estimatedTimeInMinutes
) }}
</div>
</template>
</i18n>
</div>
<div class="bottom" aria-hidden="true">{{ $t('tutorials.estimated-time') }}</div>
</div>
<div class="item" v-if="projectFilesUrl">
<DownloadIcon class="item-large-icon icon-inline" />
<div class="content bottom">
<a
class="content-link project-download"
:href="projectFilesUrl"
>
{{ $t('tutorials.project-files') }}
<InlineDownloadIcon class="small-icon icon-inline" />
</a>
</div>
</div>
<div class="item" v-if="xcodeRequirement">
<XcodeIcon class="item-large-icon icon-inline" />
<div class="content bottom">
<span v-if="isTargetIDE">{{ xcodeRequirement.title }}</span>
<a v-else :href="xcodeRequirement.url" class="content-link">
{{ xcodeRequirement.title }}
<InlineChevronRightIcon class="icon-inline small-icon xcode-icon" />
</a>
</div>
</div>
</div>
</template>
<script>
import DownloadIcon from 'theme/components/Icons/DownloadIcon.vue';
import XcodeIcon from 'theme/components/Icons/XcodeIcon.vue';
import InlineChevronRightIcon from 'theme/components/Icons/InlineChevronRightIcon.vue';
import InlineDownloadIcon from 'theme/components/Icons/InlineDownloadIcon.vue';
export default {
name: 'HeroMetadata',
components: {
InlineDownloadIcon,
InlineChevronRightIcon,
DownloadIcon,
XcodeIcon,
},
inject: ['isTargetIDE'],
props: {
projectFilesUrl: {
type: String,
},
estimatedTimeInMinutes: {
type: Number,
},
xcodeRequirement: {
type: Object,
required: false,
},
},
};
</script>
<style scoped lang="scss">
@import 'docc-render/styles/_core.scss';
.metadata {
display: flex;
}
.item {
@include font-styles(metadata-item);
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
border-right: 1px solid dark-color(figure-gray);
padding: 0 27.5px;
@include breakpoint(small) {
padding: 0 8px;
}
}
.item:first-of-type {
padding-left: 0;
}
.item:last-of-type {
border: none;
@include breakpoint(small) {
padding-right: 0;
}
}
.content {
color: dark-color(figure-gray);
}
.icon {
@include font-styles(headline);
}
.small-icon {
width: 1em;
height: 1em;
margin-left: .2rem;
&.xcode-icon {
width: 0.8em;
height: 0.8em;
}
}
.content-link {
display: flex;
align-items: center;
}
a {
color: var(--colors-link, var(--color-tutorials-overview-link));
}
.duration {
display: flex;
align-items: baseline;
@include font-styles(metadata-item-duration);
@include breakpoint(small) {
line-height: 1.3rem;
}
line-height: 1.8rem;
}
.minutes {
display: inline-block;
@include font-styles(metadata-item-duration-minutes);
@include breakpoint(small) {
line-height: .8rem;
}
line-height: 1.3rem;
}
.item-large-icon {
height: 2.3rem;
max-width: 100%;
@include breakpoint(small) {
height: 1.5rem;
max-width: 100%;
}
}
.bottom {
margin-top: 13px;
@include breakpoint(small) {
margin-top: 8px;
}
}
</style>