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
|
import { HypixelPlayer } from '../hypixelApi'
import { colorCodeFromName, minecraftColorCodes } from '../util'
const rankColors: { [ name: string ]: string } = {
'NONE': '7',
'VIP': 'a',
'VIP+': 'a',
'MVP': 'b',
'MVP+': 'b',
'MVP++': '6',
'YOUTUBE': 'c',
'HELPER': '9',
'MODERATOR': '2',
'ADMIN': 'c'
}
export interface CleanRank {
name: string,
color: string | null,
colored: string | null,
}
/** Response cleaning (reformatting to be nicer) */
export function parseRank({
packageRank,
newPackageRank,
monthlyPackageRank,
rankPlusColor,
rank,
prefix
}: HypixelPlayer): CleanRank {
let name
let color
let colored
if (prefix) { // derive values from prefix
colored = prefix
color = minecraftColorCodes[colored.match(/§./)[0][1]]
name = colored.replace(/§./g, '').replace(/[\[\]]/g, '')
} else {
name = rank
|| newPackageRank.replace('_PLUS', '+')
|| packageRank.replace('_PLUS', '+')
|| monthlyPackageRank
// MVP++ is called Superstar for some reason
if (name === 'SUPERSTAR') name = 'MVP++'
// YouTube rank is called YouTuber, change this to the proper name
else if (name === 'YOUTUBER') name = 'YOUTUBE'
const plusColor = colorCodeFromName(rankPlusColor)
color = minecraftColorCodes[rankColors[name]]
const rankColorPrefix = rankColors[name] ? '§' + rankColors[name] : ''
const nameWithoutPlus = name.split('+')[0]
const plusesInName = '+'.repeat(name.split('+').length - 1)
console.log(plusColor, nameWithoutPlus, plusesInName)
if (plusColor && plusesInName.length >= 1)
colored = `${rankColorPrefix}[${nameWithoutPlus}§${plusColor}${plusesInName}${rankColorPrefix}]`
else
colored = `${rankColorPrefix}[${name}]`
}
return {
name,
color,
colored
}
}
|