123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- //
- // NCCreateFormUploadConflict.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 29/03/2020.
- // Copyright © 2020 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // 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 <http://www.gnu.org/licenses/>.
- //
- import Foundation
- @objc class NCCreateFormUploadConflict: UIViewController {
- @IBOutlet weak var labelTitle: UILabel!
- @IBOutlet weak var labelSubTitle: UILabel!
- @IBOutlet weak var switchNewFiles: UISwitch!
- @IBOutlet weak var switchAlreadyExistingFiles: UISwitch!
- @IBOutlet weak var labelNewFiles: UILabel!
- @IBOutlet weak var labelAlreadyExistingFiles: UILabel!
- @IBOutlet weak var tableView: UITableView!
- @IBOutlet weak var buttonCancel: UIButton!
- @IBOutlet weak var buttonContinue: UIButton!
-
- private let appDelegate = UIApplication.shared.delegate as! AppDelegate
- @objc var metadatas: [tableMetadata]
- @objc var metadatasConflict: [tableMetadata]
- @objc required init?(coder aDecoder: NSCoder) {
- self.metadatas = [tableMetadata]()
- self.metadatasConflict = [tableMetadata]()
- super.init(coder: aDecoder)
- }
-
- override func viewDidLoad() {
- super.viewDidLoad()
-
- tableView.dataSource = self
- tableView.delegate = self
-
- tableView.register(UINib.init(nibName: "NCCreateFormUploadConflictCell", bundle: nil), forCellReuseIdentifier: "Cell")
-
- labelTitle.text = String(metadatasConflict.count) + " " + NSLocalizedString("_file_conflict_num_", comment: "")
- labelSubTitle.text = NSLocalizedString("_file_conflict_desc_", comment: "")
- labelNewFiles.text = NSLocalizedString("_file_conflict_new_", comment: "")
- labelAlreadyExistingFiles.text = NSLocalizedString("_file_conflict_exists_", comment: "")
-
- buttonCancel.layer.cornerRadius = 15
- buttonCancel.layer.masksToBounds = true
- buttonCancel.setTitle(NSLocalizedString("_cancel_", comment: ""), for: .normal)
-
- buttonContinue.layer.cornerRadius = 15
- buttonContinue.layer.masksToBounds = true
- buttonContinue.setTitle(NSLocalizedString("_continue_", comment: ""), for: .normal)
- buttonContinue.isEnabled = false
- }
- }
- // MARK: - UITableViewDelegate
- extension NCCreateFormUploadConflict: UITableViewDelegate {
-
- func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
- return 120
- }
- }
- // MARK: - UITableViewDataSource
- extension NCCreateFormUploadConflict: UITableViewDataSource {
-
- func numberOfSections(in tableView: UITableView) -> Int {
- return 1
- }
-
- func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
- return metadatasConflict.count
- }
-
- func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
-
- if let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as? NCCreateFormUploadConflictCell {
-
- let metadata = metadatasConflict[indexPath.row]
-
- if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, fileNameView: metadata.fileName)) {
- NCUtility.sharedInstance.loadImage(ocId: metadata.ocId, fileNameView: metadata.fileNameView) { (image) in
- cell.imageFile.image = image
- }
- } else {
- if metadata.iconName.count > 0 {
- cell.imageFile.image = UIImage.init(named: metadata.iconName)
- } else {
- cell.imageFile.image = UIImage.init(named: "file")
- }
- }
-
- cell.labelFileName.text = metadata.fileNameView
-
- return cell
- }
-
- return UITableViewCell()
- }
- }
|