aboutsummaryrefslogtreecommitdiff
path: root/src/site/views/dashboard/Settings.vue
blob: 1a3ab68baf7646906f6d558e0da7103fc6be0334 (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
<style lang="scss" scoped>
	@import '../../styles/colors.scss';
	section { background-color: $backgroundLight1 !important; }
	section.hero div.hero-body {
		align-items: baseline;
	}
	div.search-container {
		display: flex;
		justify-content: center;
	}
</style>
<style lang="scss">
	@import '../../styles/colors.scss';
</style>


<template>
	<section class="hero is-fullheight">
		<div class="hero-body">
			<div class="container">
				<div class="columns">
					<div class="column is-narrow">
						<Sidebar/>
					</div>
					<div class="column">
						<!--
						<h1 class="title">Uploads</h1>
						<h2 class="subtitle">Keep track of all your uploads in here</h2>
						<hr>
						-->

						<div class="field">
							<b-switch v-model="options.removeExif"
								true-value="Remove exif data when uploading files"
								false-value="Don't remove exif data when uploading files"
								type="is-success">
								{{ options.removeExif }}
							</b-switch>
						</div>
					</div>
				</div>
			</div>
		</div>
	</section>
</template>

<script>
import Sidebar from '../../components/sidebar/Sidebar.vue';
import Grid from '../../components/grid/Grid.vue';
// import Waterfall from '../../components/waterfall/Waterfall.vue';
// import WaterfallItem from '../../components/waterfall/WaterfallItem.vue';

export default {
	components: {
		Sidebar,
		Grid
		// Waterfall,
		// WaterfallSlot
		// WaterfallItem
	},
	data() {
		return {
			options: {
				removeExif: false
			}
		};
	},
	metaInfo() {
		return { title: 'Settings' };
	},
	mounted() {
		this.$ga.page({
			page: '/dashboard/settings',
			title: 'Settings',
			location: window.location.href
		});
	},
	methods: {

	}
};
</script>