LeagueStats/client/src/components/Match/Match.vue
2023-09-21 12:52:17 +02:00

302 lines
10 KiB
Vue

<template>
<li class="relative ml-4">
<Ripple
@click.native="displayDetails"
color="rgba(43, 108, 176, 0.7)"
:class="[
data.result,
showDetails ? 'rounded-t-lg' : 'rounded-lg',
{ 'mt-4': indexMatch !== 0 },
]"
class="match relative cursor-pointer bg-blue-800 text-base text-white hover:shadow-xl"
>
<div class="relative flex flex-wrap px-5 py-3">
<div
v-if="data.newMatch"
class="new-match absolute right-0 top-0 rounded-full px-2 text-xxs"
style="margin: 0.35rem 0.35rem 0 0; background-color: rgba(99, 179, 237, 0.2)"
>
New
</div>
<div class="first w-4/12 text-left">
<div>
<div class="h-6 text-lg font-extrabold uppercase leading-none text-teal-500">
{{ data.champion.name }}
</div>
<div class="flex">
<div class="flex flex-col items-center justify-end">
<div
v-if="data.role !== 'NONE'"
:style="{ backgroundImage: `url(${'/img/roles/' + data.role + '.png'})` }"
class="h-10 w-10 bg-cover bg-center"
></div>
<div class="w-10 text-center text-xs font-extrabold text-teal-500">
LVL {{ data.level }}
</div>
</div>
<div
:style="{ backgroundImage: `url('${data.champion.icon}')` }"
class="crop-champion ml-2 h-16 w-16 rounded-lg bg-blue-1000"
></div>
<div class="ml-2 flex flex-col justify-around">
<div
v-if="data.summonerSpell1"
:style="{ backgroundImage: `url(${data.summonerSpell1.icon})` }"
class="h-6 w-6 rounded-md bg-blue-1000 bg-cover bg-center"
></div>
<div v-else class="h-6 w-6 rounded-md bg-blue-1000"></div>
<div
v-if="data.summonerSpell2"
:style="{ backgroundImage: `url(${data.summonerSpell2.icon})` }"
class="h-6 w-6 rounded-md bg-blue-1000 bg-cover bg-center"
></div>
<div v-else class="h-6 w-6 rounded-md bg-blue-1000"></div>
</div>
<div class="ml-1 flex flex-col justify-around">
<div
:style="[
data.primaryRune ? { background: `url(${data.primaryRune}) center/cover` } : '',
]"
class="h-6 w-6 rounded-md bg-blue-1000"
></div>
<div
:style="[
data.secondaryRune
? { background: `url(${data.secondaryRune}) center/cover` }
: '',
]"
class="h-6 w-6 rounded-md bg-blue-1000"
></div>
</div>
<div class="mx-auto flex flex-col items-center justify-center leading-none">
<div class="text-xl font-extrabold text-teal-500">
<span class>{{ data.stats.kills }}</span>
<span class>/</span>
<span class>{{ data.stats.deaths }}</span>
<span class>/</span>
<span class>{{ data.stats.assists }}</span>
</div>
<div class="relative z-30 mt-2 text-xs font-extrabold text-white">
{{ data.stats.kda }} KDA
</div>
</div>
</div>
<div
class="relative z-30 flex h-6 items-end text-sm font-extrabold leading-none text-white"
>
{{ data.gamemode.name }}
</div>
</div>
</div>
<div class="second flex w-3/12 items-center py-6">
<MatchItems :items="data.items" />
<div class="relative z-30 ml-4 leading-none">
<div class="flex items-center">
<svg style="width: 15px; height: 15px">
<use xlink:href="#creeps" />
</svg>
<div class="ml-1 text-sm font-bold text-teal-300">
{{ data.stats.minions }}
<span class="font-normal">cs</span>
</div>
</div>
<div class="flex items-center">
<svg style="width: 15px; height: 15px">
<use xlink:href="#gold" />
</svg>
<div class="gold ml-1 text-sm font-bold">{{ data.stats.gold | kilo }}</div>
</div>
<div class="flex items-center">
<svg style="width: 15px; height: 15px">
<use xlink:href="#damage" />
</svg>
<div class="damage ml-1 text-sm font-bold">{{ data.stats.dmgChamp | kilo }}</div>
</div>
<div class="flex items-center">
<svg style="width: 15px; height: 15px">
<use xlink:href="#kill-participation" />
</svg>
<div class="kp ml-1 text-sm font-bold">{{ data.stats.kp | percent }}</div>
</div>
</div>
</div>
<div class="third flex w-5/12 items-center py-1">
<div v-if="data.allyTeam.length > 1">
<div
v-for="(ally, index) in data.allyTeam"
:key="'player-' + index"
class="ml-4 flex items-center leading-none"
>
<router-link
v-if="ally.account_id !== '0' && account.accountId !== ally.account_id"
@click.native="$event.stopImmediatePropagation()"
:to="{
name: 'summoner',
params: { region: $route.params.region, name: ally.name },
}"
:class="isSummonerProfile(ally.account_id)"
class="text-overflow w-16 overflow-hidden whitespace-nowrap text-right text-xs font-medium hover:text-white"
>{{ ally.name }}</router-link
>
<div
v-else
:class="isSummonerProfile(ally.account_id)"
class="text-overflow w-16 overflow-hidden whitespace-nowrap text-right text-xs font-medium"
>
{{ ally.name }}
</div>
<div
:class="index !== 0 ? '-mt-1' : ''"
:style="{ backgroundImage: `url('${ally.champion.icon}')` }"
class="ml-1 h-6 w-6 overflow-hidden rounded-full bg-blue-1000 bg-cover bg-center"
></div>
<div
:style="{
backgroundImage:
data.role !== 'NONE' ? `url(${'/img/roles/' + roles[index] + '.png'})` : null,
}"
class="mx-2 h-4 w-4 bg-cover bg-center"
></div>
<div
:class="index !== 0 ? '-mt-1' : ''"
:style="{ backgroundImage: `url('${data.enemyTeam[index].champion.icon}')` }"
class="h-6 w-6 rounded-full bg-blue-1000 bg-cover bg-center"
></div>
<router-link
v-if="data.enemyTeam[index].account_id !== '0'"
@click.native="$event.stopImmediatePropagation()"
:to="{
name: 'summoner',
params: { region: $route.params.region, name: data.enemyTeam[index].name },
}"
class="text-overflow ml-1 w-16 overflow-hidden whitespace-nowrap text-left text-xs font-medium text-blue-200 hover:text-white"
>{{ data.enemyTeam[index].name }}</router-link
>
<div
v-else
class="text-overflow ml-1 w-16 overflow-hidden whitespace-nowrap text-left text-xs font-medium text-blue-200"
>
{{ data.enemyTeam[index].name }}
</div>
</div>
</div>
<div class="ml-auto flex flex-col items-center justify-center">
<svg class="h-5 w-5 text-blue-200">
<use xlink:href="#stopwatch" />
</svg>
<div class="text-lg font-medium text-teal-400">{{ data.time | secToTime }}</div>
<Tooltip>
<template #trigger>
<div class="text-xs font-medium text-white">{{ data.date }}</div>
</template>
<template #default>
<div class="select-none px-2 text-center text-xs leading-tight text-white">
<svg class="mx-auto h-4 w-4 text-teal-400">
<use xlink:href="#time" />
</svg>
<div class="mt-1">{{ data.fullDate.date }}</div>
<div>{{ data.fullDate.time }}</div>
</div>
</template>
</Tooltip>
</div>
</div>
</div>
</Ripple>
<DetailedMatch :data="getMatchDetails(data.matchId) || {}" :details-open="showDetails" />
</li>
</template>
<script>
import { mapActions, mapState, mapGetters } from 'vuex'
import Tooltip from '@/components/Common/Tooltip.vue'
import DetailedMatch from '@/components/Match/DetailedMatch.vue'
import MatchItems from '@/components/Match/MatchItems.vue'
import Ripple from '@/components/Common/Ripple.vue'
export default {
components: {
DetailedMatch,
Tooltip,
MatchItems,
Ripple,
},
props: {
data: {
type: Object,
required: true,
},
indexMatch: {
type: Number,
default: -1,
},
},
data() {
return {
showDetails: false,
}
},
computed: {
...mapState({
account: (state) => state.summoner.basic.account,
roles: (state) => state.roles,
}),
...mapGetters('detailedMatch', ['getMatchDetails']),
},
methods: {
displayDetails() {
this.showDetails = !this.showDetails
if (!this.getMatchDetails(this.data.matchId)) {
this.matchDetails(this.data.matchId)
}
},
isSummonerProfile(account_id) {
return {
'font-bold text-white': this.account.accountId === account_id,
'text-blue-200': this.account.accountId !== account_id,
}
},
...mapActions('detailedMatch', ['matchDetails']),
},
}
</script>
<style scoped>
.match {
transition-duration: 0.3s;
transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.game-status {
top: 50%;
left: 6px;
transform: translateY(-50%) rotate(-90deg);
}
.crop-champion {
background-size: 74px;
background-position: center;
}
.gold {
color: #f3a05a;
}
.damage {
color: #e25656;
}
.kp {
color: #b78787;
}
</style>