mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-19 05:45:15 +01:00
82 lines
2.5 KiB
Swift
82 lines
2.5 KiB
Swift
//
|
|
// InterfaceController.swift
|
|
// BlueWalletWatch Extension
|
|
//
|
|
// Created by Marcos Rodriguez on 3/6/19.
|
|
//
|
|
|
|
import WatchKit
|
|
import WatchConnectivity
|
|
import Foundation
|
|
|
|
class InterfaceController: WKInterfaceController, WCSessionDelegate {
|
|
|
|
@IBOutlet weak var walletsTable: WKInterfaceTable!
|
|
@IBOutlet weak var noWalletsAvailableLabel: WKInterfaceLabel!
|
|
|
|
override func awake(withContext context: Any?) {
|
|
setupSession()
|
|
}
|
|
|
|
override func willActivate() {
|
|
super.willActivate()
|
|
updateUI()
|
|
NotificationCenter.default.addObserver(self, selector: #selector(updateUI), name: WatchDataSource.NotificationName.dataUpdated, object: nil)
|
|
}
|
|
|
|
private func setupSession() {
|
|
guard WCSession.isSupported() else { return }
|
|
WCSession.default.delegate = self
|
|
WCSession.default.activate()
|
|
}
|
|
|
|
private func processContextData(_ context: Any?) {
|
|
guard let contextUnwrapped = context as? [String: Any] else { return }
|
|
WatchDataSource.shared.processData(data: contextUnwrapped)
|
|
}
|
|
|
|
@objc private func updateUI() {
|
|
let wallets = WatchDataSource.shared.wallets
|
|
let isEmpty = wallets.isEmpty
|
|
noWalletsAvailableLabel.setHidden(!isEmpty)
|
|
walletsTable.setHidden(isEmpty)
|
|
|
|
if isEmpty { return }
|
|
|
|
walletsTable.setNumberOfRows(wallets.count, withRowType: WalletInformation.identifier)
|
|
for index in 0..<wallets.count {
|
|
updateRow(at: index, with: wallets[index])
|
|
}
|
|
}
|
|
|
|
private func updateRow(at index: Int, with wallet: Wallet) {
|
|
guard let controller = walletsTable.rowController(at: index) as? WalletInformation else { return }
|
|
controller.configure(with: wallet)
|
|
}
|
|
|
|
override func contextForSegue(withIdentifier segueIdentifier: String, in table: WKInterfaceTable, rowIndex: Int) -> Any? {
|
|
return rowIndex
|
|
}
|
|
|
|
func session(_ session: WCSession, didReceiveApplicationContext applicationContext: [String : Any]) {
|
|
WatchDataSource.shared.processData(data: applicationContext)
|
|
}
|
|
|
|
|
|
|
|
func session(_ session: WCSession, didReceiveUserInfo userInfo: [String : Any] = [:]) {
|
|
WatchDataSource.shared.processData(data: userInfo)
|
|
}
|
|
|
|
func session(_ session: WCSession, activationDidCompleteWith activationState: WCSessionActivationState, error: Error?) {
|
|
if activationState == .activated {
|
|
WatchDataSource.shared.loadKeychainData()
|
|
}
|
|
}
|
|
|
|
func session(_ session: WCSession, didReceiveMessage message: [String : Any]) {
|
|
WatchDataSource.shared.processData(data: message)
|
|
}
|
|
|
|
}
|