diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-03-25 19:27:32 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-03-25 19:27:32 +1100 |
| commit | b59e007e6d23483abe8973fe5c21412ddf8709b7 (patch) | |
| tree | 50e83e829719e7a0eacc87826098bfc2cb7e7d10 /src/components/SearchModal.vue | |
| parent | 79668e596f6da90530dc695b721a32cd8afcf8cf (diff) | |
Add search enter/escape, and close-icon svgs
Diffstat (limited to 'src/components/SearchModal.vue')
| -rw-r--r-- | src/components/SearchModal.vue | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/src/components/SearchModal.vue b/src/components/SearchModal.vue index 0a2a642..6675885 100644 --- a/src/components/SearchModal.vue +++ b/src/components/SearchModal.vue @@ -13,6 +13,12 @@ export default defineComponent({ this.$emit('search-close'); } }, + onSearchEnter(){ + this.$emit('search-node', this.$refs.searchInput.value); + }, + }, + mounted(){ + this.$refs.searchInput.focus(); }, emits: ['search-node', 'search-close'] }); @@ -20,14 +26,22 @@ export default defineComponent({ <template> <div class="fixed left-0 top-0 w-full h-full bg-black/40" @click="closeClicked"> - <div class="absolute left-1/2 -translate-x-1/2 w-4/5 top-1/2 -translate-y-1/2 p-4 - bg-stone-50 rounded-md shadow shadow-black"> - <div class="absolute top-2 right-2 w-[24px] h-[24px] [font-size:24px] [line-height:24px] text-center - font-bold hover:cursor-pointer" - @click="closeClicked" ref="closeIcon">×</div> - <div> - Search - </div> + <div class="absolute left-1/2 -translate-x-1/2 top-1/2 -translate-y-1/2 p-4 + bg-stone-50 rounded-md shadow shadow-black flex gap-1"> + <input type="text" @keyup.enter="onSearchEnter" @keyup.esc="closeClicked" class="block border" ref="searchInput"/> + <svg class="block w-7 h-7 border rounded hover:cursor-pointer hover:bg-stone-200" @click="onSearchEnter" + xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" + stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> + <circle cx="11" cy="11" r="8"/> + <line x1="21" y1="21" x2="16.65" y2="16.65"/> + </svg> + <svg class="block w-7 h-7 border rounded hover:cursor-pointer hover:bg-stone-200" + @click="closeClicked" ref="closeIcon" + xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" + stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> + <line x1="18" y1="6" x2="6" y2="18"/> + <line x1="6" y1="6" x2="18" y2="18"/> + </svg> </div> </div> </template> |
