LeagueStats/client/src/helpers/summoner.js

87 lines
2.9 KiB
JavaScript
Raw Normal View History

import { timeDifference } from '@/helpers/functions.js'
2019-09-09 18:42:10 +00:00
import { maps, gameModes } from '@/data/data.js'
import summonersJSON from '@/data/summoner.json'
const leaguesNumbers = { 'I': 1, 'II': 2, 'III': 3, 'IV': 4 }
/**
* 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) {
match.firstSum = getSummonerLink(match.firstSum)
match.secondSum = getSummonerLink(match.secondSum)
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('fr', dateOptions), time: date.toLocaleString('fr', timeOptions) }
match.date = timeDifference(match.date)
match.map = maps[match.map]
match.gamemode = gameModes[match.gamemode]
if (!match.gamemode) match.gamemode = 'Undefined 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
2019-09-09 18:42:10 +00:00
return {
account: RiotData.account,
matchList: RiotData.allMatches,
ranked: RiotData.ranked,
playing: RiotData.playing,
2019-09-09 18:42:10 +00:00
}
}
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`
}
2019-09-09 18:42:10 +00:00
function getSummonerLink(id) {
if (id === 0) return null
const spellName = summonersJSON.find(s => s.id === id).iconPath.split('/assets/')[1].toLowerCase()
return `https://raw.communitydragon.org/latest/plugins/rcp-be-lol-game-data/global/default/${spellName}`
2019-09-09 18:42:10 +00:00
}