blob: d2a36567762eb96b001d4ebba35d15d6f5533375 (
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
<!-- 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" :class="$style.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 flex-grow-1" :class="$style.flexShrinkFully">
<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>
<h1 :class="$style.infoPanelTitleBar" class="flex title" @click="infoOpen = !infoOpen">
{{ $t("panelLeft.information.title") }}
<fa-icon :icon="infoOpen ? 'caret-down' : 'caret-up'" />
</h1>
<transition name="flex-expand">
<ld-information v-show="infoOpen" :item="$galleryStore.currentItem" class="scrollbar no-scroll-x" />
</transition>
</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[] = [];
infoOpen: boolean = true;
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;
}
get 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" module>
@import "~@/assets/scss/theme.scss";
.sidebar {
:global(.title) {
background-color: $proposed-category-bgcolor;
padding: 0.2em 0.5em;
margin: 0 0 1px 0;
font-variant: small-caps;
justify-content: space-between;
user-select: none;
> svg {
color: $link;
margin-top: 2px; // Fixes a vertical centering issue with the carret
}
}
.infoPanelTitleBar {
cursor: pointer;
}
}
.flexShrinkFully {
flex-shrink: 1000;
}
</style>
|