diff options
author | Zero~Informatique | 2020-04-02 18:45:20 +0200 |
---|---|---|
committer | Notkea | 2020-04-02 20:32:05 +0200 |
commit | 332b208d3fdc91d29181c8f42ef5ff9b1fd1f09a (patch) | |
tree | 033eb7eb6a6f8bfa512ffd20f072c710f40949d7 /viewer/src/components | |
parent | 78961dd465779c6df40425fa49a8d30cd6b89fed (diff) | |
download | ldgallery-332b208d3fdc91d29181c8f42ef5ff9b1fd1f09a.tar.gz |
viewer: press "enter" in the empty tagInput to trigger a search
revert: viewer: removing a tag from the filters opens the keyboard on mobile (fixed in Buefy)
GitHub: Resolves #168
Diffstat (limited to 'viewer/src/components')
-rw-r--r-- | viewer/src/components/LdTagInput.vue | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/viewer/src/components/LdTagInput.vue b/viewer/src/components/LdTagInput.vue index bdb07bc..b1b9e3e 100644 --- a/viewer/src/components/LdTagInput.vue +++ b/viewer/src/components/LdTagInput.vue | |||
@@ -30,7 +30,9 @@ | |||
30 | size="is-medium" | 30 | size="is-medium" |
31 | class="paneltag-input" | 31 | class="paneltag-input" |
32 | @typing="searchTags" | 32 | @typing="searchTags" |
33 | @click.capture.native="onClick" | 33 | @add="clearCurrentFilter" |
34 | @remove="clearCurrentFilter" | ||
35 | @keydown.enter.native="onKeyEnter" | ||
34 | > | 36 | > |
35 | <template slot-scope="props">{{displayOption(props.option)}}</template> | 37 | <template slot-scope="props">{{displayOption(props.option)}}</template> |
36 | <template slot="empty">{{$t('tagInput.nomatch')}}</template> | 38 | <template slot="empty">{{$t('tagInput.nomatch')}}</template> |
@@ -38,7 +40,7 @@ | |||
38 | </template> | 40 | </template> |
39 | 41 | ||
40 | <script lang="ts"> | 42 | <script lang="ts"> |
41 | import { Component, Vue, Prop, PropSync } from "vue-property-decorator"; | 43 | import { Component, Vue, Prop, PropSync, Emit } from "vue-property-decorator"; |
42 | import { Operation } from "@/@types/Operation"; | 44 | import { Operation } from "@/@types/Operation"; |
43 | import Navigation from "@/services/navigation"; | 45 | import Navigation from "@/services/navigation"; |
44 | import IndexFactory from "@/services/indexfactory"; | 46 | import IndexFactory from "@/services/indexfactory"; |
@@ -48,6 +50,7 @@ export default class LdTagInput extends Vue { | |||
48 | @Prop({ required: true }) readonly tagsIndex!: Tag.Index; | 50 | @Prop({ required: true }) readonly tagsIndex!: Tag.Index; |
49 | @PropSync("searchFilters", { type: Array, required: true }) model!: Tag.Search[]; | 51 | @PropSync("searchFilters", { type: Array, required: true }) model!: Tag.Search[]; |
50 | 52 | ||
53 | currentFilter: string = ""; | ||
51 | filteredTags: Tag.Search[] = []; | 54 | filteredTags: Tag.Search[] = []; |
52 | 55 | ||
53 | displayOption(option: Tag.Search): string { | 56 | displayOption(option: Tag.Search): string { |
@@ -55,15 +58,27 @@ export default class LdTagInput extends Vue { | |||
55 | } | 58 | } |
56 | 59 | ||
57 | searchTags(filter: string) { | 60 | searchTags(filter: string) { |
61 | this.currentFilter = filter; | ||
58 | this.filteredTags = IndexFactory.searchTags(this.tagsIndex, filter, false) | 62 | this.filteredTags = IndexFactory.searchTags(this.tagsIndex, filter, false) |
59 | .filter(newSearch => !this.model.find(currentSearch => currentSearch.tag === newSearch.tag)) | 63 | .filter(newSearch => !this.model.find(currentSearch => currentSearch.tag === newSearch.tag)) |
60 | .sort((a, b) => b.items.length - a.items.length); | 64 | .sort((a, b) => b.items.length - a.items.length); |
61 | } | 65 | } |
62 | 66 | ||
63 | // Prevents the keyboard from opening on mobile when removing a tag | 67 | clearCurrentFilter() { |
64 | onClick(e: MouseEvent) { | 68 | // Necessary for @keydown.enter.native, nexttick is too short |
65 | const target = e.target; | 69 | setTimeout(() => { |
66 | if (target instanceof HTMLAnchorElement) target.addEventListener("click", e => e.stopPropagation(), true); | 70 | this.currentFilter = ""; |
71 | this.filteredTags = []; | ||
72 | }); | ||
73 | } | ||
74 | |||
75 | onKeyEnter(e: KeyboardEvent) { | ||
76 | if (!this.currentFilter) this.onkeyenterEmpty(e); | ||
77 | } | ||
78 | |||
79 | @Emit() | ||
80 | onkeyenterEmpty(e: KeyboardEvent) { | ||
81 | return e; | ||
67 | } | 82 | } |
68 | } | 83 | } |
69 | </script> | 84 | </script> |