mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
97 lines
2.1 KiB
Vue
97 lines
2.1 KiB
Vue
<template>
|
|
<div>
|
|
<a
|
|
ref="contextLink"
|
|
class="header__filter-link"
|
|
:class="{
|
|
'active--primary': headerSearchTerm.length > 0,
|
|
}"
|
|
@click="$refs.context.toggle($refs.contextLink, 'bottom', 'right', 4)"
|
|
>
|
|
<i class="header__search-icon iconoir-search"></i>
|
|
{{ headerSearchTerm }}
|
|
</a>
|
|
<ViewSearchContext
|
|
ref="context"
|
|
:view="view"
|
|
:fields="fields"
|
|
:read-only="readOnly"
|
|
:store-prefix="storePrefix"
|
|
:always-hide-rows-not-matching-search="alwaysHideRowsNotMatchingSearch"
|
|
@refresh="$emit('refresh', $event)"
|
|
@search-changed="searchChanged"
|
|
></ViewSearchContext>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ViewSearchContext from '@baserow/modules/database/components/view/ViewSearchContext'
|
|
|
|
export default {
|
|
name: 'ViewSearch',
|
|
components: { ViewSearchContext },
|
|
props: {
|
|
view: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
fields: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
readOnly: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: false,
|
|
},
|
|
storePrefix: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
alwaysHideRowsNotMatchingSearch: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: false,
|
|
},
|
|
},
|
|
data: () => {
|
|
return {
|
|
headerSearchTerm: '',
|
|
}
|
|
},
|
|
watch: {
|
|
$props: {
|
|
immediate: true,
|
|
handler() {
|
|
if (!this.storePrefix.length && !this.readOnly) {
|
|
throw new Error(
|
|
'A storePrefix is required when the search is not read-only.'
|
|
)
|
|
}
|
|
},
|
|
},
|
|
},
|
|
mounted() {
|
|
this.$priorityBus.$on(
|
|
'start-search',
|
|
this.$priorityBus.level.LOW,
|
|
this.searchStarted
|
|
)
|
|
},
|
|
beforeDestroy() {
|
|
this.$priorityBus.$off('start-search', this.searchStarted)
|
|
},
|
|
methods: {
|
|
searchChanged(newSearch) {
|
|
this.headerSearchTerm = newSearch
|
|
},
|
|
searchStarted({ event }) {
|
|
event.preventDefault()
|
|
this.$bus.$emit('close-modals')
|
|
this.$refs.contextLink.click()
|
|
},
|
|
},
|
|
}
|
|
</script>
|