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/LdCommandSearch.vue | 55 +++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 viewer/src/components/LdCommandSearch.vue (limited to 'viewer/src/components/LdCommandSearch.vue') diff --git a/viewer/src/components/LdCommandSearch.vue b/viewer/src/components/LdCommandSearch.vue new file mode 100644 index 0000000..bd18060 --- /dev/null +++ b/viewer/src/components/LdCommandSearch.vue @@ -0,0 +1,55 @@ + + + + + + + -- 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/LdCommandSearch.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'viewer/src/components/LdCommandSearch.vue') diff --git a/viewer/src/components/LdCommandSearch.vue b/viewer/src/components/LdCommandSearch.vue index bd18060..3d95eb0 100644 --- a/viewer/src/components/LdCommandSearch.vue +++ b/viewer/src/components/LdCommandSearch.vue @@ -23,7 +23,7 @@ {{$t('command.search.clear')}} - + {{$t('command.search.search')}} @@ -35,8 +35,6 @@ import { Component, Vue, Emit } from "vue-property-decorator"; @Component export default class LdCommandSearch extends Vue { - loading: boolean = false; - @Emit() clear(e: HTMLButtonElement) { return e; @@ -44,8 +42,6 @@ export default class LdCommandSearch extends Vue { @Emit() search(e: HTMLButtonElement) { - this.loading = true; - this.$nextTick(() => (this.loading = false)); return e; } } -- cgit v1.2.3 From 0ee006143bbdaabd6fac40a924cf8f1a1aa80be1 Mon Sep 17 00:00:00 2001 From: pacien Date: Sat, 11 Apr 2020 04:09:44 +0200 Subject: viewer: ldcommandsearch: fix flexbox shrinking and overlap GitHub: closes #183 --- viewer/src/components/LdCommandSearch.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'viewer/src/components/LdCommandSearch.vue') diff --git a/viewer/src/components/LdCommandSearch.vue b/viewer/src/components/LdCommandSearch.vue index 3d95eb0..b185a51 100644 --- a/viewer/src/components/LdCommandSearch.vue +++ b/viewer/src/components/LdCommandSearch.vue @@ -18,7 +18,7 @@ -->