blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.7 KiB
64 lines
1.7 KiB
//
|
|
// RedeemTokenCardViewModel.swift
|
|
// Alpha-Wallet
|
|
//
|
|
// Created by Oguzhan Gungor on 3/4/18.
|
|
// Copyright © 2018 Alpha-Wallet. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
struct RedeemTokenCardViewModel {
|
|
|
|
var token: TokenObject
|
|
var tokenHolders: [TokenHolder]
|
|
|
|
init(token: TokenObject) {
|
|
self.token = token
|
|
self.tokenHolders = TokenAdaptor(token: token).getTokenHolders()
|
|
}
|
|
|
|
func item(for indexPath: IndexPath) -> TokenHolder {
|
|
return tokenHolders[indexPath.row]
|
|
}
|
|
|
|
func numberOfItems(for section: Int) -> Int {
|
|
return tokenHolders.count
|
|
}
|
|
|
|
var title: String {
|
|
let tokenTypeName = XMLHandler(contract: token.address.eip55String).getTokenTypeName()
|
|
return R.string.localizable.aWalletTokenRedeemSelectTokensTitle(tokenTypeName)
|
|
}
|
|
|
|
var buttonTitleColor: UIColor {
|
|
return Colors.appWhite
|
|
}
|
|
|
|
var buttonBackgroundColor: UIColor {
|
|
return Colors.appHighlightGreen
|
|
}
|
|
|
|
var buttonFont: UIFont {
|
|
return Fonts.regular(size: 20)!
|
|
}
|
|
|
|
func toggleSelection(for indexPath: IndexPath) -> [IndexPath] {
|
|
let tokenHolder = item(for: indexPath)
|
|
var changed = [indexPath]
|
|
if tokenHolder.areDetailsVisible {
|
|
tokenHolder.areDetailsVisible = false
|
|
tokenHolder.isSelected = false
|
|
} else {
|
|
for (i, each) in tokenHolders.enumerated() where each.areDetailsVisible {
|
|
each.areDetailsVisible = false
|
|
each.isSelected = false
|
|
changed.append(.init(row: i, section: indexPath.section))
|
|
}
|
|
tokenHolder.areDetailsVisible = true
|
|
tokenHolder.isSelected = true
|
|
}
|
|
return changed
|
|
}
|
|
}
|
|
|