all files / lib/Endpoints/LeagueEndpoint/ LeaguesEndpoint.js

100% Statements 10/10
100% Branches 0/0
100% Functions 2/2
100% Lines 10/10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42                                                                
import LeagueSuperclass from './LeagueSuperclass'
import Request from 'RequestClient/Request'
import METHOD_NAMES from 'Enums/method-names'
 
class LeaguesEndpoint extends LeagueSuperclass {
    constructor(config, limiter) {
        super()
 
        this.config = config
 
        this.by = {
            summonerID: this.summonerID.bind(this),
        }
 
        this.limiter = limiter
    }
 
    /**
     * Get leagues in all queues for a given summoner ID.
     *
     * Implements GET `/lol/league/v3/leagues/by-summoner/{summonerId}`.
     *
     * @param {number} summonerID - The ID of the summoner.
     */
    summonerID(summonerID) {
        console.warn(
            'Riot: getAllLeaguesForSummoner is being deprecated on 1/10/18. Please use getLeagueById as a replacement.',
        )
        console.warn('In kayn, this method is called kayn.League.by.uuid')
        return new Request(
            this.config,
            this.serviceName,
            `leagues/by-summoner/${summonerID}`,
            METHOD_NAMES.LEAGUE.GET_ALL_LEAGUES_FOR_SUMMONER,
            'GET',
            this.limiter,
        )
    }
}
 
export default LeaguesEndpoint