forked from DebaucheryLibrarian/traxxx
93 lines
1.4 KiB
Vue
93 lines
1.4 KiB
Vue
<template>
|
|
<form
|
|
class="search"
|
|
@submit.prevent="search"
|
|
>
|
|
<input
|
|
v-model="query"
|
|
:placeholder="placeholder || 'Search'"
|
|
class="query"
|
|
@input="search"
|
|
>
|
|
|
|
<button
|
|
type="submit"
|
|
class="search-button"
|
|
><Icon icon="search" /></button>
|
|
</form>
|
|
</template>
|
|
|
|
<script>
|
|
function search() {
|
|
this.$router.replace({ query: { query: this.query || undefined } });
|
|
}
|
|
|
|
function resetQuery() {
|
|
this.query = this.$route.query.query || null;
|
|
}
|
|
|
|
export default {
|
|
props: {
|
|
placeholder: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
query: this.$route.query.query || null,
|
|
};
|
|
},
|
|
watch: {
|
|
$route: resetQuery,
|
|
},
|
|
methods: {
|
|
search,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.search {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.query {
|
|
max-width: 40rem;
|
|
min-width: 10rem;
|
|
color: var(--text);
|
|
background: var(--background);
|
|
flex-grow: 1;
|
|
box-sizing: border-box;
|
|
padding: 1rem;
|
|
border: none;
|
|
box-sizing: border-box;
|
|
box-shadow: 0 0 3px var(--darken-weak);
|
|
font-size: 1rem;
|
|
outline: none;
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 3px var(--primary);
|
|
}
|
|
}
|
|
|
|
.search-button {
|
|
padding: 1rem;
|
|
background: none;
|
|
border: none;
|
|
|
|
.icon {
|
|
fill: var(--shadow);
|
|
}
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
|
|
.icon {
|
|
fill: var(--primary);
|
|
}
|
|
}
|
|
}
|
|
</style>
|