Skip to content
Snippets Groups Projects
Commit 30ee7a82 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

refactor(ComboBoxSimple): pass-through search term

parent 11d559ff
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ export type ComboBoxSimpleProps<T> = Omit<ComboBoxProps<T>, 'choices'> & {
<script setup lang="ts" generic="T extends { id: ID; name?: string }">
import { ID } from '@rokoli/bnb/drf'
import { computedAsync } from '@vueuse/core'
import { computed, ref, toValue } from 'vue'
import { computed, toValue } from 'vue'
import { computedDebounced, matchesSearch } from '@/util'
import Tag from './generic/Tag.vue'
import ComboBox from './ComboBox.vue'
......@@ -78,9 +78,9 @@ defineSlots<{
}>()
const modelValue = defineModel<null | T | T[]>({ required: true })
const searchQuery = defineModel<string>('searchTerm', { required: false, default: '' })
const props = defineProps<ComboBoxSimpleProps<T>>()
const searchQuery = ref('')
const debouncedSearchQuery = computedDebounced(searchQuery, (t) => (t.trim() ? 0.3 : 0))
const selectedIds = computed(() => {
if (Array.isArray(modelValue.value)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment