aboutsummaryrefslogtreecommitdiff
path: root/src/site/pages/a/_identifier.vue
blob: 7ffed35dba066eb3a26aad4eef9ad1bb55759ff8 (plain) (blame)
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
<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 {{ files ? files.length : 0 }} 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>
				<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 axios from 'axios';
import Grid from '~/components/grid/Grid.vue';

export default {
	components: { Grid },
	data() {
		return {
			nsfwConsent: false
		};
	},
	computed: {
		config() {
			return this.$store.state.config;
		}
	},
	async asyncData({ app, params, error }) {
		try {
			const { data } = await axios.get(`${app.store.state.config.baseURL}/album/${params.identifier}`);
			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
			};
		} catch (err) {
			console.log('Error when retrieving album', err);
			error({ statusCode: 404, message: 'Album not found' });
		}
	},
	metaInfo() {
		if (this.files) {
			return {
				title: `${this.name ? this.name : ''}`,
				meta: [
					{ vmid: 'theme-color', name: 'theme-color', content: '#30a9ed' },
					{ vmid: 'twitter:card', name: 'twitter:card', content: 'summary' },
					{ vmid: 'twitter:title', name: 'twitter:title', content: `Album: ${this.name} | Files: ${this.files.length}` },
					{ vmid: 'twitter:description', name: 'twitter:description', content: 'A modern and self-hosted file upload service that can handle anything you throw at it. Fast uploads, file manager and sharing capabilities all crafted with a beautiful user experience in mind.' },
					{ 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:description', property: 'og:description', content: 'A modern and self-hosted file upload service that can handle anything you throw at it. Fast uploads, file manager and sharing capabilities all crafted with a beautiful user experience in mind.' },
					{ 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: 'theme-color', name: 'theme-color', content: '#30a9ed' },
				{ vmid: 'twitter:card', name: 'twitter:card', content: 'summary' },
				{ vmid: 'twitter:title', name: 'twitter:title', content: 'chibisafe' },
				{ vmid: 'twitter:description', name: 'twitter:description', content: 'A modern and self-hosted file upload service that can handle anything you throw at it. Fast uploads, file manager and sharing capabilities all crafted with a beautiful user experience in mind.' },
				{ vmid: 'og:url', property: 'og:url', content: `${this.config.URL}/a/${this.$route.params.identifier}` },
				{ vmid: 'og:title', property: 'og:title', content: 'chibisafe' },
				{ vmid: 'og:description', property: 'og:description', content: 'A modern and self-hosted file upload service that can handle anything you throw at it. Fast uploads, file manager and sharing capabilities all crafted with a beautiful user experience in mind.' }
			]
		};
	}
};
</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>