-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathTransactionStatus.swift
79 lines (72 loc) · 3.34 KB
/
TransactionStatus.swift
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
//
// TransactionStatus.swift
// Adamant
//
// Created by Anokhov Pavel on 06.10.2018.
// Copyright © 2018 Adamant. All rights reserved.
//
import Foundation
import UIKit
enum InconsistentReason: Codable, Hashable {
case time
case duplicate
case unknown
case wrongTxHash
case wrongAmount
case senderCryptoAddressMismatch(String)
case recipientCryptoAddressMismatch(String)
case senderCryptoAddressUnavailable(String)
case recipientCryptoAddressUnavailable(String)
var localized: String {
switch self {
case .time:
return .localized("TransactionStatus.Inconsistent.WrongTimestamp", comment: "Transaction status: inconsistent wrong timestamp")
case .duplicate:
return .localized("TransactionStatus.Inconsistent.Duplicate", comment: "Transaction status: inconsistent duplicate")
case .unknown:
return .localized("TransactionStatus.Inconsistent.Unknown", comment: "Transaction status: inconsistent wrong unknown")
case .wrongTxHash:
return .localized("TransactionStatus.Inconsistent.WrongTxHash", comment: "Transaction status: inconsistent wrong hash")
case .wrongAmount:
return .localized("TransactionStatus.Inconsistent.WrongAmount", comment: "Transaction status: inconsistent wrong amount")
case .senderCryptoAddressMismatch(let coin):
return String.localizedStringWithFormat(.localized("TransactionStatus.Inconsistent.SenderCryptoAddressMismatch", comment: "Transaction status: inconsistent wrong mismatch"), coin)
case .recipientCryptoAddressMismatch(let coin):
return String.localizedStringWithFormat(.localized("TransactionStatus.Inconsistent.RecipientCryptoAddressMismatch", comment: "Transaction status: inconsistent wrong mismatch"), coin)
case .senderCryptoAddressUnavailable(let coin):
return String.localizedStringWithFormat(.localized("TransactionStatus.Inconsistent.SenderCryptoAddressUnavailable", comment: "Transaction status: inconsistent unable to retrieve"), coin)
case .recipientCryptoAddressUnavailable(let coin):
return String.localizedStringWithFormat(.localized("TransactionStatus.Inconsistent.RecipientCryptoAddressUnavailable", comment: "Transaction status: inconsistent unable to retrieve"), coin)
}
}
}
enum TransactionStatus: Codable, Equatable, Hashable {
case notInitiated
case pending
case success
case failed
case registered
case inconsistent(InconsistentReason)
var localized: String {
switch self {
case .notInitiated:
return "⏱"
case .pending, .registered:
return .localized("TransactionStatus.Pending", comment: "Transaction status: transaction is pending")
case .success:
return .localized("TransactionStatus.Success", comment: "Transaction status: success")
case .failed:
return .localized("TransactionStatus.Failed", comment: "Transaction status: transaction failed")
case .inconsistent:
return .localized("TransactionStatus.Inconsistent", comment: "Transaction status: transaction warning")
}
}
}
extension TransactionStatus {
var isInconsistent: Bool {
if case .inconsistent = self {
return true
}
return false
}
}