From 370e3db3455f548699ff5e046e0f8dcc304991ac Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 14 Feb 2020 09:19:53 +0100 Subject: viewer: major code and search mode overhaul Updated libraries to the lastest version SCSS Formatter as suggested VSC extensions Renamed toolbar-color by scrollbar-color LD components use Props in favor of touching the stores directly (when possible) Moved most common algorithms to a "services" folder Complete search overhaul (lots of code change) --- viewer/src/views/GallerySearch.vue | 36 ++++++++++++++++++++++++++---------- 1 file changed, 26 insertions(+), 10 deletions(-) (limited to 'viewer/src/views/GallerySearch.vue') diff --git a/viewer/src/views/GallerySearch.vue b/viewer/src/views/GallerySearch.vue index 97c5c66..eacbcdd 100644 --- a/viewer/src/views/GallerySearch.vue +++ b/viewer/src/views/GallerySearch.vue @@ -18,25 +18,41 @@ --> -- cgit v1.2.3 From eb00c2a7874608f70ec7768eae8d006a22bc0a54 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Sun, 23 Feb 2020 21:33:20 +0100 Subject: viewer: absolute path fix --- 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 eacbcdd..f4c28b0 100644 --- a/viewer/src/views/GallerySearch.vue +++ b/viewer/src/views/GallerySearch.vue @@ -25,7 +25,7 @@ import { Component, Vue, Prop, Watch } from "vue-property-decorator"; import { Operation } from "@/@types/Operation"; import IndexSearch from "@/services/indexsearch"; -import IndexFactory from "../services/indexfactory"; +import IndexFactory from "@/services/indexfactory"; @Component export default class GalleryPicture extends Vue { -- cgit v1.2.3