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/components/LdGallery.vue | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 viewer/src/components/LdGallery.vue (limited to 'viewer/src/components/LdGallery.vue') diff --git a/viewer/src/components/LdGallery.vue b/viewer/src/components/LdGallery.vue new file mode 100644 index 0000000..169bc54 --- /dev/null +++ b/viewer/src/components/LdGallery.vue @@ -0,0 +1,47 @@ + + + + + + + -- cgit v1.2.3 From 4641f35baebd618ec51fa549adf64670c31c647f Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Thu, 27 Feb 2020 17:42:24 +0100 Subject: viewer: added a count of results found in other folders when no-results are found --- viewer/src/components/LdGallery.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'viewer/src/components/LdGallery.vue') diff --git a/viewer/src/components/LdGallery.vue b/viewer/src/components/LdGallery.vue index 169bc54..16e9f7c 100644 --- a/viewer/src/components/LdGallery.vue +++ b/viewer/src/components/LdGallery.vue @@ -24,7 +24,7 @@ -
{{noresult}}
+
{{noresult}}
@@ -44,4 +44,7 @@ export default class LdPicture extends Vue { -- cgit v1.2.3 From 7f0b8367a2092c5ffd69e9e46d055cbd605c0e3a Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 28 Feb 2020 18:50:12 +0100 Subject: viewer: more minor architectural and performance improvement --- viewer/src/components/LdGallery.vue | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'viewer/src/components/LdGallery.vue') diff --git a/viewer/src/components/LdGallery.vue b/viewer/src/components/LdGallery.vue index 16e9f7c..cd4bc28 100644 --- a/viewer/src/components/LdGallery.vue +++ b/viewer/src/components/LdGallery.vue @@ -19,11 +19,9 @@ -- cgit v1.2.3 From 53bbb2b65e405aa93f1689faabce9cfa019e6d8f Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Mon, 27 Apr 2020 15:41:51 +0200 Subject: viewer: moved the global thumbnail CSS class to its component --- viewer/src/components/LdGallery.vue | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'viewer/src/components/LdGallery.vue') diff --git a/viewer/src/components/LdGallery.vue b/viewer/src/components/LdGallery.vue index cd4bc28..29c18b9 100644 --- a/viewer/src/components/LdGallery.vue +++ b/viewer/src/components/LdGallery.vue @@ -42,7 +42,16 @@ export default class LdPicture extends Vue { -- cgit v1.2.3