// // CCMore.swift // Nextcloud // // Created by Marino Faggiana on 03/04/17. // Copyright © 2017 TWS. All rights reserved. // // Author Marino Faggiana // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // import UIKit class CCMore: UIViewController, UITableViewDelegate, UITableViewDataSource { @IBOutlet weak var imageLogo: UIImageView! @IBOutlet weak var imageAvatar: UIImageView! @IBOutlet weak var labelUsername: UILabel! @IBOutlet weak var tableView: UITableView! @IBOutlet weak var labelQuota: UILabel! @IBOutlet weak var labelQuotaExternalSite: UILabel! @IBOutlet weak var progressQuota: UIProgressView! var functionMenu = [OCExternalSites]() var settingsMenu = [OCExternalSites]() var quotaMenu = [OCExternalSites]() let appDelegate = UIApplication.shared.delegate as! AppDelegate var menuExternalSite: [TableExternalSites]? var tableAccont : TableAccount? override func viewDidLoad() { super.viewDidLoad() tableView.delegate = self tableView.dataSource = self tableView.separatorColor = Constant.GlobalConstants.k_Color_Seperator imageLogo.image = UIImage.init(named: image_brandMenuMoreBackground) let tap = UITapGestureRecognizer(target: self, action: #selector(tapLabelQuotaExternalSite)) labelQuotaExternalSite.isUserInteractionEnabled = true labelQuotaExternalSite.addGestureRecognizer(tap) } override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) // Clear functionMenu.removeAll() settingsMenu.removeAll() quotaMenu.removeAll() labelQuotaExternalSite.text = "" // Internal var item = OCExternalSites.init() item.name = "_transfers_" item.icon = "moreTransfers" item.url = "segueTransfers" functionMenu.append(item) item = OCExternalSites.init() item.name = "_activity_" item.icon = "moreActivity" item.url = "segueActivity" functionMenu.append(item) item = OCExternalSites.init() item.name = "_local_storage_" item.icon = "moreLocalStorage" item.url = "segueLocalStorage" functionMenu.append(item) item = OCExternalSites.init() item.name = "_settings_" item.icon = "moreSettings" item.url = "segueSettings" settingsMenu.append(item) // External menuExternalSite = CCCoreData.getAllTableExternalSites(with: NSPredicate(format: "(account == '\(appDelegate.activeAccount!)')")) as? [TableExternalSites] if (menuExternalSite != nil) { for table in menuExternalSite! { item = OCExternalSites.init() item.name = table.name item.url = table.url item.icon = table.icon if (table.type == "link") { item.icon = "moreExternalSite" functionMenu.append(item) } if (table.type == "settings") { item.icon = "moreSettingsExternalSite" settingsMenu.append(item) } if (table.type == "quota") { quotaMenu.append(item) } } } // Display Name user & Quota tableAccont = CCCoreData.getActiveAccount() if (tableAccont != nil) { if let displayName = self.tableAccont!.displayName { if displayName.isEmpty { labelUsername.text = self.tableAccont!.user } else{ labelUsername.text = self.tableAccont!.displayName } } else{ labelUsername.text = self.tableAccont!.user } progressQuota.progress = Float((self.tableAccont?.quotaRelative)!) / 100 let quota : String = CCUtility.transformedSize(Double((self.tableAccont?.quotaTotal)!)) let quotaUsed : String = CCUtility.transformedSize(Double((self.tableAccont?.quotaUsed)!)) labelQuota.text = String.localizedStringWithFormat(NSLocalizedString("_quota_using_", comment: ""), quotaUsed, quota) } if (quotaMenu.count > 0) { let item = quotaMenu[0] labelQuotaExternalSite.text = item.name } // Avatar let avatar : UIImage? = UIImage.init(contentsOfFile: "\(appDelegate.directoryUser!)/avatar.png") if (avatar != nil) { imageAvatar.image = avatar } else { imageAvatar.image = UIImage.init(named: "moreAvatar") } // Title self.navigationItem.title = NSLocalizedString("_more_", comment: "") // Aspect CCAspect.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: false) CCAspect.aspectTabBar(self.tabBarController?.tabBar, hidden: false) // + appDelegate.plusButtonVisibile(true) self.navigationController?.setNavigationBarHidden(true, animated: animated) tableView.reloadData() } override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(animated) } override func viewWillDisappear(_ animated: Bool) { super.viewWillDisappear(animated) self.navigationController?.setNavigationBarHidden(false, animated: animated) } func numberOfSections(in tableView: UITableView) -> Int { return 2 } func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat { if (section == 0) { return 10 } else { return 30 } } func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { var cont = 0 // Menu Normal if (section == 0) { cont = functionMenu.count } // Menu Settings if (section == 1) { cont = settingsMenu.count } return cont } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore // change color selection and disclosure indicator let selectionColor : UIView = UIView.init() selectionColor.backgroundColor = Constant.GlobalConstants.k_Color_SelectBackgrond cell.selectedBackgroundView = selectionColor cell.accessoryType = UITableViewCellAccessoryType.disclosureIndicator // Menu Normal if (indexPath.section == 0) { let item = functionMenu[indexPath.row] cell.imageIcon?.image = UIImage.init(named: item.icon) cell.labelText?.text = NSLocalizedString(item.name, comment: "") cell.labelText.textColor = Constant.GlobalConstants.k_Color_MoreNormal } // Menu Settings if (indexPath.section == 1) { let item = settingsMenu[indexPath.row] cell.imageIcon?.image = UIImage.init(named: item.icon) cell.labelText?.text = NSLocalizedString(item.name, comment: "") cell.labelText.textColor = Constant.GlobalConstants.k_Color_MoreSettings } return cell } // method to run when table view cell is tapped func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { var item: OCExternalSites = OCExternalSites.init() // Menu Function if (indexPath.section == 0) { item = functionMenu[indexPath.row] } // Menu Settings if (indexPath.section == 1) { item = settingsMenu[indexPath.row] } if (item.url.contains("segue") && !item.url.contains("//")) { self.navigationController?.performSegue(withIdentifier: item.url, sender: self) } if (item.url.contains("//")) { if (self.splitViewController?.isCollapsed)! { let webVC = SwiftWebVC(urlString: item.url) self.navigationController?.pushViewController(webVC, animated: true) self.navigationController?.navigationBar.isHidden = false } else { let webVC = SwiftModalWebVC(urlString: item.url) self.present(webVC, animated: true, completion: nil) } } } func tapLabelQuotaExternalSite() { if (quotaMenu.count > 0) { let item = quotaMenu[0] if (self.splitViewController?.isCollapsed)! { let webVC = SwiftWebVC(urlString: item.url) self.navigationController?.pushViewController(webVC, animated: true) self.navigationController?.navigationBar.isHidden = false } else { let webVC = SwiftModalWebVC(urlString: item.url) self.present(webVC, animated: true, completion: nil) } } } } class CCCellMore: UITableViewCell { @IBOutlet weak var labelText: UILabel! @IBOutlet weak var imageIcon: UIImageView! }