-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathCategoriesActions.ts
More file actions
734 lines (695 loc) · 21.3 KB
/
CategoriesActions.ts
File metadata and controls
734 lines (695 loc) · 21.3 KB
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
import { eq } from 'biggystring'
import type {
EdgeAccount,
EdgeAssetAction,
EdgeAssetAmount,
EdgeCurrencyWallet,
EdgeMetadata,
EdgeTransaction,
EdgeTxAction
} from 'edge-core-js'
import { sprintf } from 'sprintf-js'
import { showError } from '../components/services/AirshipInstance'
import { EDGE_CONTENT_SERVER_URI } from '../constants/CdnConstants'
import { TX_ACTION_LABEL_MAP } from '../constants/txActionConstants'
import { lstrings } from '../locales/strings'
import type { ThunkAction } from '../types/reduxTypes'
import { getCurrencyCodeWithAccount } from '../util/CurrencyInfoHelpers'
import { cleanFiatCurrencyCode } from '../util/CurrencyWalletHelpers'
export type Category = 'transfer' | 'exchange' | 'expense' | 'income'
export interface EdgeCategory {
category: Category
subcategory: string
}
/**
* Use these strings to show categories in a user's language.
*/
export const displayCategories = {
transfer: lstrings.fragment_transaction_transfer,
exchange: lstrings.fragment_transaction_exchange,
expense: lstrings.fragment_transaction_expense,
income: lstrings.fragment_transaction_income
}
const CATEGORIES_FILENAME = 'Categories.json'
export function getSubcategories(): ThunkAction<Promise<void>> {
return async (dispatch, getState) => {
const { account } = getState().core
const subcategories = await readSyncedSubcategories(account)
dispatch({
type: 'SET_TRANSACTION_SUBCATEGORIES',
data: { subcategories }
})
}
}
export function setNewSubcategory(
newSubcategory: string
): ThunkAction<Promise<void>> {
return async (dispatch, getState) => {
const state = getState()
const { account } = state.core
const oldSubcats = state.ui.subcategories
const newSubcategories = [...oldSubcats, newSubcategory]
await writeSyncedSubcategories(account, {
categories: newSubcategories.sort()
})
.then(() => {
dispatch({
type: 'SET_TRANSACTION_SUBCATEGORIES',
data: { subcategories: newSubcategories.sort() }
})
})
.catch((error: unknown) => {
showError(error)
})
}
}
/**
* Splits a string into its category and subcategory strings.
* The category must fit our enum type, or we will use a fallback.
* The subcategory can be localized and freely edited.
*/
export function splitCategory(
fullCategory: string = '',
defaultCategory: Category = 'income'
): EdgeCategory {
if (fullCategory.length > 0 && !fullCategory.includes(':')) {
fullCategory += ':'
}
for (const [category, test, n] of tests) {
if (test.test(fullCategory)) {
return {
category,
subcategory: fullCategory.slice(n)
}
}
}
// We can't guarantee that data on disk is correct,
// but this should usually never happen:
return {
category: defaultCategory,
subcategory: fullCategory.replace(/^[^:]:/, '')
}
}
/**
* Combine the category and subcategory into a single string,
* with the correct capitalization.
*/
export function joinCategory(split: EdgeCategory): string {
return prefixes[split.category] + split.subcategory
}
/**
* Localizes a category string for display.
*/
export function formatCategory(split: EdgeCategory): string {
if (split.subcategory === '') return displayCategories[split.category]
return `${displayCategories[split.category]}:${split.subcategory}`
}
/**
* Internal prefixes used on disk.
*/
const prefixes = {
transfer: 'Transfer:',
exchange: 'Exchange:',
expense: 'Expense:',
income: 'Income:'
}
const tests: Array<[Category, RegExp, number]> = [
['transfer', /^Transfer:/i, 9],
['exchange', /^Exchange:/i, 9],
['expense', /^Expense:/i, 8],
['income', /^Income:/i, 7]
]
export interface CategoriesFile {
categories: string[]
}
async function writeSyncedSubcategories(
account: EdgeAccount,
subcategories: CategoriesFile
): Promise<void> {
const stringifiedSubcategories = JSON.stringify(subcategories)
try {
await account.disklet.setText(CATEGORIES_FILENAME, stringifiedSubcategories)
} catch (error: any) {
showError(error)
}
}
async function readSyncedSubcategories(
account: EdgeAccount
): Promise<string[]> {
try {
const text = await account.disklet.getText(CATEGORIES_FILENAME)
const categoriesJson = JSON.parse(text)
return categoriesJson.categories
} catch (error) {
// If Categories.json doesn't exist yet, create it, and return it
await writeSyncedSubcategories(account, {
categories: defaultCategories
})
return defaultCategories
}
}
export const defaultCategories = [
'Exchange:Buy Bitcoin',
'Exchange:Sell Bitcoin',
'Expense:Air Travel',
'Expense:Alcohol & Bars',
'Expense:Allowance',
'Expense:Amusement',
'Expense:Arts',
'Expense:ATM Fee',
'Expense:Auto & Transport',
'Expense:Auto Insurance',
'Expense:Auto Payment',
'Expense:Baby Supplies',
'Expense:Babysitter & Daycare',
'Expense:Bank Fee',
'Expense:Bills & Utilities',
'Expense:Books',
'Expense:Books & Supplies',
'Expense:Car Wash',
'Expense:Cash & ATM',
'Expense:Charity',
'Expense:Clothing',
'Expense:Coffee Shops',
'Expense:Credit Card Payment',
'Expense:Dentist',
'Expense:Deposit to Savings',
'Expense:Doctor',
'Expense:Education',
'Expense:Electronics & Software',
'Expense:Entertainment',
'Expense:Eye Care',
'Expense:Fast Food',
'Expense:Fees & Charges',
'Expense:Financial',
'Expense:Financial Advisor',
'Expense:Food & Dining',
'Expense:Furnishings',
'Expense:Gas & Fuel',
'Expense:Gift',
'Expense:Gifts & Donations',
'Expense:Groceries',
'Expense:Gym',
'Expense:Hair',
'Expense:Health & Fitness',
'Expense:HOA Dues',
'Expense:Hobbies',
'Expense:Home',
'Expense:Home Improvement',
'Expense:Home Insurance',
'Expense:Home Phone',
'Expense:Home Services',
'Expense:Home Supplies',
'Expense:Hotel',
'Expense:Interest Exp',
'Expense:Internet',
'Expense:IRA Contribution',
'Expense:Kids',
'Expense:Kids Activities',
'Expense:Late Fee',
'Expense:Laundry',
'Expense:Lawn & Garden',
'Expense:Life Insurance',
'Expense:Misc.',
'Expense:Mobile Phone',
'Expense:Mortgage & Rent',
'Expense:Mortgage Interest',
'Expense:Movies & DVDs',
'Expense:Music',
'Expense:Network Fee',
'Expense:Newspaper & Magazines',
'Expense:Not Sure',
'Expense:Parking',
'Expense:Personal Care',
'Expense:Pet Food & Supplies',
'Expense:Pet Grooming',
'Expense:Pets',
'Expense:Pharmacy',
'Expense:Property',
'Expense:Public Transportation',
'Expense:Registration',
'Expense:Rental Car & Taxi',
'Expense:Restaurants',
'Expense:Service & Parts',
'Expense:Service Fee',
'Expense:Shopping',
'Expense:Spa & Massage',
'Expense:Sporting Goods',
'Expense:Sports',
'Expense:Student Loan',
'Expense:Tax',
'Expense:Television',
'Expense:Tolls',
'Expense:Toys',
'Expense:Trade Commissions',
'Expense:Travel',
'Expense:Tuition',
'Expense:Utilities',
'Expense:Vacation',
'Expense:Vet',
'Income:Consulting Income',
'Income:Div Income',
'Income:Net Salary',
'Income:Other Income',
'Income:Rent',
'Income:Sales',
'Transfer:Airbitz',
'Transfer:Bitcoin Core',
'Transfer:Blockchain',
'Transfer:Cash App',
'Transfer:Coinbase',
'Transfer:Gemini',
'Transfer:Edge',
'Transfer:Electrum',
'Transfer:Exodus',
'Transfer:Multibit',
'Transfer:Mycelium',
'Transfer:Dark Wallet'
]
/**
* Given an EdgeTxAction, returns the display value for pre-filling the
* 'Category' and 'Notes' tiles, if they are not already user-modified.
*/
export interface ActionDisplayInfo {
direction: 'send' | 'receive'
iconPluginId?: string
userData: EdgeMetadata
savedData: EdgeMetadata
mergedData: EdgeMetadata
action?: EdgeTxAction
assetAction?: EdgeAssetAction
}
export const getTxActionDisplayInfo = (
tx: EdgeTransaction,
account: EdgeAccount,
wallet: EdgeCurrencyWallet
): ActionDisplayInfo => {
const {
assetAction,
chainAction,
chainAssetAction,
metadata,
savedAction,
swapData,
tokenId
} = tx
const { currencyConfig, currencyInfo } = wallet
const displayName =
tokenId == null
? currencyInfo.assetDisplayName
: currencyConfig.allTokens[tokenId]?.displayName ?? ''
const action = savedAction ?? chainAction
const assetAct = assetAction ?? chainAssetAction
const getCurrencyCodes = (assets: EdgeAssetAmount[]): string[] =>
assets
.map(asset =>
getCurrencyCodeWithAccount(account, asset.pluginId, asset.tokenId)
)
.filter((currencyCode): currencyCode is string => currencyCode != null)
const isSentTransaction =
tx.nativeAmount.startsWith('-') || (eq(tx.nativeAmount, '0') && tx.isSend)
let payeeText: string | undefined
let edgeCategory: EdgeCategory
let direction: 'send' | 'receive'
let notes: string | undefined
let iconPluginId: string | undefined
// Default text for send or receive
if (isSentTransaction) {
payeeText = sprintf(lstrings.transaction_sent_1s, displayName)
direction = 'send'
edgeCategory = {
category: 'expense',
subcategory: ''
}
} else {
payeeText = sprintf(lstrings.transaction_received_1s, displayName)
direction = 'receive'
edgeCategory = {
category: 'income',
subcategory: ''
}
}
// Override with swapData
if (swapData != null) {
const { payoutCurrencyCode } = swapData
payeeText = sprintf(
lstrings.transaction_details_swap_to_subcat_1s,
payoutCurrencyCode
)
}
if (action != null && assetAct != null) {
const { actionType } = action
const { assetActionType } = assetAct
payeeText = TX_ACTION_LABEL_MAP[assetActionType]
let unsupported = false
switch (actionType) {
case 'swap': {
iconPluginId = action.swapInfo.pluginId
switch (assetActionType) {
case 'transfer': {
const txSrc = action.payoutWalletId !== wallet.id
const toFromStr = txSrc
? lstrings.transaction_details_swap_to_subcat_1s
: lstrings.transaction_details_swap_from_subcat_1s
const walletName =
account.currencyWallets[action.payoutWalletId]?.name ??
displayName
edgeCategory = {
category: 'transfer',
subcategory: sprintf(toFromStr, walletName)
}
break
}
case 'transferNetworkFee':
case 'swapNetworkFee': {
edgeCategory = {
category: 'expense',
subcategory: lstrings.wc_smartcontract_network_fee
}
break
}
case 'swap':
case 'swapOrderFill': {
// Determine if the swap destination was to a different asset or if the
// swap source was from a different asset.
const txSrcSameAsset =
action.fromAsset.tokenId === tokenId &&
action.fromAsset.pluginId === wallet.currencyInfo.pluginId
const toFromStr = txSrcSameAsset
? lstrings.transaction_details_swap_to_subcat_1s
: lstrings.transaction_details_swap_from_subcat_1s
const otherAsset = txSrcSameAsset
? action.toAsset
: action.fromAsset
edgeCategory = {
category: 'exchange',
subcategory: sprintf(
toFromStr,
getCurrencyCodeWithAccount(
account,
otherAsset.pluginId,
otherAsset.tokenId
)
)
}
direction = txSrcSameAsset ? 'send' : 'receive'
break
}
case 'swapOrderPost': {
edgeCategory = {
category: 'expense',
subcategory: sprintf(lstrings.transaction_details_swap_order_post)
}
direction = 'send'
break
}
case 'swapOrderCancel': {
edgeCategory = {
category: 'expense',
subcategory: sprintf(
lstrings.transaction_details_swap_order_cancel
)
}
direction = 'send'
break
}
default:
unsupported = true
}
break
}
case 'stake': {
iconPluginId = action.pluginId
switch (assetActionType) {
case 'stake': {
let subcategory
if (action.stakeAssets.length === 1)
subcategory = sprintf(
lstrings.transaction_details_stake_subcat_1s,
...getCurrencyCodes(action.stakeAssets)
)
else if (action.stakeAssets.length === 2)
subcategory = sprintf(
lstrings.transaction_details_stake_subcat_2s,
...getCurrencyCodes(action.stakeAssets)
)
else {
console.warn(
`Unsupported number of assets for '${assetActionType}' EdgeTxActionSwapType`
)
break
}
edgeCategory = { category: 'transfer', subcategory }
direction = 'send'
break
}
case 'stakeOrder': {
if (action.stakeAssets.length === 1)
notes = sprintf(
lstrings.transaction_details_unstake_order_notes_1s,
...getCurrencyCodes(action.stakeAssets)
)
else if (action.stakeAssets.length === 2)
notes = sprintf(
lstrings.transaction_details_unstake_order_notes_2s,
...getCurrencyCodes(action.stakeAssets)
)
else {
console.error(
`Unsupported number of assets for '${assetActionType}' EdgeTxActionSwapType`
)
break
}
edgeCategory = {
category: 'expense',
subcategory: lstrings.transaction_details_stake_order_subcat
}
direction = 'send'
break
}
case 'claim': {
let subcategory
if (action.stakeAssets.length === 1)
subcategory = sprintf(
lstrings.transaction_details_unstake_subcat_1s,
...getCurrencyCodes(action.stakeAssets)
)
else if (action.stakeAssets.length === 2)
subcategory = sprintf(
lstrings.transaction_details_unstake_subcat_2s,
...getCurrencyCodes(action.stakeAssets)
)
else {
console.error(
`Unsupported number of assets for '${assetActionType}' EdgeTxActionSwapType`
)
break
}
edgeCategory = { category: 'transfer', subcategory }
if (
action.stakeAssets.every(
asset => asset.pluginId === currencyInfo.pluginId
)
) {
direction = 'receive'
} else {
direction = 'send'
}
break
}
case 'unstake': {
let subcategory
if (action.stakeAssets.length === 1)
subcategory = sprintf(
lstrings.transaction_details_unstake_subcat_1s,
...getCurrencyCodes(action.stakeAssets)
)
else if (action.stakeAssets.length === 2)
subcategory = sprintf(
lstrings.transaction_details_unstake_subcat_2s,
...getCurrencyCodes(action.stakeAssets)
)
else {
console.error(
`Unsupported number of assets for '${assetActionType}' EdgeTxActionSwapType`
)
break
}
edgeCategory = { category: 'transfer', subcategory }
direction = 'receive'
break
}
case 'claimOrder':
case 'unstakeOrder': {
if (action.stakeAssets.length === 1)
notes = sprintf(
lstrings.transaction_details_unstake_order_notes_1s,
...getCurrencyCodes(action.stakeAssets)
)
else if (action.stakeAssets.length === 2)
notes = sprintf(
lstrings.transaction_details_unstake_order_notes_2s,
...getCurrencyCodes(action.stakeAssets)
)
else {
console.error(
`Unsupported number of assets for '${assetActionType}' EdgeTxActionSwapType`
)
break
}
edgeCategory = {
category: 'expense',
subcategory: lstrings.transaction_details_unstake_order
}
direction = 'send'
break
}
case 'unstakeNetworkFee':
case 'stakeNetworkFee': {
edgeCategory = {
category: 'expense',
subcategory: lstrings.wc_smartcontract_network_fee
}
break
}
default:
unsupported = true
}
break
}
case 'fiat': {
iconPluginId = action.fiatPlugin.providerId
switch (assetActionType) {
case 'buy': {
payeeText = sprintf(payeeText, displayName)
const { fiatAsset } = action
const { fiatCurrencyCode } = cleanFiatCurrencyCode(
fiatAsset.fiatCurrencyCode
)
edgeCategory = {
category: 'exchange',
subcategory: sprintf(
lstrings.transaction_details_swap_from_subcat_1s,
fiatCurrencyCode
)
}
direction = 'receive'
break
}
case 'sell': {
payeeText = sprintf(payeeText, displayName)
const { fiatAsset } = action
const { fiatCurrencyCode } = cleanFiatCurrencyCode(
fiatAsset.fiatCurrencyCode
)
edgeCategory = {
category: 'exchange',
subcategory: sprintf(
lstrings.transaction_details_swap_to_subcat_1s,
fiatCurrencyCode
)
}
direction = 'send'
break
}
case 'sellNetworkFee': {
edgeCategory = {
category: 'expense',
subcategory: lstrings.wc_smartcontract_network_fee
}
direction = 'send'
break
}
default:
unsupported = true
}
break
}
case 'tokenApproval': {
switch (assetActionType) {
case 'tokenApproval': {
edgeCategory = {
category: 'expense',
subcategory: lstrings.wc_smartcontract_network_fee
}
break
}
default:
unsupported = true
}
break
}
case 'giftCard': {
iconPluginId = action.provider.providerId
payeeText = lstrings.gift_card_recipient_name
edgeCategory = {
category: 'expense',
subcategory: action.card.name
}
direction = 'send'
break
}
default:
unsupported = true
}
if (unsupported)
console.error(
`Unsupported EdgeTxAction assetAction:assetActionType '${assetActionType}'`
)
}
const savedData: EdgeMetadata = {
name: payeeText,
category: joinCategory(edgeCategory),
notes
}
const mergedData: EdgeMetadata = {
name:
metadata?.name != null && metadata.name.length > 0
? metadata.name
: savedData.name,
category:
metadata?.category != null && metadata.category.length > 0
? metadata.category
: savedData.category,
notes:
metadata?.notes != null && metadata.notes.length > 0
? metadata.notes
: savedData.notes
}
return {
action,
assetAction,
direction,
iconPluginId,
savedData,
userData: metadata ?? {},
mergedData
}
}
export const pluginIdIcons: Record<string, string> = {
'0xgasless': EDGE_CONTENT_SERVER_URI + '/0xgasless.png',
bitrefill: EDGE_CONTENT_SERVER_URI + '/bitrefill.png',
bitsofgold: EDGE_CONTENT_SERVER_URI + '/bits-of-gold-logo.png',
bridgeless: EDGE_CONTENT_SERVER_URI + '/bridgeless.png',
changenow: EDGE_CONTENT_SERVER_URI + '/changenow.png',
changehero: EDGE_CONTENT_SERVER_URI + '/changehero.png',
changelly: EDGE_CONTENT_SERVER_URI + '/changelly.png',
cosmosibc: EDGE_CONTENT_SERVER_URI + '/cosmosibc.png',
exolix: EDGE_CONTENT_SERVER_URI + '/exolix-logo.png',
fantomsonicupgrade: EDGE_CONTENT_SERVER_URI + '/fantomsonicupgrade.png',
godex: EDGE_CONTENT_SERVER_URI + '/godex.png',
letsexchange: EDGE_CONTENT_SERVER_URI + '/letsexchange-logo.png',
lifi: EDGE_CONTENT_SERVER_URI + '/lifi.png',
mayaprotocol: EDGE_CONTENT_SERVER_URI + '/mayaprotocol.png',
rango: EDGE_CONTENT_SERVER_URI + '/rango.png',
sideshift: EDGE_CONTENT_SERVER_URI + '/sideshift-logo.png',
simplex: EDGE_CONTENT_SERVER_URI + '/simplex.png',
swapuz: EDGE_CONTENT_SERVER_URI + '/swapuz.png',
thorchain: EDGE_CONTENT_SERVER_URI + '/thorchain.png',
unizen: EDGE_CONTENT_SERVER_URI + '/unizen.png',
swapkit: EDGE_CONTENT_SERVER_URI + '/swapkit.png',
tronResources: EDGE_CONTENT_SERVER_URI + '/TRON/TRON.png',
velodrome: EDGE_CONTENT_SERVER_URI + '/velodrome.png',
xgram: EDGE_CONTENT_SERVER_URI + '/xgram.png',
xrpdex: EDGE_CONTENT_SERVER_URI + '/xrpdex.png'
}