forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHero.vue
182 lines (156 loc) · 3.7 KB
/
Hero.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
<!--
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>
<section class="hero">
<div class="copy-container">
<h1 class="title">{{title}}</h1>
<ContentNode v-if="content" :content="content" />
<p v-if="estimatedTime" class="meta">
<TimerIcon />
<span class="meta-content">
<strong class="time">{{estimatedTime}}</strong>
<span> {{ $t('tutorials.estimated-time') }}</span>
</span>
</p>
<CallToActionButton
v-if="action"
:action="action"
:aria-label="$t('tutorials.overriding-title', { newTitle: action.overridingTitle, title } )"
isDark
/>
</div>
<Asset v-if="image" :identifier="image" />
</section>
</template>
<script>
import Asset from 'docc-render/components/Asset.vue';
import CallToActionButton from 'docc-render/components/CallToActionButton.vue';
import ContentNode from 'docc-render/components/ContentNode.vue';
import TimerIcon from 'theme/components/Icons/TimerIcon.vue';
export default {
name: 'Hero',
components: {
Asset,
CallToActionButton,
ContentNode,
TimerIcon,
},
props: {
action: {
type: Object,
required: false,
},
content: {
type: Array,
required: false,
},
estimatedTime: {
type: String,
required: false,
},
image: {
type: String,
required: false,
},
title: {
type: String,
required: true,
},
},
};
</script>
<style scoped lang="scss">
@import 'docc-render/styles/_core.scss';
.hero {
@include breakpoint-content;
@media screen {
// ensure dark colors are always used, regardless of the selected
// light/dark/auto color scheme preference
//
// unfortunately the order of the property declaration matters here due
// to the way that some properties refer to others, which is why both the
// light and the dark vars are included here, even though the dark ones
// override the light ones...
@include color-vars-light;
@include color-vars-dark;
}
padding-bottom: rem(80px);
padding-top: rem(80px);
}
.copy-container {
margin: 0 auto;
text-align: center;
width: 720px;
}
.title {
@include font-styles(headline);
color: var(--color-tutorials-overview-content);
}
.content {
@include font-styles(body-large);
color: var(--color-tutorials-overview-content);
}
.meta {
color: var(--color-tutorials-overview-content-alt);
align-items: center;
display: flex;
justify-content: center;
&-content {
@include font-styles(body-reduced);
}
.timer-icon {
margin-right: rem(6px);
height: $icon-size-default;
width: $icon-size-default;
fill: var(--color-tutorials-overview-icon);
@include breakpoint(small) {
margin-right: rem(5px);
height: rem(14px);
width: rem(14px);
}
}
.time {
@include font-styles(tutorials-overview-hero-meta-time);
}
}
.title + .content {
margin-top: rem(25px);
}
.content + .meta {
margin-top: rem(20px);
}
.button-cta {
margin-top: rem(30px);
}
* + .asset {
margin-top: rem(70px);
}
@include breakpoint(medium) {
.copy-container {
width: 636px;
}
}
@include breakpoint(small) {
.hero {
padding-bottom: rem(30px);
padding-top: rem(40px);
}
.copy-container {
width: 100%;
}
.title + .content {
margin-top: rem(15px);
}
.button-cta {
margin-top: rem(24px);
}
* + .asset {
margin-top: rem(38px);
}
}
</style>