aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/GalleryDirectory.vue
diff options
context:
space:
mode:
authorZero~Informatique2020-06-19 22:12:03 +0200
committerZero~Informatique2020-06-19 22:12:03 +0200
commit69dc0d20706ed41e5ecdbb77515066d8a7d7703b (patch)
tree8b69fcb1d4a96290134980e75281563f8b4c271e /viewer/src/views/GalleryDirectory.vue
parenta053076d692be5e3698fe1a2c071d077cb4b6b73 (diff)
downloadldgallery-69dc0d20706ed41e5ecdbb77515066d8a7d7703b.tar.gz
viewer: code update (no functional change)
Types { [x: T]: R } updated to Record<T, R> Methods in template updated to getters (computed in VueJS), which are reactive and cached Code formatting
Diffstat (limited to 'viewer/src/views/GalleryDirectory.vue')
-rw-r--r--viewer/src/views/GalleryDirectory.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/views/GalleryDirectory.vue b/viewer/src/views/GalleryDirectory.vue
index 30f651c..bfe484e 100644
--- a/viewer/src/views/GalleryDirectory.vue
+++ b/viewer/src/views/GalleryDirectory.vue
@@ -18,7 +18,7 @@
18--> 18-->
19 19
20<template> 20<template>
21 <ld-gallery :items="orderedItems()" :noresult="$t('directory.no-results')" /> 21 <ld-gallery :items="orderedItems" :noresult="$t('directory.no-results')" />
22</template> 22</template>
23 23
24<script lang="ts"> 24<script lang="ts">
@@ -33,7 +33,7 @@ export default class GalleryDirectory extends Vue {
33 this.$uiStore.toggleFullscreen(false); 33 this.$uiStore.toggleFullscreen(false);
34 } 34 }
35 35
36 orderedItems() { 36 get orderedItems() {
37 return Navigation.directoriesFirst(this.directory.properties.items); 37 return Navigation.directoriesFirst(this.directory.properties.items);
38 } 38 }
39} 39}