blob: 50770e7873de3ca13473f4858f35ce80999a922d (
plain)
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
|
import typedHypixelApi from 'typed-hypixel-api'
export interface Bank {
balance?: number
history: BankHistoryItem[]
}
export interface BankHistoryItem {
change: number
total: number
timestamp: number
name: string
}
export function cleanBank(data: typedHypixelApi.SkyBlockProfile): Bank {
let history: BankHistoryItem[] = []
if (!(data?.banking && 'transactions' in data?.banking)) {
return {
history: [],
balance: undefined
}
}
if (data?.banking?.transactions) {
let bankBalance = Math.round(data.banking.balance * 10) / 10
// we go in reverse so we can simulate the bank transactions
for (const transaction of data.banking.transactions.sort((a, b) => b.timestamp - a.timestamp)) {
const change = transaction.action === 'DEPOSIT' ? transaction.amount : -transaction.amount
history.push({
change: Math.round(change * 10) / 10,
total: Math.round(bankBalance * 10) / 10,
timestamp: transaction.timestamp,
name: transaction.initiator_name,
})
// since we're going in reverse, we remove from the total balance when adding to the history
bankBalance -= change
}
}
// history.reverse()
return {
balance: (data?.banking && 'balance' in data.banking && data.banking.balance) ? Math.round(data.banking.balance * 10) / 10 : undefined,
history
}
}
|