From 69dc0d20706ed41e5ecdbb77515066d8a7d7703b Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 19 Jun 2020 22:12:03 +0200 Subject: viewer: code update (no functional change) Types { [x: T]: R } updated to Record Methods in template updated to getters (computed in VueJS), which are reactive and cached Code formatting --- viewer/src/components/LdDownload.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'viewer/src/components/LdDownload.vue') diff --git a/viewer/src/components/LdDownload.vue b/viewer/src/components/LdDownload.vue index d7dfb7d..7b09dab 100644 --- a/viewer/src/components/LdDownload.vue +++ b/viewer/src/components/LdDownload.vue @@ -20,10 +20,10 @@ @@ -32,14 +32,15 @@ import { Component, Prop, Vue } from "vue-property-decorator"; import Navigation from "@/services/navigation"; -@Component export default class LdDownload extends Vue { +@Component +export default class LdDownload extends Vue { @Prop({ required: true }) readonly item!: Gallery.Other; - itemFileName(): string { + get itemFileName(): string { return Navigation.getFileName(this.item); } - itemDownloadUrl(): string { + get itemDownloadUrl(): string { return this.$galleryStore.resourceRoot + this.item.properties.resource; } } -- cgit v1.2.3