-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathList.vue
262 lines (222 loc) · 5.88 KB
/
List.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<template>
<div class="gallery-list">
<nav class="list-main">
<ul
v-for="(main) in preparedList"
class="list"
>
<li
v-for="(item) in main.listItems"
:key="item.id"
class="item"
>
<h3
class="item-title"
@mouseout="mouseOut()"
@mouseover="mouseOver(item)"
>
<nuxt-link
:to="item.uri"
class="link"
>
{{ item.title }}
</nuxt-link>
</h3>
</li>
</ul>
</nav>
<transition
mode="out-in"
name="fade"
>
<wp-image
v-if="image"
:key="image.id"
:caption="caption"
:class="imageClasses"
:image="image"
mode="fullbleed"
@error-video="videoError"
@error-image="imageError"
@loaded-image="imageLoaded"
@loaded-video="videoLoaded"
/>
</transition>
</div>
</template>
<script>
import _shapeListData from "~/utils/_shapeListData"
export default {
name: "List",
props: {
items: {
type: Array,
default: () => []
},
},
data() {
return {
isImageLoaded: false,
isVideoLoaded: false,
isImageError: false,
isVideoError: false,
caption: '',
image: null
}
},
computed: {
imageClasses() {
return [
{
'has-loaded-media': this.isImageLoaded || this.isVideoLoaded,
'has-full-media-error': this.isVideoError && this.isImageError && !this.isImageLoaded && !this.isVideoLoaded,
}
]
},
preparedList() {
let tempData = this.items
let {right, left} = _shapeListData(tempData, 3)
let trimmed = _shapeListData(left, 2)
return [
{
listItems: trimmed.left
},
{
listItems: trimmed.right
},
{
listItems: right
}
]
},
},
methods: {
videoLoaded() {
this.isVideoLoaded = true
},
imageLoaded() {
this.isImageLoaded = true
},
videoError() {
this.isVideoError = true
},
imageError() {
this.isImageError = true
},
mouseOver(item) {
this.caption = item.featuredImage.node.caption !== null ? item.featuredImage.node.caption : `Who the fuxt is ${item.title}?`
this.image = item.featuredImage.node
},
mouseOut() {
this.isVideoLoaded = false
this.isImageLoaded = false
this.isVideoError = false
this.isImageError = false
this.caption = ''
this.image = null
},
}
}
</script>
<style lang="scss" scoped>
.gallery-list {
position: relative;
z-index: 0;
max-width: 1280px;
min-height: var(--unit-100vh);
margin: 0 auto;
padding: 0 var(--unit-gap);
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: var(--font-primary);
.list {
margin: 0;
padding: 0;
list-style: none;
}
.list-main {
position: relative;
z-index: 20;
max-width: 1180px;
width: 100%;
height: 100%;
box-sizing: border-box;
margin: 0 auto;
display: flex;
justify-content: space-between;
}
.item-title {
display: inline-block;
margin: 0;
}
.link {
padding: 17px 0;
display: block;
font-size: 24px;
color: var(--color-yellow);
}
.wp-image {
position: absolute;
z-index: 10;
max-width: 960px;
width: 100%;
max-height: 540px;
height: 100%;
margin: auto;
overflow: hidden;
box-sizing: border-box;
&.has-loaded-media {
// don't hide media if video has 404 but item still has an image
/deep/ .media {
opacity: 1;
}
}
&.has-full-media-error {
// set overflow to visible in case the item name is long
overflow: visible;
// hide the sizer so the broken image icon isn't visible on 404 images
/deep/ .sizer {
visibility: hidden;
}
// display the caption
/deep/ .caption {
opacity: 1;
}
}
}
/deep/ .caption {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
background: #212121;
text-align: right;
font-size: 8vw;
line-height: 1;
text-transform: uppercase;
color: #FFFFFFFF;
opacity: 0;
transition: opacity .4s ease-in-out;
transition-delay: .4s; // add slight delay so you don't see a flash of the caption on items that have image 404s but still have videos
}
@media #{$has-hover} {
.link {
&:hover {
color: var(--color-white);
}
}
}
@media #{$lt-phone} {
.list-main {
display: block;
text-align: center;
}
/deep/ .caption {
font-size: 18vw;
}
}
}
</style>