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
|
<template>
<section class="section is-fullheight">
<template v-if="files && files.length">
<div class="align-top">
<div class="container">
<h1 class="title">
{{ name }}
</h1>
<h2 class="subtitle">
Serving {{ totalFiles }} files
</h2>
<a
v-if="downloadLink"
:href="downloadLink">Download Album</a>
<hr>
</div>
</div>
<div class="container">
<template v-if="!isNsfw || (isNsfw && nsfwConsent)">
<Grid
v-if="files && files.length"
:files="files"
:is-public="true"
:width="200"
:enable-search="false"
:enable-toolbar="false">
<template v-slot:pagination>
<b-pagination
:total="totalFiles"
:per-page="limit"
:current.sync="current"
range-before="2"
range-after="2"
class="pagination-slot"
icon-prev="icon-interface-arrow-left"
icon-next="icon-interface-arrow-right"
icon-pack="icon"
aria-next-label="Next page"
aria-previous-label="Previous page"
aria-page-label="Page"
aria-current-label="Current page" />
</template>
</Grid>
</template>
<template v-else>
<div class="nsfw">
<i class="mdi mdi-alert mdi-48px" />
<h1>NSFW Content</h1>
<p>
This album contains images or videos that are not safe for work or are inappropriate to view in some situations.<br>
Do you wish to proceed?
</p>
<button
class="button is-danger"
@click="nsfwConsent = true">
Show me the content
</button>
</div>
</template>
</div>
</template>
<template v-else>
<div class="container">
<h1 class="title">
:(
</h1>
<h2 class="subtitle">
This album seems to be empty
</h2>
</div>
</template>
</section>
</template>
<script>
import { mapGetters } from 'vuex';
import axios from 'axios';
import Grid from '~/components/grid/Grid.vue';
export default {
components: { Grid },
data() {
return {
nsfwConsent: false,
current: 1,
name: null,
downloadEnabled: false,
files: [],
downloadLink: null,
isNsfw: false,
totalFiles: 0
};
},
computed: {
...mapGetters({
limit: 'images/getLimit'
}),
config() {
return this.$store.state.config;
}
},
watch: {
current: 'fetchPaginate'
},
async asyncData({ app, params, error }) {
try {
const { data } = await axios.get(`${app.store.state.config.baseURL}/album/${params.identifier}`, { params: { limit: 50, page: 1 } });
const downloadLink = data.downloadEnabled ? `${app.store.state.config.baseURL}/album/${params.identifier}/zip` : null;
return {
name: data.name,
downloadEnabled: data.downloadEnabled,
files: data.files,
downloadLink,
isNsfw: data.isNsfw,
totalFiles: data.count
};
} catch (err) {
console.log('Error when retrieving album', err);
error({ statusCode: 404, message: 'Album not found' });
}
},
methods: {
async fetch(page = 1) {
try {
const { data } = await axios.get(
`${this.$store.state.config.baseURL}/album/${this.$route.params.identifier}`,
{ params: { limit: 50, page } }
);
const downloadLink = data.downloadEnabled ? `${this.$store.state.config.baseURL}/album/${this.$route.params.identifier}/zip` : null;
this.name = data.name;
this.downloadEnabled = data.downloadEnabled;
this.files = data.files;
this.downloadLink = downloadLink;
this.isNsfw = data.isNsfw;
this.totalFiles = data.count;
} catch (err) {
this.$notifier.error(err.message);
}
},
async fetchPaginate() {
this.isLoading = true;
await this.fetch(this.current);
this.isLoading = false;
}
},
head() {
if (this.files) {
return {
title: `${this.name ? this.name : ''}`,
meta: [
{ vmid: 'twitter:title', name: 'twitter:title', content: `Album: ${this.name} | Files: ${this.files.length}` },
{ vmid: 'twitter:image', name: 'twitter:image', content: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` },
{ vmid: 'twitter:image:src', name: 'twitter:image:src', value: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` },
{ vmid: 'og:url', property: 'og:url', content: `${this.config.URL}/a/${this.$route.params.identifier}` },
{ vmid: 'og:title', property: 'og:title', content: `Album: ${this.name} | Files: ${this.files.length}` },
{ vmid: 'og:image', property: 'og:image', content: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` },
{ vmid: 'og:image:secure_url', property: 'og:image:secure_url', content: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` }
]
};
}
return {
title: `${this.name ? this.name : ''}`,
meta: [
{ vmid: 'og:url', property: 'og:url', content: `${this.config.URL}/a/${this.$route.params.identifier}` }
]
};
}
};
</script>
<style lang="scss" scoped>
section.hero div.hero-body.align-top {
align-items: baseline;
flex-grow: 0;
padding-bottom: 0;
}
div.loading-container {
justify-content: center;
display: flex;
}
.nsfw {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 50vh;
h1 {
font-size: 2rem;
margin-bottom: 2rem;
}
p {
font-size: 1.5rem;
margin-bottom: 2rem;
text-align: center;
}
}
</style>
<style lang="scss">
.pagination-slot > .pagination-previous, .pagination-slot > .pagination-next {
display: none !important;
}
</style>
|