LeagueStats/client/src/components/SearchForm.vue

161 lines
4.4 KiB
Vue
Raw Normal View History

2019-04-08 20:06:22 +00:00
<template>
<form @submit.prevent="formSubmit" :class="formClasses" class="flex text-teal-100 text-lg w-full">
<div v-if="dropdown" @click="dropdown = false" class="fixed z-20 inset-0"></div>
2019-04-10 20:05:52 +00:00
<div class="relative w-full">
<input
2019-08-23 14:48:16 +00:00
v-model="summoner"
type="text"
:class="[inputClasses]"
class="w-full rounded-lg outline-none pl-6 pr-32 font-bold focus:bg-blue-1000"
/>
<div class="absolute right-0 z-30 vertical-center flex items-center h-full mr-12">
<div
2019-04-08 20:06:22 +00:00
@click="dropdown = !dropdown"
:class="{'border-teal-200': dropdown}"
class="border-2 border-transparent cursor-pointer flex items-center px-2 py-1 rounded transition-all transition-fast ease-in-quad ease-out-quad hover:text-white"
2019-04-08 20:06:22 +00:00
>
<span class="selected font-bold uppercase select-none">{{ selectedRegion }}</span>
2019-12-21 16:56:31 +00:00
<svg class="ml-1 -mr-1 w-4 h-4">
<use xlink:href="#caret-down" />
2019-10-21 14:02:45 +00:00
</svg>
2019-04-08 20:06:22 +00:00
</div>
</div>
2019-04-16 12:28:42 +00:00
<transition
enter-active-class="transition-all transition-fastest ease-out-quad"
leave-active-class="transition-all transition-faster ease-in-quad"
enter-class="opacity-0 scale-90"
2019-04-16 12:28:42 +00:00
enter-to-class="opacity-100 scale-100"
leave-class="opacity-100 scale-100"
leave-to-class="opacity-0 scale-90"
2019-04-16 12:28:42 +00:00
>
2019-04-10 20:05:52 +00:00
<div
v-show="dropdown"
:class="[dropdownClasses]"
class="absolute right-0 z-30 text-white rounded-b shadow cursor-pointer"
2019-04-08 20:06:22 +00:00
>
<div
v-for="(region, index) in regions"
2019-04-10 20:05:52 +00:00
:key="region"
@click="updateSettings({name: 'region', value: region.toLowerCase()})"
2019-04-10 20:05:52 +00:00
:class="classRegions(index)"
class="relative pr-2 pl-5 py-1 text-xs text-right bg-blue-1000 hover:bg-blue-800"
>
2019-10-21 14:02:45 +00:00
<svg
v-if="region.toLowerCase() === selectedRegion"
2019-10-21 14:02:45 +00:00
class="absolute vertical-center offsetIcon w-3 h-3 fill-current"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<path
d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"
/>
</svg>
{{ region }}
</div>
2019-04-08 20:06:22 +00:00
</div>
2019-04-10 20:05:52 +00:00
</transition>
<button
:class="[btnClasses]"
class="absolute right-0 z-30 h-full hover:text-teal-200"
type="submit"
2019-10-21 14:02:45 +00:00
>
<svg class="absolute vertical-center horizontal-center w-4 h-4">
<use xlink:href="#search" />
</svg>
</button>
</div>
2019-04-08 20:06:22 +00:00
</form>
</template>
<script>
import { mapActions, mapState } from 'vuex'
2019-04-08 20:06:22 +00:00
export default {
props: {
size: {
type: String,
default: 'xl'
}
},
2019-04-08 20:06:22 +00:00
data() {
return {
summoner: '',
2019-04-08 20:06:22 +00:00
dropdown: false,
regions: [
'BR',
'EUNE',
'EUW',
'JP',
'KR',
'LAN',
'LAS',
'NA',
'OCE',
'TR',
'RU'
],
2019-08-23 14:48:16 +00:00
}
2019-04-08 20:06:22 +00:00
},
computed: {
btnClasses() {
return {
'w-8 mr-3': this.size === 'small',
'w-12': this.size === 'xl'
}
},
formClasses() {
return {
'max-w-md': this.size === 'small',
}
},
inputClasses() {
return {
'py-2 px-1': this.size === 'small',
'py-4 px-2': this.size === 'xl',
'input-color': !this.dropdown,
'bg-blue-1000': this.dropdown
}
},
dropdownClasses() {
return {
'offsetDropDown': this.size === 'small',
'offsetDropDownXl': this.size === 'xl'
}
},
...mapState({
selectedRegion: state => state.settings.region
}),
},
2019-04-08 20:06:22 +00:00
methods: {
classRegions(index) {
return {
'rounded-b': index === this.regions.length - 1
2019-08-23 14:48:16 +00:00
}
2019-04-08 20:06:22 +00:00
},
formSubmit() {
const search = this.summoner.split(' ').join('')
if (search.length) {
this.$emit('formSubmit', search, this.selectedRegion)
}
},
...mapActions('settings', ['updateSettings']),
2019-04-08 20:06:22 +00:00
}
2019-08-23 14:48:16 +00:00
}
2019-04-08 20:06:22 +00:00
</script>
<style scoped>
.offsetDropDown {
top: 43px;
right: 48px;
}
.offsetDropDownXl {
top: 58px;
right: 50px;
}
.offsetIcon {
left: 4px;
}
2019-04-08 20:06:22 +00:00
</style>