aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/Gallery.vue
blob: 20202803436f4737c0758113ba55a3bbfa3bdbc7 (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
<template>
  <div>
    <gallery-directory v-if="isDirectory" :directory="currentItem" />
    <gallery-image v-if="isImage" :image="currentItem" />
  </div>
</template>

<script lang="ts">
import { Component, Vue, Prop } from "vue-property-decorator";
import GalleryDirectory from "./GalleryDirectory.vue";
import GalleryImage from "./GalleryImage.vue";

@Component({
  components: { GalleryDirectory, GalleryImage },
})
export default class Gallery extends Vue {
  @Prop(String) readonly pathMatch!: string;

  get isDirectory(): boolean {
    return this.checkType("directory");
  }

  get isImage(): boolean {
    return this.checkType("image");
  }

  get currentItem(): Gallery.Item | null {
    const galleryItemsRoot = this.$galleryStore.galleryItemsRoot;
    if (galleryItemsRoot) return this.searchCurrentItem(galleryItemsRoot, this.pathMatch);
    return null;
  }

  // ---

  private searchCurrentItem(item: Gallery.Item, currentPath: string): Gallery.Item | null {
    if (currentPath === item.path) return item;
    if (item.properties.type === "directory" && currentPath.startsWith(item.path)) {
      const itemFound = item.properties.items
        .map(item => this.searchCurrentItem(item, currentPath))
        .find(item => Boolean(item));
      return itemFound || null;
    }
    return null;
  }

  private checkType(type: string): boolean {
    return (this.currentItem && this.currentItem.properties.type === type) || false;
  }
}
</script>

<style lang="scss">
</style>