https://github.com/user-attachments/assets/fc4d15f9-2b54-4627-940f-94772ec739b1 --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
98 lines
2.3 KiB
Vue
98 lines
2.3 KiB
Vue
<script setup>
|
|
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
|
|
import { ref, computed } from 'vue';
|
|
|
|
const props = defineProps({
|
|
searchTerm: {
|
|
type: [String, Number],
|
|
default: '',
|
|
},
|
|
searchPlaceholder: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
size: {
|
|
type: String,
|
|
default: 'default', // 'small' | 'default'
|
|
validator: value => ['small', 'default'].includes(value),
|
|
},
|
|
kbd: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits(['update:searchTerm', 'focus', 'blur']);
|
|
const isFocused = ref(false);
|
|
const inputRef = ref(null);
|
|
|
|
const sizeClasses = computed(() => {
|
|
if (props.size === 'small') {
|
|
return {
|
|
wrapper: 'h-9 px-3 py-1',
|
|
input: 'text-sm py-0',
|
|
};
|
|
}
|
|
return {
|
|
wrapper: 'h-12 px-5 py-2',
|
|
input: 'text-base py-2',
|
|
};
|
|
});
|
|
|
|
const onChange = e => {
|
|
emit('update:searchTerm', e.target.value);
|
|
};
|
|
|
|
const onFocus = e => {
|
|
isFocused.value = true;
|
|
emit('focus', e.target.value);
|
|
};
|
|
|
|
const onBlur = e => {
|
|
isFocused.value = false;
|
|
emit('blur', e.target.value);
|
|
};
|
|
|
|
const focusInput = () => {
|
|
if (inputRef.value) inputRef.value.focus();
|
|
};
|
|
|
|
const blurInput = () => {
|
|
if (inputRef.value) inputRef.value.blur();
|
|
};
|
|
|
|
defineExpose({ focusInput, blurInput });
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="w-full flex items-center gap-2 rounded-lg border-solid border bg-white dark:bg-slate-900 text-slate-600 dark:text-slate-200 transition-all duration-500 ease-out"
|
|
:class="[
|
|
sizeClasses.wrapper,
|
|
isFocused
|
|
? 'shadow border-n-portal ring-4 ring-n-portal-soft'
|
|
: 'border-slate-50 dark:border-slate-800 shadow-sm ring-0 ring-transparent',
|
|
]"
|
|
>
|
|
<FluentIcon icon="search" />
|
|
<input
|
|
ref="inputRef"
|
|
:value="searchTerm"
|
|
type="text"
|
|
class="flex-1 min-w-0 focus:outline-none h-full bg-transparent px-2 text-slate-700 dark:text-slate-100 placeholder-slate-500"
|
|
:class="sizeClasses.input"
|
|
:placeholder="searchPlaceholder"
|
|
role="search"
|
|
@input="onChange"
|
|
@focus="onFocus"
|
|
@blur="onBlur"
|
|
/>
|
|
<kbd
|
|
v-if="kbd"
|
|
class="shrink-0 inline-flex items-center text-xs font-medium text-n-slate-11 bg-n-alpha-2 border border-solid border-n-weak rounded px-1.5 py-0.5 font-inter"
|
|
>
|
|
{{ kbd }}
|
|
</kbd>
|
|
</div>
|
|
</template>
|