akkoma-fe/src/components/search_bar/search_bar.js

44 lines
866 B
JavaScript
Raw Normal View History

2020-10-20 18:18:23 +00:00
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faTimes,
faSearch
2020-10-20 18:18:23 +00:00
} from '@fortawesome/free-solid-svg-icons'
library.add(
faTimes,
faSearch
2020-10-20 18:18:23 +00:00
)
2019-07-15 16:42:27 +00:00
const SearchBar = {
data: () => ({
searchTerm: undefined,
hidden: true,
2020-10-20 19:54:43 +00:00
error: false
2019-07-15 16:42:27 +00:00
}),
watch: {
'$route': function (route) {
if (route.name === 'search') {
this.searchTerm = route.query.query
}
}
},
methods: {
find (searchTerm) {
this.$router.push({ name: 'search', query: { query: searchTerm } })
this.$refs.searchInput.focus()
},
toggleHidden () {
this.hidden = !this.hidden
this.$emit('toggled', this.hidden)
this.$nextTick(() => {
if (!this.hidden) {
2022-11-06 13:46:35 +00:00
this.searchTerm = undefined
this.$refs.searchInput.focus()
}
})
2019-07-15 16:42:27 +00:00
}
}
}
export default SearchBar