mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
<script lang="ts" setup> |
|
import { useProvideSmartsheetStore, useSmartsheetStoreOrThrow } from '~/composables/useSmartsheetStore' |
|
import { MetaInj, ReloadViewDataHookInj } from '~/context' |
|
import MdiSearchIcon from '~icons/mdi/magnify' |
|
import MdiMenuDownIcon from '~icons/mdi/menu-down' |
|
|
|
const reloadData = inject(ReloadViewDataHookInj) |
|
const { search, meta } = useSmartsheetStoreOrThrow() |
|
|
|
const columns = computed(() => |
|
meta?.value?.columns?.map((c) => ({ |
|
value: c.id, |
|
label: c.title, |
|
})), |
|
) |
|
</script> |
|
|
|
<template> |
|
<a-input |
|
v-model:value="search.query" |
|
size="small" |
|
class="max-w-[200px]" |
|
placeholder="Filter query" |
|
@press-enter="reloadData.trigger()" |
|
> |
|
<template #addonBefore> |
|
<div class="flex align-center relative" @click="isDropdownOpen = true"> |
|
<MdiSearchIcon class="text-grey" /> |
|
<MdiMenuDownIcon class="text-grey" /> |
|
<a-select |
|
v-model:value="search.field" |
|
size="small" |
|
:dropdown-match-select-width="false" |
|
:options="columns" |
|
class="!absolute top-0 left-0 w-full h-full z-10 !text-xs opacity-0" |
|
> |
|
</a-select> |
|
</div> |
|
</template> |
|
</a-input> |
|
</template> |
|
|
|
<style scoped></style>
|
|
|