LeagueStats/client/src/components/SearchForm.vue

114 lines
3.1 KiB
Vue
Raw Normal View History

2019-04-08 20:06:22 +00:00
<template>
2019-04-10 20:05:52 +00:00
<form @submit.prevent="formSubmit" 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"
2019-04-10 20:05:52 +00:00
autofocus
class="input w-full px-2 py-4 rounded-lg outline-none pl-8 pr-16 font-bold"
2019-04-08 20:06:22 +00:00
>
<div class="absolute right-0 z-30 vertical-center flex items-center h-full mr-2">
<div
2019-04-08 20:06:22 +00:00
@click="dropdown = !dropdown"
:class="{'bg-teal-600' : dropdown}"
class="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 select-none">{{ selectedRegion }}</span>
2019-04-08 20:06:22 +00:00
<v-icon name="caret-down" class="ml-1"></v-icon>
</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-70"
enter-to-class="opacity-100 scale-100"
leave-class="opacity-100 scale-100"
leave-to-class="opacity-0 scale-70"
>
2019-04-10 20:05:52 +00:00
<div
v-if="dropdown"
class="absolute right-0 z-30 text-white rounded-b shadow cursor-pointer mr-2 offsetDropDown"
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="selectedRegion = region"
:class="classRegions(index)"
class="relative px-4b py-1 text-xs bg-teal-600 hover:bg-teal-500"
>
<v-icon
v-if="region === selectedRegion"
name="check"
scale="0.7"
2019-08-23 14:48:16 +00:00
class="absolute vertical-center offsetIcon"
>
</v-icon>
{{ region }}
</div>
2019-04-08 20:06:22 +00:00
</div>
2019-04-10 20:05:52 +00:00
</transition>
2019-04-08 20:06:22 +00:00
</div>
2019-04-10 20:05:52 +00:00
<button class="input btn w-20 rounded-lg ml-2 relative" type="submit">
<v-icon name="search" class="absolute vertical-center horizontal-center"></v-icon>
</button>
2019-04-08 20:06:22 +00:00
</form>
</template>
<script>
export default {
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'
],
selectedRegion: 'EUW'
2019-08-23 14:48:16 +00:00
}
2019-04-08 20:06:22 +00:00
},
methods: {
classRegions(index) {
return {
'rounded-t': index === 0,
'rounded-b': index === this.regions.length - 1
2019-08-23 14:48:16 +00:00
}
2019-04-08 20:06:22 +00:00
},
formSubmit() {
2019-08-23 14:48:16 +00:00
const regexNames = new RegExp('^[0-9\\p{L} _\\.]+$', 'u')
if(regexNames.exec(this.summoner)) {
2019-08-23 14:48:16 +00:00
this.$emit('formSubmit', this.summoner.split(' ').join(''), this.selectedRegion.toLowerCase())
} else {
this.$store.dispatch('notification/add', {
type: 'error',
message: 'Summoner Name entered is incorrect.'
})
}
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: 57px;
right: 1px;
}
.offsetIcon {
left: 4px;
}
2019-04-08 20:06:22 +00:00
</style>