summaryrefslogtreecommitdiff
path: root/src/client/pages/drive.vue
blob: 8f8e949dcb6059557f4b2efab8c1bc3b85a0e0b5 (plain)
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
<template>
<div class="naked full">
	<portal to="header">
		<button @click="menu" class="_button _jmoebdiw_">
			<fa :icon="faCloud" style="margin-right: 8px;"/>
			<span v-if="folder">{{ $t('drive') }} ({{ folder.name }})</span>
			<span v-else>{{ $t('drive') }}</span>
			<fa :icon="menuOpened ? faAngleUp : faAngleDown" style="margin-left: 8px;"/>
		</button>
	</portal>
	<x-drive ref="drive" @cd="x => folder = x"/>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
import { faCloud, faAngleDown, faAngleUp, faFolderPlus, faUpload, faLink, faICursor, faTrashAlt } from '@fortawesome/free-solid-svg-icons';
import XDrive from '../components/drive.vue';

export default Vue.extend({
	metaInfo() {
		return {
			title: this.$t('drive') as string
		};
	},

	components: {
		XDrive
	},

	data() {
		return {
			menuOpened: false,
			folder: null,
			faCloud, faAngleDown, faAngleUp
		};
	},

	methods: {
		menu(ev) {
			this.menuOpened = true;
			this.$root.menu({
				items: [{
					text: this.$t('addFile'),
					type: 'label'
				}, {
					text: this.$t('upload'),
					icon: faUpload,
					action: () => { this.$refs.drive.selectLocalFile(); }
				}, {
					text: this.$t('fromUrl'),
					icon: faLink,
					action: () => { this.$refs.drive.urlUpload(); }
				}, null, {
					text: this.folder ? this.folder.name : this.$t('drive'),
					type: 'label'
				}, this.folder ? {
					text: this.$t('renameFolder'),
					icon: faICursor,
					action: () => { this.$refs.drive.renameFolder(this.folder); }
				} : undefined, this.folder ? {
					text: this.$t('deleteFolder'),
					icon: faTrashAlt,
					action: () => { this.$refs.drive.deleteFolder(this.folder); }
				} : undefined, {
					text: this.$t('createFolder'),
					icon: faFolderPlus,
					action: () => { this.$refs.drive.createFolder(); }
				}],
				fixed: true,
				noCenter: true,
				source: ev.currentTarget || ev.target
			}).then(() => {
				this.menuOpened = false;
			});
		}
	}
});
</script>

<style lang="scss">
._jmoebdiw_ {
	height: 100%;
	padding: 0 16px;
	font-weight: bold;
}
</style>