1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<script lang="ts">
import {defineComponent, PropType} from 'vue';
import {TolNode, LayoutNode} from '../lib';
export default defineComponent({
props: {
layoutTree: {type: Object as PropType<LayoutNode>, required: true},
tolMap: {type: Object as PropType<Map<string,TolNode>>, required: true},
options: {type: Object, required: true},
},
methods: {
closeClicked(evt: Event){
if (evt.target == this.$el || evt.target == this.$refs.closeIcon){
this.$emit('search-close');
}
},
onSearchEnter(){
let input = this.$refs.searchInput as HTMLInputElement;
let tolNode = this.tolMap.get(input.value);
if (tolNode == null){
input.value = '';
// Trigger failure animation
input.classList.remove('animate-red-then-fade');
input.offsetWidth; // Triggers reflow
input.classList.add('animate-red-then-fade');
} else {
this.$emit('search-node', tolNode);
}
},
focusInput(){
(this.$refs.searchInput as HTMLInputElement).focus();
},
},
mounted(){
(this.$refs.searchInput as HTMLInputElement).focus();
},
emits: ['search-node', 'search-close']
});
</script>
<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 top-1/2 -translate-y-1/2 p-3
bg-stone-50 rounded-md shadow shadow-black flex gap-1">
<input type="text" class="block border"
@keyup.enter="onSearchEnter" @keyup.esc="closeClicked" ref="searchInput"/>
<svg class="block w-6 h-6 ml-1 hover:cursor-pointer hover:bg-stone-200" @click.stop="onSearchEnter">
<use href="#svg-search"/>
</svg>
</div>
</div>
</template>
<style>
.animate-red-then-fade {
animation-name: red-then-fade;
animation-duration: 500ms;
animation-timing-function: ease-in;
}
@keyframes red-then-fade {
from {
background-color: rgba(255,0,0,0.2);
}
to {
background-color: transparent;
}
}
</style>
|