|
@@ -79,6 +79,13 @@
|
|
<Waterfall
|
|
<Waterfall
|
|
:gutterWidth="10"
|
|
:gutterWidth="10"
|
|
:gutterHeight="4">
|
|
:gutterHeight="4">
|
|
|
|
+ <!-- Gotta implement search and pagination here -->
|
|
|
|
+ <input v-model="searchTerm"
|
|
|
|
+ type="text"
|
|
|
|
+ placeholder="Search..."
|
|
|
|
+ @input="search()"
|
|
|
|
+ @keyup.enter="search()">
|
|
|
|
+
|
|
<WaterfallItem v-for="(item, index) in files"
|
|
<WaterfallItem v-for="(item, index) in files"
|
|
v-if="showWaterfall && item.thumb"
|
|
v-if="showWaterfall && item.thumb"
|
|
:key="index"
|
|
:key="index"
|
|
@@ -153,14 +160,29 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
- return { showWaterfall: true };
|
|
|
|
|
|
+ return {
|
|
|
|
+ showWaterfall: true,
|
|
|
|
+ searchTerm: null
|
|
|
|
+ };
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
config() {
|
|
config() {
|
|
return this.$store.state.config;
|
|
return this.$store.state.config;
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ mounted() {
|
|
|
|
+ this.$search.items(this.files);
|
|
|
|
+ },
|
|
methods: {
|
|
methods: {
|
|
|
|
+ async search() {
|
|
|
|
+ const data = await this.$search.do(this.searchTerm, [
|
|
|
|
+ 'name',
|
|
|
|
+ 'original',
|
|
|
|
+ 'type',
|
|
|
|
+ 'albums:name'
|
|
|
|
+ ]);
|
|
|
|
+ console.log('> Search result data', data);
|
|
|
|
+ },
|
|
deleteFile(file, index) {
|
|
deleteFile(file, index) {
|
|
this.$dialog.confirm({
|
|
this.$dialog.confirm({
|
|
title: 'Deleting file',
|
|
title: 'Deleting file',
|