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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174 | 1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
1×
| import DDragonRequest, {
DDragonRequestTypes,
} from 'RequestClient/DDragonRequest'
import METHOD_NAMES from 'Enums/method-names'
class DDragonChampionEndpoint {
constructor(config) {
this.config = config
this.get = this.get.bind(this)
this.list = this.list.bind(this)
this.listFull = this.listFull.bind(this)
// Helpers
this.getDataById = this.getDataById.bind(this)
this.getDataByIdWithParentAsId = this.getDataByIdWithParentAsId.bind(
this,
)
this.listDataById = this.listDataById.bind(this)
this.listDataByIdWithParentAsId = this.listDataByIdWithParentAsId.bind(
this,
)
this.listFullDataById = this.listFullDataById.bind(this)
this.listFullDataByIdWithParentAsId = this.listFullDataByIdWithParentAsId.bind(
this,
)
}
get(championName) {
return new DDragonRequest(
this.config,
`champion/${championName}.json`,
DDragonRequestTypes.CDN.DATA,
METHOD_NAMES.DDRAGON.CHAMPION_GET,
)
}
list() {
return new DDragonRequest(
this.config,
'champion.json',
DDragonRequestTypes.CDN.DATA,
METHOD_NAMES.DDRAGON.CHAMPION_LIST,
)
}
// Own method to make it explicit that they are cached differently.
listFull() {
return new DDragonRequest(
this.config,
'championFull.json',
DDragonRequestTypes.CDN.DATA,
METHOD_NAMES.DDRAGON.CHAMPION_LIST_FULL,
)
}
getDataById(championName) {
return new DDragonRequest(
this.config,
`champion/${championName}.json`,
DDragonRequestTypes.CDN.DATA,
METHOD_NAMES.DDRAGON.CHAMPION_GET_DATA_BY_ID,
({ data, ...rest }) => ({
...rest,
data: transform(ID_WITH_KEY, data),
}),
)
}
getDataByIdWithParentAsId(championName) {
return new DDragonRequest(
this.config,
`champion/${championName}.json`,
DDragonRequestTypes.CDN.DATA,
METHOD_NAMES.DDRAGON.CHAMPION_GET_DATA_BY_ID_PARENT_TOO,
({ data, ...rest }) => ({
...rest,
data: transform(ID_WITH_KEY_AND_PARENT_AS_ID, data),
}),
)
}
listDataById() {
return new DDragonRequest(
this.config,
'champion.json',
DDragonRequestTypes.CDN.DATA,
METHOD_NAMES.DDRAGON.CHAMPION_LIST_DATA_BY_ID,
({ data, ...rest }) => ({
...rest,
data: Object.keys(data)
.map(d => transform(ID_WITH_KEY, { [d]: data[d] }))
.reduce((t, c) => ({ ...t, ...c }), {}),
}),
)
}
listDataByIdWithParentAsId() {
return new DDragonRequest(
this.config,
'champion.json',
DDragonRequestTypes.CDN.DATA,
METHOD_NAMES.DDRAGON.CHAMPION_LIST_DATA_BY_ID_PARENT_TOO,
({ data, ...rest }) => ({
...rest,
data: Object.keys(data)
.map(d =>
transform(ID_WITH_KEY_AND_PARENT_AS_ID, {
[d]: data[d],
}),
)
.reduce((t, c) => ({ ...t, ...c }), {}),
}),
)
}
listFullDataById() {
return new DDragonRequest(
this.config,
`championFull.json`,
DDragonRequestTypes.CDN.DATA,
METHOD_NAMES.DDRAGON.CHAMPION_LIST_FULL_DATA_BY_ID,
({ data, ...rest }) => ({
...rest,
data: Object.keys(data)
.map(d => transform(ID_WITH_KEY, { [d]: data[d] }))
.reduce((t, c) => ({ ...t, ...c }), {}),
}),
)
}
listFullDataByIdWithParentAsId() {
return new DDragonRequest(
this.config,
`championFull.json`,
DDragonRequestTypes.CDN.DATA,
METHOD_NAMES.DDRAGON.CHAMPION_LIST_FULL_DATA_BY_ID,
({ data, ...rest }) => ({
...rest,
data: Object.keys(data)
.map(d =>
transform(ID_WITH_KEY_AND_PARENT_AS_ID, {
[d]: data[d],
}),
)
.reduce((t, c) => ({ ...t, ...c }), {}),
}),
)
}
}
const swapIdAndKey = data => ({ ...data, id: data.key, key: data.id })
const makeParentId = data => ({
[data.key]: { ...data, id: data.key, key: data.id },
})
const ID_WITH_KEY = 'id_with_key'
const ID_WITH_KEY_AND_PARENT_AS_ID = 'id_with_key_and_parent_as_id'
const transform = (type, data) => {
const nameKey = Object.keys(data)[0]
// Only get the first key (which is the name).
const object = data[nameKey]
const fn = {
[ID_WITH_KEY]: {
[nameKey]: swapIdAndKey(object),
},
[ID_WITH_KEY_AND_PARENT_AS_ID]: makeParentId(object),
}[type]
return fn
}
export default DDragonChampionEndpoint
|