123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- //
- // ScanCollectionView.swift
- // Nextcloud iOS
- //
- // Created by Marino Faggiana on 21/08/18.
- // Copyright (c) 2018 TWS. All rights reserved.
- //
- // Author Marino Faggiana <m.faggiana@twsweb.it>
- //
- // 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 UIKit
- @available(iOS 11, *)
- class DragDropViewController: UIViewController {
-
- //MARK: Private Properties
- //Data Source for collectionViewSource
- private var itemsSource = [String]()
-
- //Data Source for collectionViewDestination
- private var itemsDestination = [String]()
- //AppDelegate
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- //MARK: Outlets
- @IBOutlet weak var collectionViewSource: UICollectionView!
- @IBOutlet weak var collectionViewDestination: UICollectionView!
-
- @IBOutlet weak var cancel: UIBarButtonItem!
- @IBOutlet weak var save: UIBarButtonItem!
- @IBOutlet weak var add: UIButton!
- @IBOutlet weak var labelTitlePDFzone: UILabel!
-
- //MARK: View Lifecycle Methods
- override func viewDidLoad() {
- super.viewDidLoad()
-
- self.collectionViewSource.dragInteractionEnabled = true
- self.collectionViewSource.dragDelegate = self
- self.collectionViewSource.dropDelegate = self
-
- self.collectionViewDestination.dragInteractionEnabled = true
- self.collectionViewDestination.dropDelegate = self
- self.collectionViewDestination.dragDelegate = self
- self.collectionViewDestination.reorderingCadence = .fast //default value - .immediate
-
- self.navigationItem.title = NSLocalizedString("_scanned_images_", comment: "")
- cancel.title = NSLocalizedString("_cancel_", comment: "")
- save.title = NSLocalizedString("_save_", comment: "")
- labelTitlePDFzone.text = NSLocalizedString("_scan_label_PDF_zone_", comment: "")
-
- add.setImage(CCGraphics.changeThemingColorImage(UIImage(named: "add"), multiplier:2, color: NCBrandColor.sharedInstance.brand), for: .normal)
- }
-
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
-
- appDelegate.aspectNavigationControllerBar(self.navigationController?.navigationBar, online: appDelegate.reachability.isReachable(), hidden: false)
-
- labelTitlePDFzone.textColor = NCBrandColor.sharedInstance.brandText
- labelTitlePDFzone.backgroundColor = NCBrandColor.sharedInstance.brand
-
- loadImage(atPath: CCUtility.getDirectoryScan(), items: &itemsSource)
-
- self.collectionViewSource.reloadData()
- }
-
- //MARK: Button Action
- @IBAction func cancelAction(sender: UIBarButtonItem) {
- self.dismiss(animated: true, completion: nil)
- }
-
- @IBAction func saveAction(sender: UIBarButtonItem) {
-
- if itemsDestination.count > 0 {
- let formViewController = CreateFormUploadScanDocument.init(serverUrl: appDelegate.activeMain.serverUrl, arrayFileName: self.itemsDestination)
- self.navigationController?.pushViewController(formViewController, animated: true)
- }
- }
-
- @IBAction func add(sender: UIButton) {
-
- NCCreateScanDocument.sharedInstance.openScannerDocument(viewController: self, openScan: false)
- }
-
- //MARK: Private Methods
-
- private func loadImage(atPath: String, items: inout [String]) {
-
- items.removeAll()
- do {
- let directoryContents = try FileManager.default.contentsOfDirectory(atPath: atPath)
- for fileName in directoryContents {
- if fileName != "Select" && fileName.first != "." {
- items.append(fileName)
- }
- }
- } catch {
- print(error.localizedDescription)
- }
- }
-
- func filter(image: UIImage) -> UIImage? {
-
- let ciImage = CIImage(image: image)!
- let imageFilter = ciImage.applyingFilter("CIColorControls", parameters: ["inputSaturation": 0, "inputContrast": 1])
-
- let context:CIContext = CIContext.init(options: nil)
- let cgImage:CGImage = context.createCGImage(imageFilter, from: imageFilter.extent)!
- let image:UIImage = UIImage.init(cgImage: cgImage)
- return image
- }
-
- /// This method moves a cell from source indexPath to destination indexPath within the same collection view. It works for only 1 item. If multiple items selected, no reordering happens.
- ///
- /// - Parameters:
- /// - coordinator: coordinator obtained from performDropWith: UICollectionViewDropDelegate method
- /// - destinationIndexPath: indexpath of the collection view where the user drops the element
- /// - collectionView: collectionView in which reordering needs to be done.
- private func reorderItems(coordinator: UICollectionViewDropCoordinator, destinationIndexPath: IndexPath, collectionView: UICollectionView) {
-
- let items = coordinator.items
-
- if items.count == 1, let item = items.first, let sourceIndexPath = item.sourceIndexPath {
-
- var dIndexPath = destinationIndexPath
-
- if dIndexPath.row >= collectionView.numberOfItems(inSection: 0) {
- dIndexPath.row = collectionView.numberOfItems(inSection: 0) - 1
- }
-
- collectionView.performBatchUpdates({
-
- if collectionView === self.collectionViewDestination {
-
- self.itemsDestination.remove(at: sourceIndexPath.row)
- self.itemsDestination.insert(item.dragItem.localObject as! String, at: dIndexPath.row)
-
- } else {
-
- self.itemsSource.remove(at: sourceIndexPath.row)
- self.itemsSource.insert(item.dragItem.localObject as! String, at: dIndexPath.row)
- }
-
- collectionView.deleteItems(at: [sourceIndexPath])
- collectionView.insertItems(at: [dIndexPath])
- })
-
- coordinator.drop(items.first!.dragItem, toItemAt: dIndexPath)
- }
- }
-
- /// This method copies a cell from source indexPath in 1st collection view to destination indexPath in 2nd collection view. It works for multiple items.
- ///
- /// - Parameters:
- /// - coordinator: coordinator obtained from performDropWith: UICollectionViewDropDelegate method
- /// - destinationIndexPath: indexpath of the collection view where the user drops the element
- /// - collectionView: collectionView in which reordering needs to be done.
- private func copyItems(coordinator: UICollectionViewDropCoordinator, destinationIndexPath: IndexPath, collectionView: UICollectionView)
- {
- collectionView.performBatchUpdates({
-
- var indexPaths = [IndexPath]()
-
- for (index, item) in coordinator.items.enumerated() {
-
- let indexPath = IndexPath(row: destinationIndexPath.row + index, section: destinationIndexPath.section)
-
- if collectionView === self.collectionViewDestination {
-
- let fileName = item.dragItem.localObject as! String
- let fileNamePathAt = CCUtility.getDirectoryScan() + "/" + fileName
- let fileNamePathTo = CCUtility.getDirectoryScanSelect() + "/" + fileName
-
- guard let data = try? Data(contentsOf: fileNamePathAt.url) else {
- return
- }
- guard let image = UIImage(data: data) else {
- return
- }
- guard let imageFilter = self.filter(image: image) else {
- return
- }
-
- let imageData = UIImageJPEGRepresentation(imageFilter, 0.5)!
-
- do {
- try imageData.write(to: fileNamePathTo.url)
- } catch {
- return
- }
-
- self.itemsDestination.insert(item.dragItem.localObject as! String, at: indexPath.row)
-
- } else {
-
- self.itemsSource.insert(item.dragItem.localObject as! String, at: indexPath.row)
- }
-
- indexPaths.append(indexPath)
- }
-
- collectionView.insertItems(at: indexPaths)
- })
- }
- }
- // MARK: - UICollectionViewDataSource Methods
- @available(iOS 11, *)
- extension DragDropViewController : UICollectionViewDataSource {
-
- func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
-
- return collectionView == self.collectionViewSource ? self.itemsSource.count : self.itemsDestination.count
- }
-
- func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
-
- if collectionView == self.collectionViewSource {
-
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell1", for: indexPath) as! ScanCell
-
- let fileNamePath = CCUtility.getDirectoryScan() + "/" + self.itemsSource[indexPath.row]
-
- guard let data = try? Data(contentsOf: fileNamePath.url) else {
- return cell
- }
-
- cell.customImageView?.image = UIImage(data: data)
- // cell.delete.setImage(CCGraphics.changeThemingColorImage(UIImage(named: "no_red"), multiplier:2, color: NCBrandColor.sharedInstance.icon).withRenderingMode(.alwaysOriginal), for: .normal)
- cell.delete.addTarget(self, action: #selector(deleteSource(_:)), for: .touchUpInside)
- return cell
-
- } else {
-
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell2", for: indexPath) as! ScanCell
-
- let fileNamePath = CCUtility.getDirectoryScan() + "/" + self.itemsDestination[indexPath.row]
-
- guard let data = try? Data(contentsOf: fileNamePath.url) else {
- return cell
- }
-
- guard let image = UIImage(data: data) else {
- return cell
- }
-
- cell.customImageView?.image = self.filter(image: image)
- cell.customLabel.text = NSLocalizedString("_scan_document_pdf_page_", comment: "") + " " + "\(indexPath.row+1)"
- // cell.delete.setImage(CCGraphics.changeThemingColorImage(UIImage(named: "no_red"), multiplier:2, color: NCBrandColor.sharedInstance.icon).withRenderingMode(.alwaysOriginal), for: .normal)
- cell.delete.addTarget(self, action: #selector(deleteDestination(_:)), for: .touchUpInside)
-
- return cell
- }
- }
-
- @objc func deleteSource(_ sender: UIButton) {
-
- let buttonPosition:CGPoint = sender.convert(.zero, to: self.collectionViewSource)
- let indexPath:IndexPath = self.collectionViewSource.indexPathForItem(at: buttonPosition)!
-
- let fileNameAtPath = CCUtility.getDirectoryScan() + "/" + self.itemsSource[indexPath.row]
- CCUtility.removeFile(atPath: fileNameAtPath)
- self.itemsSource.remove(at: indexPath.row)
-
- self.collectionViewSource.reloadData()
- }
-
- @objc func deleteDestination(_ sender:UIButton) {
-
- let buttonPosition:CGPoint = sender.convert(.zero, to: self.collectionViewDestination)
- let indexPath:IndexPath = self.collectionViewDestination.indexPathForItem(at: buttonPosition)!
-
- // Remove file only if exist 1 item
- var cont = 0
- for item in itemsDestination {
- if item == self.itemsDestination[indexPath.row] {
- cont += 1
- }
- }
-
- if cont == 1 {
- let fileNameAtPath = CCUtility.getDirectoryScanSelect() + "/" + self.itemsDestination[indexPath.row]
- CCUtility.removeFile(atPath: fileNameAtPath)
- }
- self.itemsDestination.remove(at: indexPath.row)
-
- self.collectionViewDestination.reloadData()
- }
- }
- // MARK: - UICollectionViewDragDelegate Methods
- @available(iOS 11, *)
- extension DragDropViewController : UICollectionViewDragDelegate
- {
- func collectionView(_ collectionView: UICollectionView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] {
-
- let item = collectionView == collectionViewSource ? self.itemsSource[indexPath.row] : self.itemsDestination[indexPath.row]
- let itemProvider = NSItemProvider(object: item as NSString)
- let dragItem = UIDragItem(itemProvider: itemProvider)
-
- dragItem.localObject = item
-
- return [dragItem]
- }
-
- func collectionView(_ collectionView: UICollectionView, itemsForAddingTo session: UIDragSession, at indexPath: IndexPath, point: CGPoint) -> [UIDragItem] {
-
- let item = collectionView == collectionViewSource ? self.itemsSource[indexPath.row] : self.itemsDestination[indexPath.row]
- let itemProvider = NSItemProvider(object: item as NSString)
- let dragItem = UIDragItem(itemProvider: itemProvider)
-
- dragItem.localObject = item
-
- return [dragItem]
- }
-
- func collectionView(_ collectionView: UICollectionView, dragPreviewParametersForItemAt indexPath: IndexPath) -> UIDragPreviewParameters? {
-
- let previewParameters = UIDragPreviewParameters()
- if collectionView == self.collectionViewSource {
- previewParameters.visiblePath = UIBezierPath(rect: CGRect(x: 20, y: 20, width: 100, height: 100))
- } else {
- previewParameters.visiblePath = UIBezierPath(rect: CGRect(x: 20, y: 20, width: 80, height: 80))
- }
-
- return previewParameters
- }
- }
- // MARK: - UICollectionViewDropDelegate Methods
- @available(iOS 11, *)
- extension DragDropViewController : UICollectionViewDropDelegate {
-
- func collectionView(_ collectionView: UICollectionView, canHandle session: UIDropSession) -> Bool {
-
- return session.canLoadObjects(ofClass: NSString.self)
- }
-
- func collectionView(_ collectionView: UICollectionView, dropSessionDidUpdate session: UIDropSession, withDestinationIndexPath destinationIndexPath: IndexPath?) -> UICollectionViewDropProposal {
-
- if collectionView == self.collectionViewSource {
-
- if collectionView.hasActiveDrag {
- return UICollectionViewDropProposal(operation: .move, intent: .insertAtDestinationIndexPath)
- } else {
- return UICollectionViewDropProposal(operation: .forbidden)
- }
-
- } else {
-
- if collectionView.hasActiveDrag {
- return UICollectionViewDropProposal(operation: .move, intent: .insertAtDestinationIndexPath)
- } else {
- return UICollectionViewDropProposal(operation: .copy, intent: .insertAtDestinationIndexPath)
- }
- }
- }
-
- func collectionView(_ collectionView: UICollectionView, performDropWith coordinator: UICollectionViewDropCoordinator) {
-
- let destinationIndexPath: IndexPath
-
- if let indexPath = coordinator.destinationIndexPath {
-
- destinationIndexPath = indexPath
-
- } else {
-
- // Get last index path of table view.
- let section = collectionView.numberOfSections - 1
- let row = collectionView.numberOfItems(inSection: section)
-
- destinationIndexPath = IndexPath(row: row, section: section)
- }
-
- switch coordinator.proposal.operation {
-
- case .move:
- self.reorderItems(coordinator: coordinator, destinationIndexPath: destinationIndexPath, collectionView: collectionView)
- break
-
- case .copy:
- self.copyItems(coordinator: coordinator, destinationIndexPath: destinationIndexPath, collectionView: collectionView)
- break
-
- default:
- return
- }
- }
-
- func collectionView(_ collectionView: UICollectionView, dropSessionDidEnd session: UIDropSession) {
- self.collectionViewDestination.reloadData()
- }
- }
|