mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-14 22:45:54 +03:00
108 lines
3.9 KiB
Swift
108 lines
3.9 KiB
Swift
// Copyright © 2021 Encrypted Ink. All rights reserved.
|
|
|
|
import Cocoa
|
|
import WalletConnect
|
|
import Kingfisher
|
|
|
|
class ApproveTransactionViewController: NSViewController {
|
|
|
|
@IBOutlet weak var gweiLabel: NSTextField!
|
|
@IBOutlet weak var titleLabel: NSTextField!
|
|
@IBOutlet var metaTextView: NSTextView!
|
|
@IBOutlet weak var okButton: NSButton!
|
|
@IBOutlet weak var speedSlider: NSSlider!
|
|
@IBOutlet weak var slowSpeedLabel: NSTextField!
|
|
@IBOutlet weak var fastSpeedLabel: NSTextField!
|
|
@IBOutlet weak var peerNameLabel: NSTextField!
|
|
@IBOutlet weak var peerLogoImageView: NSImageView! {
|
|
didSet {
|
|
peerLogoImageView.wantsLayer = true
|
|
peerLogoImageView.layer?.backgroundColor = NSColor.systemGray.withAlphaComponent(0.5).cgColor
|
|
}
|
|
}
|
|
|
|
private let gasService = GasService.shared
|
|
private let priceService = PriceService.shared
|
|
private var currentGasInfo: GasService.Info?
|
|
private var transaction: Transaction!
|
|
private var completion: ((Transaction?) -> Void)!
|
|
private var didEnableSpeedConfiguration = false
|
|
private var peerMeta: WCPeerMeta?
|
|
|
|
static func with(transaction: Transaction, peerMeta: WCPeerMeta?, completion: @escaping (Transaction?) -> Void) -> ApproveTransactionViewController {
|
|
let new = instantiate(ApproveTransactionViewController.self)
|
|
new.transaction = transaction
|
|
new.completion = completion
|
|
new.peerMeta = peerMeta
|
|
return new
|
|
}
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
priceService.update()
|
|
titleLabel.stringValue = Strings.sendTransaction
|
|
setSpeedConfigurationViews(enabled: false)
|
|
updateInterface()
|
|
prepareTransaction()
|
|
if let peer = peerMeta {
|
|
peerNameLabel.stringValue = peer.name
|
|
if let urlString = peer.icons.first, let url = URL(string: urlString) {
|
|
peerLogoImageView.kf.setImage(with: url) { [weak peerLogoImageView] result in
|
|
if case .success = result {
|
|
peerLogoImageView?.layer?.backgroundColor = NSColor.clear.cgColor
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private func prepareTransaction() {
|
|
Ethereum.prepareTransaction(transaction) { [weak self] updated in
|
|
self?.transaction = updated
|
|
self?.updateInterface()
|
|
}
|
|
}
|
|
|
|
private func updateInterface() {
|
|
enableSpeedConfigurationIfNeeded()
|
|
let meta = transaction.description(ethPrice: priceService.currentPrice)
|
|
if metaTextView.string != meta {
|
|
metaTextView.string = meta
|
|
}
|
|
if didEnableSpeedConfiguration, let gwei = transaction.gasPriceGwei {
|
|
gweiLabel.stringValue = "\(gwei) Gwei"
|
|
}
|
|
}
|
|
|
|
private func enableSpeedConfigurationIfNeeded() {
|
|
guard !didEnableSpeedConfiguration else { return }
|
|
let newGasInfo = gasService.currentInfo
|
|
guard transaction.hasFee, let gasInfo = newGasInfo else { return }
|
|
didEnableSpeedConfiguration = true
|
|
currentGasInfo = gasInfo
|
|
speedSlider.doubleValue = transaction.currentGasInRelationTo(info: gasInfo)
|
|
setSpeedConfigurationViews(enabled: true)
|
|
}
|
|
|
|
private func setSpeedConfigurationViews(enabled: Bool) {
|
|
slowSpeedLabel.alphaValue = enabled ? 1 : 0.5
|
|
fastSpeedLabel.alphaValue = enabled ? 1 : 0.5
|
|
speedSlider.isEnabled = enabled
|
|
}
|
|
|
|
@IBAction func sliderValueChanged(_ sender: NSSlider) {
|
|
guard let gasInfo = currentGasInfo else { return }
|
|
transaction.setGasPrice(value: sender.doubleValue, inRelationTo: gasInfo)
|
|
updateInterface()
|
|
}
|
|
|
|
@IBAction func actionButtonTapped(_ sender: Any) {
|
|
completion(transaction)
|
|
}
|
|
|
|
@IBAction func cancelButtonTapped(_ sender: NSButton) {
|
|
completion(nil)
|
|
}
|
|
|
|
}
|