This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
187 lines (169 loc) · 3.42 KB
/
index.ts
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
175
176
177
178
179
180
181
182
183
184
185
186
187
import axios from 'axios'
/*
* Candidate ID definition
*/
const candidateId = '35fad6e0-e4ca-410a-8e10-96ba8f77a916'
//.env
//hide data
//Type definition
enum Color {
BLUE = 'blue',
RED = 'red',
Purple = 'purple',
White = 'white',
}
enum Direction {
Up = 'up',
Down = 'down',
Left = 'left',
Right = 'right',
}
interface Position {
row: number
column: number
}
interface SoloonsPayload extends Position {
color: Color
}
interface ComethPayload extends Position {
direction: Direction
}
interface GoalResult {
goal: Array<Array<string>>
}
/**
* API integration functions
*/
/**
* Create a new Polyanet
* @param position
* @returns string
*/
function createPolyanet(position: Position): Promise<string> {
return axios
.post(
`https://challenge.crossmint.io/api/polyanets`,
{
candidateId,
...position,
},
{
headers: {
'Content-Type': 'application/json',
},
},
)
.then(() => {
return 'success'
})
.catch(() => {
return createPolyanet(position)
})
}
/**
* Create a new Soloon
* @param soloon
* @returns string
*/
function createSoloon(soloon: SoloonsPayload): Promise<string> {
return axios
.post(
`https://challenge.crossmint.io/api/soloons`,
{
candidateId,
...soloon,
},
{
headers: {
'Content-Type': 'application/json',
},
},
)
.then(() => {
return 'success'
})
.catch(() => {
return createSoloon(soloon)
})
}
/**
* Create a new Cometh
* @param cometh
* @returns string
*/
function createCometh(cometh: ComethPayload): Promise<string> {
return axios
.post(
`https://challenge.crossmint.io/api/comeths`,
{
candidateId,
...cometh,
},
{
headers: {
'Content-Type': 'application/json',
},
},
)
.then(() => {
return 'success'
})
.catch(() => {
return createCometh(cometh)
})
}
/**
* Retrieve the goal
* @returns GoalResult
*/
function getGoal(): Promise<GoalResult> {
return axios
.get(
`https://challenge.crossmint.io/api/map/${candidateId}/goal?candidateId=${candidateId}`,
{
headers: {
'Content-Type': 'application/json',
},
},
)
.then((res) => {
return res.data
})
.catch((error) => {
console.log('Error: ', error)
})
}
async function run() {
// Retrieve the goal results
const result = await getGoal()
// Transform the results in a 2d array of position and items
const positions2d = result.goal.map((row, i) => {
return row.map((col, j) => {
if (col !== 'SPACE') {
return {
row: i,
column: j,
item: col,
}
} else {
return null
}
})
})
// Transform 2d array into 1d array and remove all null values
const positions = [].concat(...positions2d).filter((i) => i !== null)
// Create the map based on position
for (const position of positions) {
const { item, ...rest } = position
if (item.includes('COMETH')) {
const direction = item.split('_')[0].toLowerCase()
await createCometh({ ...rest, direction })
} else if (item.includes('SOLOON')) {
const color = item.split('_')[0].toLowerCase()
await createSoloon({ ...rest, color })
} else {
await createPolyanet({ ...rest })
}
}
}
run()