mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
58 lines
2.2 KiB
Swift
58 lines
2.2 KiB
Swift
//
|
|
// InterfaceController.swift
|
|
// BlueWalletWatch Extension
|
|
//
|
|
// Created by Marcos Rodriguez on 3/6/19.
|
|
// Copyright © 2019 Facebook. All rights reserved.
|
|
//
|
|
|
|
import WatchKit
|
|
import WatchConnectivity
|
|
import Foundation
|
|
|
|
class InterfaceController: WKInterfaceController {
|
|
|
|
@IBOutlet weak var walletsTable: WKInterfaceTable!
|
|
@IBOutlet weak var noWalletsAvailableLabel: WKInterfaceLabel!
|
|
private let userActivity: NSUserActivity = NSUserActivity(activityType: HandoffIdentifier.ReceiveOnchain.rawValue)
|
|
|
|
override func willActivate() {
|
|
// This method is called when watch view controller is about to be visible to user
|
|
super.willActivate()
|
|
update(userActivity)
|
|
|
|
userActivity.userInfo = [HandOffUserInfoKey.ReceiveOnchain.rawValue: "bc1q2uvss3v0qh5smluggyqrzjgnqdg5xmun6afwpz"]
|
|
userActivity.isEligibleForHandoff = true;
|
|
userActivity.becomeCurrent()
|
|
if (WatchDataSource.shared.wallets.isEmpty) {
|
|
noWalletsAvailableLabel.setHidden(false)
|
|
} else {
|
|
processWalletsTable()
|
|
}
|
|
NotificationCenter.default.addObserver(self, selector: #selector(processWalletsTable), name: WatchDataSource.NotificationName.dataUpdated, object: nil)
|
|
}
|
|
|
|
@objc private func processWalletsTable() {
|
|
walletsTable.setNumberOfRows(WatchDataSource.shared.wallets.count, withRowType: WalletInformation.identifier)
|
|
|
|
for index in 0..<walletsTable.numberOfRows {
|
|
guard let controller = walletsTable.rowController(at: index) as? WalletInformation else { continue }
|
|
let wallet = WatchDataSource.shared.wallets[index]
|
|
if wallet.identifier == nil {
|
|
WatchDataSource.shared.wallets[index].identifier = index
|
|
}
|
|
controller.walletBalanceLabel.setHidden(wallet.hideBalance)
|
|
controller.name = wallet.label
|
|
controller.balance = wallet.hideBalance ? "" : wallet.balance
|
|
controller.type = WalletGradient(rawValue: wallet.type) ?? .SegwitHD
|
|
}
|
|
noWalletsAvailableLabel.setHidden(!WatchDataSource.shared.wallets.isEmpty)
|
|
walletsTable.setHidden(WatchDataSource.shared.wallets.isEmpty)
|
|
}
|
|
|
|
override func contextForSegue(withIdentifier segueIdentifier: String, in table: WKInterfaceTable, rowIndex: Int) -> Any? {
|
|
return rowIndex;
|
|
}
|
|
|
|
}
|