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">
|
2019-08-21 21:22:16 +00:00
|
|
|
<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">
|
2019-04-16 13:34:38 +00:00
|
|
|
<input
|
|
|
|
|
type="text"
|
2019-04-10 20:05:52 +00:00
|
|
|
autofocus
|
2019-04-16 13:34:38 +00:00
|
|
|
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
|
|
|
v-model="summoner"
|
|
|
|
|
>
|
2019-08-21 21:22:16 +00:00
|
|
|
<div class="absolute right-0 z-30 vertical-center flex items-center h-full mr-2">
|
2019-04-16 13:34:38 +00:00
|
|
|
<div
|
2019-04-08 20:06:22 +00:00
|
|
|
@click="dropdown = !dropdown"
|
2019-04-18 12:33:49 +00:00
|
|
|
: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
|
|
|
>
|
2019-04-10 20:05:52 +00:00
|
|
|
<span class="selected font-bold">{{ 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"
|
2019-08-21 21:22:16 +00:00
|
|
|
class="absolute right-0 z-30 text-white rounded-b shadow cursor-pointer mr-2 offsetDropDown"
|
2019-04-08 20:06:22 +00:00
|
|
|
>
|
2019-04-16 13:34:38 +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)"
|
2019-05-16 13:10:00 +00:00
|
|
|
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"
|
|
|
|
|
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 {
|
2019-04-18 12:33:49 +00:00
|
|
|
summoner: '',
|
2019-04-08 20:06:22 +00:00
|
|
|
dropdown: false,
|
2019-04-16 13:34:38 +00:00
|
|
|
regions: [
|
2019-04-18 12:33:49 +00:00
|
|
|
'BR',
|
|
|
|
|
'EUNE',
|
|
|
|
|
'EUW',
|
|
|
|
|
'JP',
|
|
|
|
|
'KR',
|
|
|
|
|
'LAN',
|
|
|
|
|
'LAS',
|
|
|
|
|
'NA',
|
|
|
|
|
'OCE',
|
|
|
|
|
'TR',
|
|
|
|
|
'RU'
|
2019-04-16 13:34:38 +00:00
|
|
|
],
|
2019-04-18 12:33:49 +00:00
|
|
|
selectedRegion: 'EUW'
|
2019-04-08 20:06:22 +00:00
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
classRegions(index) {
|
|
|
|
|
return {
|
2019-04-18 12:33:49 +00:00
|
|
|
'rounded-t': index === 0,
|
|
|
|
|
'rounded-b': index === this.regions.length - 1
|
2019-04-16 13:34:38 +00:00
|
|
|
};
|
2019-04-08 20:06:22 +00:00
|
|
|
},
|
|
|
|
|
formSubmit() {
|
2019-04-18 12:33:49 +00:00
|
|
|
console.log('form submit child');
|
2019-08-21 20:50:57 +00:00
|
|
|
this.$emit('formSubmit', this.summoner.split(' ').join(''), this.selectedRegion.toLowerCase());
|
2019-04-08 20:06:22 +00:00
|
|
|
}
|
|
|
|
|
}
|
2019-04-16 13:34:38 +00:00
|
|
|
};
|
2019-04-08 20:06:22 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2019-04-16 13:34:38 +00:00
|
|
|
.offsetDropDown {
|
|
|
|
|
top: 57px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
}
|
2019-05-16 13:10:00 +00:00
|
|
|
|
|
|
|
|
.offsetIcon {
|
|
|
|
|
left: 4px;
|
|
|
|
|
}
|
2019-04-08 20:06:22 +00:00
|
|
|
</style>
|