feat: filter by season now works 🎉

This commit is contained in:
Valentin Kaelin 2020-02-01 20:17:14 +01:00
parent 7beb635c80
commit d839eed7ad
10 changed files with 223 additions and 164 deletions

View file

@ -6,6 +6,7 @@
dir="rtl" dir="rtl"
class="block appearance-none bg-transparent w-full px-4 pr-8 rounded-md cursor-pointer focus:outline-none group-hover:text-white" class="block appearance-none bg-transparent w-full px-4 pr-8 rounded-md cursor-pointer focus:outline-none group-hover:text-white"
> >
<option :value="null" class="bg-blue-800">All seasons</option>
<option v-for="(s, index) in seasons" :key="index" :value="s" class="bg-blue-800">Season {{ s }}</option> <option v-for="(s, index) in seasons" :key="index" :value="s" class="bg-blue-800">Season {{ s }}</option>
</select> </select>
<div <div
@ -19,7 +20,7 @@
</template> </template>
<script> <script>
import { mapState } from 'vuex' import { mapActions, mapState } from 'vuex'
export default { export default {
data() { data() {
@ -42,7 +43,9 @@ export default {
methods: { methods: {
filterSeason() { filterSeason() {
console.log('filter season', this.season) console.log('filter season', this.season)
} this.updateSeason(this.season)
},
...mapActions('summoner', ['updateSeason'])
} }
} }
</script> </script>

View file

@ -1,4 +1,6 @@
import axiosHttp from 'axios' import axiosHttp from 'axios'
import router from '../router'
import store from '../store'
export const axios = axiosHttp export const axios = axiosHttp
@ -11,8 +13,16 @@ const axiosSource = CancelToken.source()
axios.defaults.axiosSource = axiosSource axios.defaults.axiosSource = axiosSource
axios.defaults.cancelToken = axiosSource.token axios.defaults.cancelToken = axiosSource.token
// Add season number to data if the route need it
axios.interceptors.request.use(function (config) {
if (config.url !== 'summoner-basic' && router.currentRoute.meta.season) {
config.data.season = store.state.summoner.basic.currentSeason
}
return config
})
export default { export default {
install (Vue) { install(Vue) {
Vue.prototype.$axios = axiosHttp Vue.prototype.$axios = axiosHttp
} }
} }

View file

@ -25,17 +25,26 @@ const router = new Router({
{ {
path: '/summoner/:region/:name', path: '/summoner/:region/:name',
name: 'summoner', name: 'summoner',
component: Summoner component: Summoner,
meta: {
season: true
}
}, },
{ {
path: '/summoner/:region/:name/champions', path: '/summoner/:region/:name/champions',
name: 'summonerChampions', name: 'summonerChampions',
component: SummonerChampions component: SummonerChampions,
meta: {
season: true
}
}, },
{ {
path: '/summoner/:region/:name/records', path: '/summoner/:region/:name/records',
name: 'summonerRecords', name: 'summonerRecords',
component: SummonerRecords component: SummonerRecords,
meta: {
season: true
}
}, },
{ {
path: '/summoner/:region/:name/live', path: '/summoner/:region/:name/live',

View file

@ -6,7 +6,7 @@ export const namespaced = true
export const state = { export const state = {
basic: { basic: {
account: {}, account: {},
currentSeason: 10, currentSeason: null,
matchList: [], matchList: [],
ranked: {}, ranked: {},
seasons: [], seasons: [],
@ -37,6 +37,7 @@ export const state = {
export const mutations = { export const mutations = {
BASIC_REQUEST(state) { BASIC_REQUEST(state) {
state.basic.status = 'loading' state.basic.status = 'loading'
state.basic.currentSeason = null
state.champions.championsLoaded = false state.champions.championsLoaded = false
state.records.recordsLoaded = false state.records.recordsLoaded = false
state.overview.loaded = false state.overview.loaded = false
@ -93,7 +94,14 @@ export const mutations = {
state.live.match = {} state.live.match = {}
state.live.playing = false state.live.playing = false
state.live.liveLoaded = false state.live.liveLoaded = false
} },
UPDATE_SEASON(state, { season }) {
state.basic.currentSeason = season
state.overview.loaded = false
state.champions.championsLoaded = false
state.records.recordsLoaded = false
},
} }
export const actions = { export const actions = {
@ -171,6 +179,9 @@ export const actions = {
const records = resp.data ? createRecordsData(resp.data) : {} const records = resp.data ? createRecordsData(resp.data) : {}
commit('RECORDS_FOUND', { records }) commit('RECORDS_FOUND', { records })
},
updateSeason({ commit }, season) {
commit('UPDATE_SEASON', { season })
} }
} }

View file

@ -63,6 +63,9 @@ export default {
}, },
watch: { watch: {
overviewLoaded() {
this.fetchData()
},
summonerFound() { summonerFound() {
this.fetchData() this.fetchData()
} }

View file

@ -24,6 +24,7 @@ export default {
data() { data() {
return { return {
queue: null,
searchChampions: '' searchChampions: ''
} }
}, },
@ -53,6 +54,9 @@ export default {
}, },
watch: { watch: {
championsLoaded() {
this.fetchData()
},
summonerFound() { summonerFound() {
this.fetchData() this.fetchData()
} }
@ -65,13 +69,13 @@ export default {
methods: { methods: {
fetchData() { fetchData() {
if (!this.championsLoaded && this.summonerFound) { if (!this.championsLoaded && this.summonerFound) {
this.championsRequest() this.championsRequest(this.queue)
} }
}, },
filterByQueue(queue) { filterByQueue(queue) {
queue = Number(queue) queue = Number(queue)
queue = queue === -1 ? null : queue this.queue = queue === -1 ? null : queue
this.championsRequest(queue) this.championsRequest(this.queue)
}, },
updateSearch(search) { updateSearch(search) {
this.searchChampions = search this.searchChampions = search

View file

@ -1,7 +1,6 @@
<template> <template>
<div key="records" class=""> <div key="records">
<template v-if="!recordsLoaded || (recordsLoaded && records.maxKda)"> <template v-if="!recordsLoaded || (recordsLoaded && records.maxKda)">
<div class="">
<div class="mx-4 text-blue-200 text-2xl border-b-2 border-blue-800 blue-900">basics</div> <div class="mx-4 text-blue-200 text-2xl border-b-2 border-blue-800 blue-900">basics</div>
<div class="-mx-2 flex flex-wrap"> <div class="-mx-2 flex flex-wrap">
<template v-if="recordsLoaded"> <template v-if="recordsLoaded">
@ -145,7 +144,6 @@
</div> </div>
</template> </template>
</div> </div>
</div>
</template> </template>
<template v-if="recordsLoaded && !records.maxKda"> <template v-if="recordsLoaded && !records.maxKda">
<div class="mt-4 flex flex-col items-center"> <div class="mt-4 flex flex-col items-center">
@ -176,6 +174,9 @@ export default {
}, },
watch: { watch: {
recordsLoaded() {
this.fetchData()
},
summonerFound() { summonerFound() {
this.fetchData() this.fetchData()
} }

View file

@ -87,12 +87,17 @@ class SummonerController {
) )
// MATCHES BASIC // MATCHES BASIC
const gameIds = summonerDB.matchList.slice(0, 10).map(({ gameId }) => gameId) const gameIds = summonerDB.matchList.slice(0)
.filter(m => {
return season ? m.seasonMatch === season : true
})
.slice(0, 10)
.map(({ gameId }) => gameId)
finalJSON.matchesDetails = await MatchService.getMatches(account, gameIds, summonerDB) finalJSON.matchesDetails = await MatchService.getMatches(account, gameIds, summonerDB)
// STATS // STATS
console.time('STATS') console.time('STATS')
finalJSON.stats = await StatsService.getSummonerStats(account) finalJSON.stats = await StatsService.getSummonerStats(account, season)
console.timeEnd('STATS') console.timeEnd('STATS')
// SAVE IN DB // SAVE IN DB
@ -108,8 +113,9 @@ class SummonerController {
async champions({ request, response }) { async champions({ request, response }) {
const puuid = request.input('puuid') const puuid = request.input('puuid')
const queue = request.input('queue') const queue = request.input('queue')
const season = request.input('season')
console.time('championsRequest') console.time('championsRequest')
const championStats = await MatchRepository.championCompleteStats(puuid, queue) const championStats = await MatchRepository.championCompleteStats(puuid, queue, season)
console.timeEnd('championsRequest') console.timeEnd('championsRequest')
return response.json(championStats) return response.json(championStats)
} }
@ -119,8 +125,9 @@ class SummonerController {
*/ */
async records({ request, response }) { async records({ request, response }) {
const puuid = request.input('puuid') const puuid = request.input('puuid')
const season = request.input('season')
console.time('recordsRequest') console.time('recordsRequest')
const records = await MatchRepository.records(puuid) const records = await MatchRepository.records(puuid, season)
console.timeEnd('recordsRequest') console.timeEnd('recordsRequest')
return response.json(records[0]) return response.json(records[0])
} }

View file

@ -18,6 +18,7 @@ class MatchRepository {
summoner_puuid: puuid, summoner_puuid: puuid,
result: { $not: { $eq: 'Remake' } }, result: { $not: { $eq: 'Remake' } },
gamemode: { $nin: [800, 810, 820, 830, 840, 850] }, gamemode: { $nin: [800, 810, 820, 830, 840, 850] },
season: this.season ? this.season : { $exists: true }
} }
} }
@ -92,11 +93,15 @@ class MatchRepository {
* Get Summoner's complete statistics for the all played champs * Get Summoner's complete statistics for the all played champs
* @param puuid of the summoner * @param puuid of the summoner
* @param queue of the matches to fetch, if null get all matches * @param queue of the matches to fetch, if null get all matches
* @param season of the matches to fetch, if null get all seasons
*/ */
championCompleteStats(puuid, queue) { championCompleteStats(puuid, queue, season) {
const matchParams = queue ? { const matchParams = {}
gamemode: { $eq: Number(queue) }, if (queue) {
} : {} matchParams.gamemode = { $eq: Number(queue) }
}
this.season = season
const groupParams = { const groupParams = {
time: { $sum: '$time' }, time: { $sum: '$time' },
gameLength: { $avg: '$time' }, gameLength: { $avg: '$time' },
@ -145,8 +150,11 @@ class MatchRepository {
/** /**
* Get Summoner's all records * Get Summoner's all records
* @param puuid of the summoner * @param puuid of the summoner
* @param season of the matches to fetch, if null get all seasons
*/ */
records(puuid) { records(puuid, season) {
this.season = season
return this.Match.query().aggregate([ return this.Match.query().aggregate([
{ {
$match: { $match: {
@ -235,6 +243,8 @@ class MatchRepository {
* @param puuid of the summoner * @param puuid of the summoner
*/ */
seasons(puuid) { seasons(puuid) {
this.season = null
return this.Match.query().aggregate([ return this.Match.query().aggregate([
{ {
$match: { $match: {

View file

@ -8,7 +8,8 @@ class StatsService {
this.matchRepository = MatchRepository this.matchRepository = MatchRepository
} }
async getSummonerStats(account) { async getSummonerStats(account, season) {
this.matchRepository.season = season
const globalStats = await this.matchRepository.globalStats(account.puuid) const globalStats = await this.matchRepository.globalStats(account.puuid)
const gamemodeStats = await this.matchRepository.gamemodeStats(account.puuid) const gamemodeStats = await this.matchRepository.gamemodeStats(account.puuid)
const roleStats = await this.matchRepository.roleStats(account.puuid) const roleStats = await this.matchRepository.roleStats(account.puuid)