blob: 541b29647a0a4bba665a5f1885c6b6582bfe1acd (
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
88
89
90
91
92
93
94
95
96
97
98
|
<!-- ldgallery - A static generator which turns a collection of tagged
-- pictures into a searchable web gallery.
--
-- Copyright (C) 2019-2020 Guillaume FOUET
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU Affero General Public License as
-- published by the Free Software Foundation, either version 3 of the
-- License, or (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU Affero General Public License for more details.
--
-- You should have received a copy of the GNU Affero General Public License
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<template>
<div class="flex-column sidebar">
<ld-tag-input
:search-filters.sync="searchFilters"
:tags-index="$galleryStore.tagsIndex"
@onkeyenter-empty="search"
/>
<ld-command-search @clear="clear" @search="search" />
<h1 class="title">{{$t('panelLeft.propositions')}}</h1>
<div class="scrollbar no-scroll-x">
<ld-proposition
v-for="(category) in $galleryStore.tagsCategories"
:key="category.tag"
:category="$galleryStore.tagsIndex[category.tag]"
:show-category="$galleryStore.tagsCategories.length > 1"
:search-filters.sync="searchFilters"
:tags-index="category.index"
:current-tags="currentTags()"
/>
</div>
</div>
</template>
<script lang="ts">
import { Component, Vue, Prop, Watch } from "vue-property-decorator";
import { Dictionary, Route } from "vue-router/types/router";
import Navigation from "@/services/navigation";
import IndexFactory from "@/services/indexfactory";
@Component
export default class PanelLeft extends Vue {
searchFilters: Tag.Search[] = [];
mounted() {
this.restoreSearchFilters(this.$route);
}
clear() {
this.searchFilters = [];
this.search();
}
search() {
const lastDirectory = Navigation.getLastDirectory(this.$galleryStore.currentItemPath);
this.$router.push({ path: lastDirectory.path, query: this.serializeSearch() }).catch(err => {
if (err.name !== "NavigationDuplicated") throw err;
});
}
serializeSearch() {
let query: Dictionary<null> = {};
this.searchFilters.forEach(filter => (query[filter.display] = null));
return query;
}
currentTags() {
return this.$galleryStore.currentItem?.tags ?? [];
}
@Watch("$route")
restoreSearchFilters(route: Route) {
const query = Object.keys(route.query);
if (query.length > 0) this.$galleryStore.search(query).then(search => (this.searchFilters = [...search]));
}
}
</script>
<style lang="scss">
@import "@/assets/scss/theme.scss";
.sidebar {
.title {
background-color: $proposed-category-bgcolor;
padding: 0.2em 0.5em;
margin: 0 0 1px 0;
font-variant: small-caps;
}
}
</style>
|