From dc251fffc2998f1cf4f8e9631928c4b92ac0d90e Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Sun, 22 Dec 2019 07:40:55 +0100 Subject: viewer: Implemented the search by tags. Pushed the special urls to ENV. --- viewer/src/views/GallerySearch.vue | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 viewer/src/views/GallerySearch.vue (limited to 'viewer/src/views/GallerySearch.vue') diff --git a/viewer/src/views/GallerySearch.vue b/viewer/src/views/GallerySearch.vue new file mode 100644 index 0000000..887c1a3 --- /dev/null +++ b/viewer/src/views/GallerySearch.vue @@ -0,0 +1,25 @@ + + + + + -- cgit v1.2.3 From 89bcb2dbe5b5e6eb8e8ba13ceecee2770dfe4cd4 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Thu, 9 Jan 2020 02:10:35 +0100 Subject: viewer: Changed "image" type to "picture". Adapted the code to the current compiler output format. The currentItem and currentPath are calculated in the store for easier multi-component access. Breadcrumb for current's position and navigation. --- viewer/src/views/GallerySearch.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'viewer/src/views/GallerySearch.vue') diff --git a/viewer/src/views/GallerySearch.vue b/viewer/src/views/GallerySearch.vue index 887c1a3..44f312b 100644 --- a/viewer/src/views/GallerySearch.vue +++ b/viewer/src/views/GallerySearch.vue @@ -16,7 +16,7 @@ import GalleryThumbnail from "./GalleryThumbnail.vue"; @Component({ components: { GalleryThumbnail }, }) -export default class GalleryImage extends Vue { +export default class GalleryPicture extends Vue { @Prop({ required: true }) readonly items!: Gallery.Item[]; } -- cgit v1.2.3 From 27b51018525dbb7a6edb3073819d82245387ddd3 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 10 Jan 2020 22:22:22 +0100 Subject: viewer: license headers --- viewer/src/views/GallerySearch.vue | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'viewer/src/views/GallerySearch.vue') diff --git a/viewer/src/views/GallerySearch.vue b/viewer/src/views/GallerySearch.vue index 44f312b..7e61f89 100644 --- a/viewer/src/views/GallerySearch.vue +++ b/viewer/src/views/GallerySearch.vue @@ -1,3 +1,22 @@ + +