aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/PanelLeft.vue
blob: 54b9c638e2cedc8ef08d22964a5814e10500d72d (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
<!-- 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" />
    <ld-command-search @clear="clear" @search="search" />
    <h1 class="title">{{$t('panelLeft.propositions')}}</h1>
    <ld-proposition
      :search-filters.sync="searchFilters"
      :tags-index="$galleryStore.tagsIndex"
      :current-tags="currentTags()"
      class="scrollbar no-scroll-x"
    />
  </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) {
      const tagsIndex = this.$galleryStore.tagsIndex;
      this.searchFilters = Object.keys(route.query).flatMap(filter => IndexFactory.searchTags(tagsIndex, filter));
      this.$galleryStore.setCurrentSearch([...this.searchFilters]);
    }
  }
}
</script>

<style lang="scss">
.sidebar {
  .title {
    margin: 0.2em 0.5em !important;
  }
}
</style>