LeagueStats/client/src/helpers/summoner.js

119 lines
4 KiB
JavaScript
Raw Normal View History

2021-09-13 23:19:47 +00:00
import { createCDragonAssetUrl, secToTime, timeDifference } from '@/helpers/functions.js'
2019-09-09 18:42:10 +00:00
import { maps, gameModes } from '@/data/data.js'
2021-09-13 23:19:47 +00:00
import store from '@/store'
2019-09-09 18:42:10 +00:00
const leaguesNumbers = { 'I': 1, 'II': 2, 'III': 3, 'IV': 4 }
/**
2021-09-17 20:57:57 +00:00
* Get the url of the of the player primary rune
* @param {Object} perks : from the API
*/
2021-09-17 20:57:57 +00:00
export function getPrimarRune(perks) {
const primaryRune = perks.selected.length ? store.state.cdragon.runes.perks[perks.selected[0]] : null
2021-09-17 20:57:57 +00:00
return primaryRune ? createCDragonAssetUrl(primaryRune.icon) : null
}
2021-09-17 20:57:57 +00:00
/**
* Get the url of the of the player secondary rune
* @param {Object} perks : from the API
*/
export function getSecondaryRune(perks) {
const secondaryRune = store.state.cdragon.runes.perkstyles[perks.secondaryStyle]
return secondaryRune ? createCDragonAssetUrl(secondaryRune.icon) : null
}
/**
* Return all the infos about a list of matches built with the Riot API data
* @param {Object} RiotData : all data from the Riot API
*/
export function createMatchData(matches) {
for (const match of matches) {
2021-09-13 23:19:47 +00:00
// Runes
2021-09-17 20:57:57 +00:00
match.primaryRune = getPrimarRune(match.perks)
match.secondaryRune = getSecondaryRune(match.perks)
2021-09-13 23:19:47 +00:00
const date = new Date(match.date)
const dateOptions = { day: '2-digit', month: '2-digit', year: 'numeric' }
const timeOptions = { hour12: false, hour: '2-digit', minute: '2-digit' }
match.fullDate = { date: date.toLocaleString(undefined, dateOptions), time: date.toLocaleString(undefined, timeOptions) }
match.date = timeDifference(match.date)
match.map = maps[match.map]
match.gamemode = gameModes[match.gamemode]
2021-07-25 20:52:59 +00:00
if (!match.gamemode) {
match.gamemode = { name: 'Unknown gamemode' }
}
} // end loop matches
return matches
}
2019-09-09 18:42:10 +00:00
/**
* Return the basic infos about a summoner built with the Riot API data
2019-09-09 18:42:10 +00:00
* @param {Object} RiotData : all data from the Riot API
*/
export function createBasicSummonerData(RiotData) {
// Ranked Stats
RiotData.ranked.soloQ = getLeagueData(RiotData.ranked.soloQ, 'Solo/Duo')
if (!RiotData.ranked.soloQ) delete RiotData.ranked.soloQ
RiotData.ranked.flex5v5 = getLeagueData(RiotData.ranked.flex5v5, 'Flex 5vs5')
if (!RiotData.ranked.flex5v5) delete RiotData.ranked.flex5v5
RiotData.ranked.flex3v3 = getLeagueData(RiotData.ranked.flex3v3, 'Flex 3vs3')
if (!RiotData.ranked.flex3v3) delete RiotData.ranked.flex3v3
2019-10-08 19:54:32 +00:00
// If Summoner is Unranked
if (Object.entries(RiotData.ranked).length === 0) {
RiotData.ranked.soloQ = {
fullRank: 'Unranked',
rankImgLink: 'https://res.cloudinary.com/kln/image/upload/v1571671133/ranks/unranked.png',
leaguePoints: 0,
wins: 0,
losses: 0,
winrate: '0%',
name: 'Solo/Duo'
}
}
2019-09-14 14:10:49 +00:00
return RiotData
2019-09-09 18:42:10 +00:00
}
/**
* Return the formatted records of a summoner
2021-09-16 12:23:09 +00:00
* @param {Object} recordsDto : raw records from the database stats
*/
2021-09-16 12:23:09 +00:00
export function createRecordsData(recordsDto) {
const records = recordsDto.reduce((acc, record) => {
acc[record.what] = record
return acc
}, {})
records.game_duration.amount = secToTime(records.game_duration.amount)
records.gold.amount = records.gold.amount.toLocaleString()
records.damage_taken.amount = records.damage_taken.amount.toLocaleString()
records.damage_dealt_champions.amount = records.damage_dealt_champions.amount.toLocaleString()
records.damage_dealt_objectives.amount = records.damage_dealt_objectives.amount.toLocaleString()
records.kp.amount = `${records.kp.amount}%`
records.time_spent_living.amount = secToTime(records.time_spent_living.amount)
records.heal.amount = records.heal.amount.toLocaleString()
2020-08-28 10:09:28 +00:00
return records
}
function getLeagueData(leagueData, leagueName) {
2019-10-08 19:54:32 +00:00
if (!leagueData) return null
leagueData.rankImgLink = getRankImg(leagueData)
leagueData.name = leagueName
2019-10-08 19:54:32 +00:00
return leagueData
}
/**
* Return the link of the rank image
* @param leagueData : stats in soloQ of the player
*/
export function getRankImg(leagueData) {
return `https://res.cloudinary.com/kln/image/upload/v1571671133/ranks/${leagueData.tier}_${leaguesNumbers[leagueData.rank]}.png`
}