all files / lib/Endpoints/StaticEndpoints/ StaticItemEndpoint.js

81.82% Statements 9/11
100% Branches 0/0
33.33% Functions 1/3
81.82% Lines 9/11
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 43 44 45 46 47 48 49 50 51 52 53 54 55                                                                                            
import StaticSuperclass from './StaticSuperclass'
import Request from 'RequestClient/Request'
import METHOD_NAMES from 'Enums/method-names'
 
class StaticItemEndpoint extends StaticSuperclass {
    constructor(config, limiter) {
        super()
 
        this.config = config
 
        this.list = this.list.bind(this)
        this.get = this.get.bind(this)
 
        this.resourceName = 'items'
 
        this.limiter = limiter
    }
 
    /**
     * Retrieves item list.
     *
     * Implements GET `/lol/static-data/v3/items`.
     */
    list() {
        return new Request(
            this.config,
            this.serviceName,
            this.resourceName,
            METHOD_NAMES.STATIC.GET_ITEM_LIST,
            'GET',
            this.limiter,
        )
    }
 
    /**
     * Retrieves item by ID.
     *
     * Implements GET `/lol/static-data/v3/items/{id}`.
     *
     * @param {number} itemID - The ID of the item.
     */
    get(itemID) {
        return new Request(
            this.config,
            this.serviceName,
            `${this.resourceName}/${itemID}`,
            METHOD_NAMES.STATIC.GET_ITEM_BY_ID,
            'GET',
            this.limiter,
        )
    }
}
 
export default StaticItemEndpoint