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.
153 lines
4.2 KiB
153 lines
4.2 KiB
<script lang="ts" setup> |
|
import { UITypes, isSystemColumn } from 'nocodb-sdk' |
|
import type { TableType } from 'nocodb-sdk' |
|
import { |
|
ActiveViewInj, |
|
ReloadViewDataHookInj, |
|
computed, |
|
iconMap, |
|
inject, |
|
onClickOutside, |
|
ref, |
|
useFieldQuery, |
|
useSmartsheetStoreOrThrow, |
|
} from '#imports' |
|
|
|
const reloadData = inject(ReloadViewDataHookInj)! |
|
|
|
const { meta } = useSmartsheetStoreOrThrow() |
|
|
|
const activeView = inject(ActiveViewInj, ref()) |
|
|
|
const { search, loadFieldQuery } = useFieldQuery() |
|
|
|
const isDropdownOpen = ref(false) |
|
|
|
const { isMobileMode } = useGlobal() |
|
|
|
const isFocused = ref(false) |
|
|
|
const searchDropdown = ref(null) |
|
|
|
onClickOutside(searchDropdown, () => (isDropdownOpen.value = false)) |
|
|
|
const columns = computed(() => |
|
(meta.value as TableType)?.columns |
|
?.filter((column) => !isSystemColumn(column) && column?.uidt !== UITypes.Links) |
|
?.map((column) => ({ |
|
value: column.id, |
|
label: column.title, |
|
column, |
|
primaryValue: column.pv, |
|
})), |
|
) |
|
|
|
watch( |
|
() => activeView.value?.id, |
|
(n, o) => { |
|
if (n !== o) { |
|
loadFieldQuery(activeView.value?.id) |
|
} |
|
}, |
|
{ immediate: true }, |
|
) |
|
|
|
function onPressEnter() { |
|
reloadData.trigger({ shouldShowLoading: false, offset: 0 }) |
|
} |
|
|
|
const displayColumnLabel = computed(() => { |
|
if (search.value.field) { |
|
// use search field label if specified |
|
return columns.value?.find((column) => column.value === search.value.field)?.label |
|
} |
|
// use primary value label by default |
|
return columns.value?.find((column) => column.primaryValue)?.label |
|
}) |
|
|
|
watchDebounced( |
|
() => search.value.query, |
|
() => { |
|
onPressEnter() |
|
}, |
|
{ |
|
debounce: 500, |
|
maxWait: 600, |
|
}, |
|
) |
|
|
|
watch(columns, () => { |
|
if (columns.value?.length) { |
|
search.value.field = columns.value[0].value as string |
|
} |
|
}) |
|
</script> |
|
|
|
<template> |
|
<div |
|
class="flex flex-row border-1 rounded-lg h-8 xs:(h-10 ml-0) ml-1 border-gray-200 overflow-hidden" |
|
:class="{ 'border-primary': search.query.length !== 0 || isFocused }" |
|
> |
|
<div |
|
ref="searchDropdown" |
|
class="flex items-center group relative px-2 cursor-pointer border-r-1 border-gray-200 hover:bg-gray-100" |
|
:class="{ 'bg-gray-50 ': isDropdownOpen }" |
|
@click="isDropdownOpen = !isDropdownOpen" |
|
> |
|
<GeneralIcon icon="search" class="ml-1 mr-2 h-3.5 w-3.5 text-gray-500 group-hover:text-black" /> |
|
<div v-if="!isMobileMode" class="w-16 text-[0.75rem] font-medium text-gray-400 truncate"> |
|
{{ displayColumnLabel }} |
|
</div> |
|
<div class="xs:(text-gray-600) group-hover:text-gray-700 sm:(text-gray-400)"> |
|
<component :is="iconMap.arrowDown" class="text-sm text-inherit" /> |
|
</div> |
|
<a-select |
|
v-model:value="search.field" |
|
v-e="['c:search:field:select:open']" |
|
:open="isDropdownOpen" |
|
size="small" |
|
:dropdown-match-select-width="false" |
|
dropdown-class-name="!rounded-lg nc-dropdown-toolbar-search-field-option max-w-64" |
|
class="py-1 !absolute top-2 left-0 w-full h-full z-10 text-xs opacity-0" |
|
@change="onPressEnter" |
|
> |
|
<a-select-option v-for="op of columns" :key="op.value" v-e="['c:search:field:select']" :value="op.value"> |
|
<div class="text-sm flex items-center gap-2"> |
|
<SmartsheetHeaderIcon :column="op.column" /> |
|
<NcTooltip class="truncate flex-1" placement="top" show-on-truncate-only> |
|
<template #title>{{ op.label }}</template> |
|
{{ op.label }} |
|
</NcTooltip> |
|
<component |
|
:is="iconMap.check" |
|
v-if="search.field === op.value" |
|
id="nc-selected-item-icon" |
|
class="text-primary w-4 h-4" |
|
/> |
|
</div> |
|
</a-select-option> |
|
</a-select> |
|
</div> |
|
|
|
<a-input |
|
v-model:value="search.query" |
|
size="small" |
|
class="text-xs w-40" |
|
:placeholder="`${$t('general.searchIn')} ${displayColumnLabel}`" |
|
:bordered="false" |
|
data-testid="search-data-input" |
|
@press-enter="onPressEnter" |
|
@focus="isFocused = true" |
|
@blur="isFocused = false" |
|
> |
|
</a-input> |
|
</div> |
|
</template> |
|
|
|
<style scoped> |
|
:deep(input::placeholder) { |
|
@apply !text-gray-400; |
|
line-height: 0.8rem !important; |
|
font-size: 0.8rem !important; |
|
} |
|
</style>
|
|
|