import StaticSuperclass from './StaticSuperclass'
import Request from 'RequestClient/Request'
import METHOD_NAMES from 'Enums/method-names'
class StaticSummonerSpellEndpoint extends StaticSuperclass {
constructor(config, limiter) {
super()
this.config = config
this.list = this.list.bind(this)
this.get = this.get.bind(this)
this.resourceName = 'summoner-spells'
this.limiter = limiter
}
/**
* Retrieves summoner spell list.
*
* Implements GET `/lol/static-data/v3/summoner-spells`.
*/
list() {
return new Request(
this.config,
this.serviceName,
this.resourceName,
METHOD_NAMES.STATIC.GET_SUMMONER_SPELL_LIST,
'GET',
this.limiter,
)
}
/**
* Retrieves summoner spell by ID.
*
* Implements GET `/lol/static-data/v3/summoner-spells/{id}`.
*
* @param {number} summonerSpellID - The ID of the summoner spell.
*/
get(summonerSpellID) {
return new Request(
this.config,
this.serviceName,
`${this.resourceName}/${summonerSpellID}`,
METHOD_NAMES.GET_SUMMONER_SPELL_BY_ID,
'GET',
this.limiter,
)
}
}
export default StaticSummonerSpellEndpoint
|