NCTrash.swift 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. //
  2. // NCTrash.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 02/10/2018.
  6. // Copyright © 2018 Marino Faggiana. All rights reserved.
  7. //
  8. import Foundation
  9. class NCTrash: UIViewController , UICollectionViewDataSource, UICollectionViewDelegate, UIGestureRecognizerDelegate, NCTrashListDelegate, NCTrashGridDelegate, NCTrashHeaderDelegate {
  10. @IBOutlet fileprivate weak var collectionView: UICollectionView!
  11. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  12. var path = ""
  13. var titleCurrentFolder = NSLocalizedString("_trash_view_", comment: "")
  14. var itemHeight: CGFloat = 60
  15. var datasource = [tableTrash]()
  16. var listLayout: ListLayout!
  17. var gridLayout: GridLayout!
  18. override func viewDidLoad() {
  19. super.viewDidLoad()
  20. collectionView.register(UINib.init(nibName: "NCTrashListCell", bundle: nil), forCellWithReuseIdentifier: "cell-list")
  21. collectionView.register(UINib.init(nibName: "NCTrashGridCell", bundle: nil), forCellWithReuseIdentifier: "cell-grid")
  22. listLayout = ListLayout(itemHeight: 60)
  23. collectionView.collectionViewLayout = listLayout
  24. }
  25. override func viewWillAppear(_ animated: Bool) {
  26. super.viewWillAppear(animated)
  27. self.navigationItem.title = titleCurrentFolder
  28. if path == "" {
  29. let userID = (appDelegate.activeUserID as NSString).addingPercentEncoding(withAllowedCharacters: NSCharacterSet.urlFragmentAllowed)
  30. path = k_dav + "/trashbin/" + userID! + "/trash/"
  31. }
  32. let ocNetworking = OCnetworking.init(delegate: self, metadataNet: nil, withUser: appDelegate.activeUser, withUserID: appDelegate.activeUserID, withPassword: appDelegate.activePassword, withUrl: appDelegate.activeUrl)
  33. ocNetworking?.listingTrash(appDelegate.activeUrl, path:path, account: appDelegate.activeAccount, success: { (item) in
  34. NCManageDatabase.sharedInstance.deleteTrash(filePath: self.path)
  35. self.datasource = NCManageDatabase.sharedInstance.addTrashs(item as! [tableTrash])!
  36. self.collectionView.reloadData()
  37. }, failure: { (message, errorCode) in
  38. print("error " + message!)
  39. })
  40. }
  41. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  42. super.viewWillTransition(to: size, with: coordinator)
  43. coordinator.animate(alongsideTransition: nil) { _ in
  44. self.collectionView.collectionViewLayout.invalidateLayout()
  45. }
  46. }
  47. // MARK: tap
  48. func tapRestoreItem(with fileID: String) {
  49. print("tap item restore")
  50. }
  51. func tapMoreItem(with fileID: String) {
  52. print("tap item more")
  53. }
  54. func tapSwitchHeader() {
  55. print("tap header switch")
  56. }
  57. func tapMoreHeader() {
  58. print("tap header more")
  59. }
  60. // MARK: collectionView methods
  61. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  62. let trashHeader = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "header", for: indexPath) as! NCTrashHeader
  63. trashHeader.delegate = self
  64. return trashHeader
  65. }
  66. func numberOfSections(in collectionView: UICollectionView) -> Int {
  67. return 1
  68. }
  69. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  70. return datasource.count
  71. }
  72. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  73. let tableTrash = datasource[indexPath.item]
  74. var image: UIImage?
  75. if tableTrash.iconName.count > 0 {
  76. image = UIImage.init(named: tableTrash.iconName)
  77. } else {
  78. image = UIImage.init(named: "file")
  79. }
  80. if collectionView.collectionViewLayout == listLayout {
  81. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell-list", for: indexPath) as! NCTrashListCell
  82. cell.delegate = self
  83. cell.fileID = tableTrash.fileID
  84. cell.labelTitle.text = tableTrash.trashbinFileName
  85. if tableTrash.directory {
  86. cell.imageItem.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  87. cell.labelInfo.text = CCUtility.dateDiff(tableTrash.date as Date)
  88. } else {
  89. cell.imageItem.image = image
  90. cell.labelInfo.text = CCUtility.dateDiff(tableTrash.date as Date) + " " + CCUtility.transformedSize(tableTrash.size)
  91. }
  92. return cell
  93. } else {
  94. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell-grid", for: indexPath) as! NCTrashListCell
  95. cell.delegate = self
  96. cell.fileID = tableTrash.fileID
  97. cell.labelTitle.text = tableTrash.trashbinFileName
  98. if tableTrash.directory {
  99. cell.imageItem.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  100. } else {
  101. cell.imageItem.image = image
  102. }
  103. return cell
  104. }
  105. }
  106. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  107. let tableTrash = datasource[indexPath.item]
  108. if tableTrash.directory {
  109. let ncTrash:NCTrash = UIStoryboard(name: "NCTrash", bundle: nil).instantiateInitialViewController() as! NCTrash
  110. ncTrash.path = tableTrash.filePath + tableTrash.fileName
  111. ncTrash.titleCurrentFolder = tableTrash.trashbinFileName
  112. self.navigationController?.pushViewController(ncTrash, animated: true)
  113. }
  114. }
  115. }
  116. class ListLayout: UICollectionViewFlowLayout {
  117. var itemHeight: CGFloat = 60
  118. var headerHeight: CGFloat = 30
  119. init(itemHeight: CGFloat) {
  120. super.init()
  121. minimumLineSpacing = 1
  122. minimumInteritemSpacing = 1
  123. self.itemHeight = itemHeight
  124. self.scrollDirection = .vertical
  125. self.headerReferenceSize = CGSize(width: 0, height: headerHeight)
  126. }
  127. required init?(coder aDecoder: NSCoder) {
  128. fatalError("init(coder:) has not been implemented")
  129. }
  130. override var itemSize: CGSize {
  131. get {
  132. if let collectionView = collectionView {
  133. let itemWidth: CGFloat = collectionView.frame.width
  134. return CGSize(width: itemWidth, height: self.itemHeight)
  135. }
  136. // Default fallback
  137. return CGSize(width: 100, height: 100)
  138. }
  139. set {
  140. super.itemSize = newValue
  141. }
  142. }
  143. }
  144. class GridLayout: UICollectionViewFlowLayout {
  145. var numberOfColumns: Int = 3
  146. var headerHeight: CGFloat = 30
  147. init(numberOfColumns: Int) {
  148. super.init()
  149. minimumLineSpacing = 1
  150. minimumInteritemSpacing = 1
  151. self.numberOfColumns = numberOfColumns
  152. self.scrollDirection = .vertical
  153. self.headerReferenceSize = CGSize(width: 0, height: headerHeight)
  154. }
  155. required init?(coder aDecoder: NSCoder) {
  156. fatalError("init(coder:) has not been implemented")
  157. }
  158. override var itemSize: CGSize {
  159. get {
  160. if let collectionView = collectionView {
  161. let itemWidth: CGFloat = (collectionView.frame.width/CGFloat(self.numberOfColumns)) - self.minimumInteritemSpacing
  162. let itemHeight: CGFloat = 100.0
  163. return CGSize(width: itemWidth, height: itemHeight)
  164. }
  165. // Default fallback
  166. return CGSize(width: 100, height: 100)
  167. }
  168. set {
  169. super.itemSize = newValue
  170. }
  171. }
  172. }