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
|
<style lang="scss" scoped>
.albumsModal .columns .column { padding: .25rem; }
</style>
<template>
<section class="hero is-fullheight dashboard">
<div class="hero-body">
<div class="container">
<div class="columns">
<div class="column is-narrow">
<Sidebar />
</div>
<div class="column">
<h2 class="subtitle">Your uploaded files</h2>
<hr>
<!-- TODO: Add a list view so the user can see the files that don't have thumbnails, like text documents -->
<Grid v-if="files.length"
:files="files"
:enableSearch="false" />
</div>
</div>
</div>
</div>
<b-modal :active.sync="isAlbumsModalActive"
:width="640"
scroll="keep">
<div class="card albumsModal">
<div class="card-content">
<div class="content">
<h3 class="subtitle">Select the albums this file should be a part of</h3>
<hr>
<div class="columns is-multiline">
<div v-for="(album, index) in albums"
:key="index"
class="column is-3">
<div class="field">
<b-checkbox :value="isAlbumSelected(album.id)"
@input="albumCheckboxClicked($event, album.id)">{{ album.name }}</b-checkbox>
</div>
</div>
</div>
</div>
</div>
</div>
</b-modal>
</section>
</template>
<script>
import Sidebar from '~/components/sidebar/Sidebar.vue';
import Grid from '~/components/grid/Grid.vue';
export default {
components: {
Sidebar,
Grid
},
middleware: 'auth',
data() {
return {
files: [],
albums: [],
isAlbumsModalActive: false,
showingModalForFile: null
};
},
metaInfo() {
return { title: 'Uploads' };
},
mounted() {
this.getFiles();
this.getAlbums();
},
methods: {
isAlbumSelected(id) {
if (!this.showingModalForFile) return;
const found = this.showingModalForFile.albums.find(el => el.id === id);
return found ? found.id ? true : false : false;
},
openAlbumModal(file) {
this.showingModalForFile = file;
this.isAlbumsModalActive = true;
},
async albumCheckboxClicked(value, id) {
const response = await this.$axios.$post(`file/album/${value ? 'add' : 'del'}`, {
albumId: id,
fileId: this.showingModalForFile.id
});
this.$buefy.toast.open(response.message);
// Not the prettiest solution to refetch on each click but it'll do for now
this.getFiles();
},
async getFiles() {
const response = await this.$axios.$get(`files`);
this.files = response.files;
},
async getAlbums() {
const response = await this.$axios.$get(`albums/dropdown`);
this.albums = response.albums;
}
}
};
</script>
|