NCCollectionCommon.swift 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061
  1. //
  2. // NCCollectionCommon.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 08/09/2020.
  6. // Copyright © 2020 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. import TLPhotoPicker
  25. import ZIPFoundation
  26. import NCCommunication
  27. class NCCollectionCommon: NSObject {
  28. @objc static let shared: NCCollectionCommon = {
  29. let instance = NCCollectionCommon()
  30. instance.createImagesThemingColor()
  31. return instance
  32. }()
  33. struct NCCollectionCommonImages {
  34. static var cellSharedImage = UIImage()
  35. static var cellCanShareImage = UIImage()
  36. static var cellShareByLinkImage = UIImage()
  37. static var cellFavouriteImage = UIImage()
  38. static var cellMoreImage = UIImage()
  39. static var cellCommentImage = UIImage()
  40. static var cellLivePhotoImage = UIImage()
  41. static var cellFolderEncryptedImage = UIImage()
  42. static var cellFolderSharedWithMeImage = UIImage()
  43. static var cellFolderPublicImage = UIImage()
  44. static var cellFolderGroupImage = UIImage()
  45. static var cellFolderExternalImage = UIImage()
  46. static var cellFolderAutomaticUploadImage = UIImage()
  47. static var cellFolderImage = UIImage()
  48. static var cellPlayImage = UIImage()
  49. }
  50. @objc func createImagesThemingColor() {
  51. NCCollectionCommonImages.cellSharedImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), width: 100, height: 100, color: NCBrandColor.sharedInstance.textView)
  52. NCCollectionCommonImages.cellCanShareImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), width: 100, height: 100, color: NCBrandColor.sharedInstance.optionItem)
  53. NCCollectionCommonImages.cellShareByLinkImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "sharebylink"), width: 100, height: 100, color: NCBrandColor.sharedInstance.optionItem)
  54. NCCollectionCommonImages.cellFavouriteImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "favorite"), width: 100, height: 100, color: NCBrandColor.sharedInstance.yellowFavorite)
  55. NCCollectionCommonImages.cellMoreImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "more"), width: 50, height: 50, color: NCBrandColor.sharedInstance.optionItem)
  56. NCCollectionCommonImages.cellCommentImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "comment"), width: 30, height: 30, color: NCBrandColor.sharedInstance.graySoft)
  57. NCCollectionCommonImages.cellLivePhotoImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "livePhoto"), width: 100, height: 100, color: NCBrandColor.sharedInstance.textView)
  58. NCCollectionCommonImages.cellFolderEncryptedImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folderEncrypted"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  59. NCCollectionCommonImages.cellFolderSharedWithMeImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_shared_with_me"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  60. NCCollectionCommonImages.cellFolderPublicImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_public"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  61. NCCollectionCommonImages.cellFolderGroupImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_group"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  62. NCCollectionCommonImages.cellFolderExternalImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_external"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  63. NCCollectionCommonImages.cellFolderAutomaticUploadImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folderAutomaticUpload"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  64. NCCollectionCommonImages.cellFolderImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  65. NCCollectionCommonImages.cellPlayImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "play"), width: 100, height: 100, color: .white)
  66. }
  67. // MARK -
  68. func cellForItemAt(indexPath: IndexPath, collectionView: UICollectionView, cell: UICollectionViewCell, metadata: tableMetadata, metadataFolder: tableMetadata?, serverUrl: String, isEditMode: Bool, selectocId: [String], autoUploadFileName: String, autoUploadDirectory: String, hideButtonMore: Bool, downloadThumbnail: Bool, shares: [tableShare]?, source: UIViewController) {
  69. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  70. var tableShare: tableShare?
  71. // Share
  72. if shares != nil {
  73. for share in shares! {
  74. if share.fileName == metadata.fileName {
  75. tableShare = share
  76. break
  77. }
  78. }
  79. }
  80. // Download preview
  81. if downloadThumbnail {
  82. NCOperationQueue.shared.downloadThumbnail(metadata: metadata, urlBase: appDelegate.urlBase, view: collectionView, indexPath: indexPath)
  83. }
  84. var isShare = false
  85. var isMounted = false
  86. if metadataFolder != nil {
  87. isShare = metadata.permissions.contains(k_permission_shared) && !metadataFolder!.permissions.contains(k_permission_shared)
  88. isMounted = metadata.permissions.contains(k_permission_mounted) && !metadataFolder!.permissions.contains(k_permission_mounted)
  89. }
  90. if cell is NCListCell {
  91. let cell = cell as! NCListCell
  92. cell.delegate = source as? NCListCellDelegate
  93. cell.objectId = metadata.ocId
  94. cell.indexPath = indexPath
  95. cell.labelTitle.text = metadata.fileNameView
  96. cell.labelTitle.textColor = NCBrandColor.sharedInstance.textView
  97. cell.imageStatus.image = nil
  98. cell.imageLocal.image = nil
  99. cell.imageFavorite.image = nil
  100. cell.imageShared.image = nil
  101. if metadata.directory {
  102. if metadata.e2eEncrypted {
  103. cell.imageItem.image = NCCollectionCommonImages.cellFolderEncryptedImage
  104. } else if isShare {
  105. cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
  106. } else if (tableShare != nil && tableShare!.shareType != 3) {
  107. cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
  108. } else if (tableShare != nil && tableShare!.shareType == 3) {
  109. cell.imageItem.image = NCCollectionCommonImages.cellFolderPublicImage
  110. } else if metadata.mountType == "group" {
  111. cell.imageItem.image = NCCollectionCommonImages.cellFolderGroupImage
  112. } else if isMounted {
  113. cell.imageItem.image = NCCollectionCommonImages.cellFolderExternalImage
  114. } else if metadata.fileName == autoUploadFileName && serverUrl == autoUploadDirectory {
  115. cell.imageItem.image = NCCollectionCommonImages.cellFolderAutomaticUploadImage
  116. } else {
  117. cell.imageItem.image = NCCollectionCommonImages.cellFolderImage
  118. }
  119. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date)
  120. let lockServerUrl = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)!
  121. let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, lockServerUrl))
  122. // Local image: offline
  123. if tableDirectory != nil && tableDirectory!.offline {
  124. cell.imageLocal.image = UIImage.init(named: "offlineFlag")
  125. }
  126. } else {
  127. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  128. cell.imageItem.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  129. } else if(!metadata.hasPreview) {
  130. if metadata.iconName.count > 0 {
  131. cell.imageItem.image = UIImage.init(named: metadata.iconName)
  132. } else {
  133. cell.imageItem.image = UIImage.init(named: "file")
  134. }
  135. }
  136. if cell.imageItem.image == nil {
  137. cell.imageItem.backgroundColor = .lightGray
  138. } else {
  139. cell.imageItem.backgroundColor = nil
  140. }
  141. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date) + " · " + CCUtility.transformedSize(metadata.size)
  142. // image local
  143. let size = CCUtility.fileProviderStorageSize(metadata.ocId, fileNameView: metadata.fileNameView)
  144. if size > 0 {
  145. let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
  146. if tableLocalFile == nil && size == metadata.size {
  147. NCManageDatabase.sharedInstance.addLocalFile(metadata: metadata)
  148. }
  149. if tableLocalFile?.offline ?? false {
  150. cell.imageLocal.image = UIImage.init(named: "offlineFlag")
  151. } else{
  152. cell.imageLocal.image = UIImage.init(named: "local")
  153. }
  154. }
  155. }
  156. // image Favorite
  157. if metadata.favorite {
  158. cell.imageFavorite.image = NCCollectionCommonImages.cellFavouriteImage
  159. }
  160. // Share image
  161. if (isShare) {
  162. cell.imageShared.image = NCCollectionCommonImages.cellSharedImage
  163. } else if (tableShare != nil && tableShare!.shareType == 3) {
  164. cell.imageShared.image = NCCollectionCommonImages.cellShareByLinkImage
  165. } else if (tableShare != nil && tableShare!.shareType != 3) {
  166. cell.imageShared.image = NCCollectionCommonImages.cellSharedImage
  167. } else {
  168. cell.imageShared.image = NCCollectionCommonImages.cellCanShareImage
  169. }
  170. if metadata.ownerId.count > 0 && metadata.ownerId != appDelegate.userID {
  171. // Load avatar
  172. let fileNameSource = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.user, urlBase: appDelegate.urlBase) + "-" + metadata.ownerId + ".png"
  173. let fileNameSourceAvatar = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.user, urlBase: appDelegate.urlBase) + "-avatar-" + metadata.ownerId + ".png"
  174. if FileManager.default.fileExists(atPath: fileNameSourceAvatar) {
  175. cell.imageShared.image = UIImage(contentsOfFile: fileNameSourceAvatar)
  176. } else if FileManager.default.fileExists(atPath: fileNameSource) {
  177. cell.imageShared.image = NCUtility.shared.createAvatar(fileNameSource: fileNameSource, fileNameSourceAvatar: fileNameSourceAvatar)
  178. } else {
  179. NCCommunication.shared.downloadAvatar(userID: metadata.ownerId, fileNameLocalPath: fileNameSource, size: Int(k_avatar_size)) { (account, data, errorCode, errorMessage) in
  180. if errorCode == 0 && account == appDelegate.account {
  181. cell.imageShared.image = NCUtility.shared.createAvatar(fileNameSource: fileNameSource, fileNameSourceAvatar: fileNameSourceAvatar)
  182. }
  183. }
  184. }
  185. }
  186. if isEditMode {
  187. cell.imageItemLeftConstraint.constant = 45
  188. cell.imageSelect.isHidden = false
  189. if selectocId.contains(metadata.ocId) {
  190. cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedYes"), to: CGSize(width: 50, height: 50), isAspectRation: true)
  191. cell.backgroundView = NCUtility.shared.cellBlurEffect(with: cell.bounds)
  192. } else {
  193. cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedNo"), to: CGSize(width: 50, height: 50), isAspectRation: true)
  194. cell.backgroundView = nil
  195. }
  196. } else {
  197. cell.imageItemLeftConstraint.constant = 10
  198. cell.imageSelect.isHidden = true
  199. cell.backgroundView = nil
  200. }
  201. // Transfer
  202. if metadata.status == k_metadataStatusInDownload || metadata.status == k_metadataStatusDownloading || metadata.status >= k_metadataStatusTypeUpload {
  203. cell.progressView.isHidden = false
  204. cell.setButtonMore(named: "stop")
  205. } else {
  206. cell.progressView.isHidden = true
  207. cell.progressView.progress = 0.0
  208. cell.setButtonMore(named: "more")
  209. }
  210. // Remove last separator
  211. if collectionView.numberOfItems(inSection: indexPath.section) == indexPath.row + 1 {
  212. cell.separator.isHidden = true
  213. } else {
  214. cell.separator.isHidden = false
  215. }
  216. } else if cell is NCGridCell {
  217. let cell = cell as! NCGridCell
  218. cell.delegate = source as? NCGridCellDelegate
  219. cell.objectId = metadata.ocId
  220. cell.indexPath = indexPath
  221. cell.labelTitle.text = metadata.fileNameView
  222. cell.labelTitle.textColor = NCBrandColor.sharedInstance.textView
  223. cell.imageStatus.image = nil
  224. cell.imageLocal.image = nil
  225. cell.imageFavorite.image = nil
  226. if metadata.directory {
  227. if metadata.e2eEncrypted {
  228. cell.imageItem.image = NCCollectionCommonImages.cellFolderEncryptedImage
  229. } else if isShare {
  230. cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
  231. } else if (tableShare != nil && tableShare!.shareType != 3) {
  232. cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
  233. } else if (tableShare != nil && tableShare!.shareType == 3) {
  234. cell.imageItem.image = NCCollectionCommonImages.cellFolderPublicImage
  235. } else if metadata.mountType == "group" {
  236. cell.imageItem.image = NCCollectionCommonImages.cellFolderGroupImage
  237. } else if isMounted {
  238. cell.imageItem.image = NCCollectionCommonImages.cellFolderExternalImage
  239. } else if metadata.fileName == autoUploadFileName && serverUrl == autoUploadDirectory {
  240. cell.imageItem.image = NCCollectionCommonImages.cellFolderAutomaticUploadImage
  241. } else {
  242. cell.imageItem.image = NCCollectionCommonImages.cellFolderImage
  243. }
  244. let lockServerUrl = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)!
  245. let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, lockServerUrl))
  246. // Local image: offline
  247. if tableDirectory != nil && tableDirectory!.offline {
  248. cell.imageLocal.image = UIImage.init(named: "offlineFlag")
  249. }
  250. } else {
  251. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  252. cell.imageItem.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  253. } else if(!metadata.hasPreview) {
  254. if metadata.iconName.count > 0 {
  255. cell.imageItem.image = UIImage.init(named: metadata.iconName)
  256. } else {
  257. cell.imageItem.image = UIImage.init(named: "file")
  258. }
  259. }
  260. if cell.imageItem.image == nil {
  261. cell.imageItem.backgroundColor = .lightGray
  262. } else {
  263. cell.imageItem.backgroundColor = nil
  264. }
  265. // image Local
  266. let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
  267. if tableLocalFile != nil && CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  268. if tableLocalFile!.offline { cell.imageLocal.image = UIImage.init(named: "offlineFlag") }
  269. else { cell.imageLocal.image = UIImage.init(named: "local") }
  270. }
  271. }
  272. // image Favorite
  273. if metadata.favorite {
  274. cell.imageFavorite.image = NCCollectionCommonImages.cellFavouriteImage
  275. }
  276. if isEditMode {
  277. cell.imageSelect.isHidden = false
  278. if selectocId.contains(metadata.ocId) {
  279. cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedYes"), to: CGSize(width: 50, height: 50), isAspectRation: true)
  280. cell.backgroundView = NCUtility.shared.cellBlurEffect(with: cell.bounds)
  281. } else {
  282. cell.imageSelect.isHidden = true
  283. cell.backgroundView = nil
  284. }
  285. } else {
  286. cell.imageSelect.isHidden = true
  287. cell.backgroundView = nil
  288. }
  289. // Transfer
  290. if metadata.status == k_metadataStatusInDownload || metadata.status == k_metadataStatusDownloading || metadata.status >= k_metadataStatusTypeUpload {
  291. cell.progressView.isHidden = false
  292. cell.setButtonMore(named: "stop")
  293. } else {
  294. cell.progressView.isHidden = true
  295. cell.progressView.progress = 0.0
  296. cell.setButtonMore(named: "more")
  297. }
  298. }
  299. }
  300. // MARK -
  301. func notificationDeleteFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, errorCode: Int, errorDescription: String ,onlyLocal: Bool) {
  302. if errorCode == 0 {
  303. if onlyLocal {
  304. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  305. let indexPath = IndexPath(row: row, section: 0)
  306. collectionView?.reloadItems(at: [indexPath])
  307. }
  308. } else {
  309. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  310. let indexPath = IndexPath(row: row, section: 0)
  311. collectionView?.performBatchUpdates({
  312. collectionView?.deleteItems(at: [indexPath])
  313. }, completion: { (_) in
  314. collectionView?.reloadData()
  315. })
  316. }
  317. }
  318. } else {
  319. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  320. }
  321. }
  322. func notificationDownloadStartFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  323. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  324. let indexPath = IndexPath(row: row, section: 0)
  325. collectionView?.reloadItems(at: [indexPath])
  326. }
  327. }
  328. func notificationDownloadedFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  329. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  330. let indexPath = IndexPath(row: row, section: 0)
  331. collectionView?.reloadItems(at: [indexPath])
  332. }
  333. }
  334. func notificationDownloadCancelFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  335. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  336. let indexPath = IndexPath(row: row, section: 0)
  337. collectionView?.reloadItems(at: [indexPath])
  338. }
  339. }
  340. func notificationUploadStartFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, serverUrl: String, account: String) {
  341. if metadata.serverUrl == serverUrl && metadata.account == account {
  342. dataSource?.addMetadata(metadata)
  343. collectionView?.reloadData()
  344. }
  345. }
  346. func notificationUploadedFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, ocIdTemp: String, serverUrl: String, account: String) {
  347. if metadata.serverUrl == serverUrl && metadata.account == account {
  348. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId, ocIdTemp: ocIdTemp) {
  349. let indexPath = IndexPath(row: row, section: 0)
  350. collectionView?.reloadItems(at: [indexPath])
  351. }
  352. }
  353. }
  354. func notificationUploadCancelFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, serverUrl: String, account: String) {
  355. if metadata.serverUrl == serverUrl && metadata.account == account {
  356. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  357. let indexPath = IndexPath(row: row, section: 0)
  358. collectionView?.performBatchUpdates({
  359. collectionView?.deleteItems(at: [indexPath])
  360. }, completion: { (_) in
  361. collectionView?.reloadData()
  362. })
  363. }
  364. }
  365. }
  366. func notificationTriggerProgressTask(collectionView: UICollectionView?, dataSource: NCDataSource?, ocId: String, progress: Float) {
  367. if let index = dataSource?.getIndexMetadata(ocId: ocId) {
  368. if let cell = collectionView?.cellForItem(at: IndexPath(row: index, section: 0)) {
  369. if cell is NCListCell {
  370. let cell = cell as! NCListCell
  371. if progress > 0 {
  372. cell.progressView?.isHidden = false
  373. cell.progressView?.progress = progress
  374. cell.setButtonMore(named: "stop")
  375. }
  376. } else if cell is NCGridCell {
  377. let cell = cell as! NCGridCell
  378. if progress > 0 {
  379. cell.progressView.isHidden = false
  380. cell.progressView.progress = progress
  381. cell.setButtonMore(named: "stop")
  382. }
  383. }
  384. }
  385. }
  386. }
  387. }
  388. // MARK: - List Layout
  389. class NCListLayout: UICollectionViewFlowLayout {
  390. let itemHeight: CGFloat = 60
  391. override init() {
  392. super.init()
  393. sectionHeadersPinToVisibleBounds = false
  394. minimumInteritemSpacing = 0
  395. minimumLineSpacing = 1
  396. self.scrollDirection = .vertical
  397. self.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
  398. }
  399. required init?(coder aDecoder: NSCoder) {
  400. fatalError("init(coder:) has not been implemented")
  401. }
  402. override var itemSize: CGSize {
  403. get {
  404. if let collectionView = collectionView {
  405. let itemWidth: CGFloat = collectionView.frame.width
  406. return CGSize(width: itemWidth, height: self.itemHeight)
  407. }
  408. // Default fallback
  409. return CGSize(width: 100, height: 100)
  410. }
  411. set {
  412. super.itemSize = newValue
  413. }
  414. }
  415. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  416. return proposedContentOffset
  417. }
  418. }
  419. // MARK: - Grid Layout
  420. class NCGridLayout: UICollectionViewFlowLayout {
  421. var heightLabelPlusButton: CGFloat = 45
  422. var marginLeftRight: CGFloat = 6
  423. var itemForLine: CGFloat = 3
  424. override init() {
  425. super.init()
  426. sectionHeadersPinToVisibleBounds = false
  427. minimumInteritemSpacing = 1
  428. minimumLineSpacing = marginLeftRight
  429. self.scrollDirection = .vertical
  430. self.sectionInset = UIEdgeInsets(top: 10, left: marginLeftRight, bottom: 0, right: marginLeftRight)
  431. }
  432. required init?(coder aDecoder: NSCoder) {
  433. fatalError("init(coder:) has not been implemented")
  434. }
  435. override var itemSize: CGSize {
  436. get {
  437. if let collectionView = collectionView {
  438. let itemWidth: CGFloat = (collectionView.frame.width - marginLeftRight * 2 - marginLeftRight * (itemForLine - 1)) / itemForLine
  439. let itemHeight: CGFloat = itemWidth + heightLabelPlusButton
  440. return CGSize(width: itemWidth, height: itemHeight)
  441. }
  442. // Default fallback
  443. return CGSize(width: 100, height: 100)
  444. }
  445. set {
  446. super.itemSize = newValue
  447. }
  448. }
  449. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  450. return proposedContentOffset
  451. }
  452. }
  453. // MARK: - NCSelect
  454. extension NCCollectionCommon: NCSelectDelegate {
  455. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, array: [Any], buttonType: String, overwrite: Bool) {
  456. if (serverUrl != nil && array.count > 0) {
  457. var move = true
  458. if buttonType == "done1" { move = false }
  459. for metadata in array as! [tableMetadata] {
  460. NCOperationQueue.shared.copyMove(metadata: metadata, serverUrl: serverUrl!, overwrite: overwrite, move: move)
  461. }
  462. }
  463. }
  464. func openSelectView(viewController: UIViewController, array: [Any]) {
  465. let navigationController = UIStoryboard.init(name: "NCSelect", bundle: nil).instantiateInitialViewController() as! UINavigationController
  466. let vc = navigationController.topViewController as! NCSelect
  467. vc.delegate = self
  468. vc.hideButtonCreateFolder = false
  469. vc.selectFile = false
  470. vc.includeDirectoryE2EEncryption = false
  471. vc.includeImages = false
  472. vc.type = ""
  473. vc.titleButtonDone = NSLocalizedString("_move_", comment: "")
  474. vc.titleButtonDone1 = NSLocalizedString("_copy_",comment: "")
  475. vc.isButtonDone1Hide = false
  476. vc.isOverwriteHide = false
  477. vc.keyLayout = k_layout_view_move
  478. vc.array = array
  479. navigationController.modalPresentationStyle = .fullScreen
  480. viewController.present(navigationController, animated: true, completion: nil)
  481. }
  482. }
  483. // MARK: - Nextcloud CollectionView Common
  484. class NCCollectionViewCommon: UIViewController, UIGestureRecognizerDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  485. @IBOutlet weak var collectionView: UICollectionView!
  486. @objc var serverUrl = ""
  487. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  488. internal var metadataPush: tableMetadata?
  489. internal var isEditMode = false
  490. internal var selectOcId: [String] = []
  491. internal var dataSource: NCDataSource?
  492. internal var layout = ""
  493. internal var groupBy = ""
  494. internal var titleButton = ""
  495. internal var itemForLine = 0
  496. private var autoUploadFileName = ""
  497. private var autoUploadDirectory = ""
  498. private var listLayout: NCListLayout!
  499. private var gridLayout: NCGridLayout!
  500. private let headerMenuHeight: CGFloat = 50
  501. private let sectionHeaderHeight: CGFloat = 20
  502. private let footerHeight: CGFloat = 50
  503. internal let refreshControl = UIRefreshControl()
  504. // DECLARE
  505. internal var layoutKey = ""
  506. internal var titleCurrentFolder = ""
  507. required init?(coder aDecoder: NSCoder) {
  508. super.init(coder: aDecoder)
  509. }
  510. override func viewDidLoad() {
  511. super.viewDidLoad()
  512. // Cell
  513. collectionView.register(UINib.init(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  514. collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  515. // Header
  516. collectionView.register(UINib.init(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  517. collectionView.register(UINib.init(nibName: "NCSectionHeader", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeader")
  518. // Footer
  519. collectionView.register(UINib.init(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  520. collectionView.alwaysBounceVertical = true
  521. listLayout = NCListLayout()
  522. gridLayout = NCGridLayout()
  523. // Refresh Control
  524. collectionView.addSubview(refreshControl)
  525. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  526. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brandElement
  527. refreshControl.addTarget(self, action: #selector(reloadDataSourceNetwork), for: .valueChanged)
  528. // empty Data Source
  529. self.collectionView.emptyDataSetDelegate = self
  530. self.collectionView.emptyDataSetSource = self
  531. // 3D Touch peek and pop
  532. if traitCollection.forceTouchCapability == .available {
  533. registerForPreviewing(with: self, sourceView: view)
  534. }
  535. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil)
  536. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: k_notificationCenter_reloadDataSource), object: nil)
  537. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_deleteFile), object: nil)
  538. NotificationCenter.default.addObserver(self, selector: #selector(downloadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadStartFile), object: nil)
  539. NotificationCenter.default.addObserver(self, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadedFile), object: nil)
  540. NotificationCenter.default.addObserver(self, selector: #selector(downloadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadCancelFile), object: nil)
  541. NotificationCenter.default.addObserver(self, selector: #selector(uploadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadStartFile), object: nil)
  542. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadedFile), object: nil)
  543. NotificationCenter.default.addObserver(self, selector: #selector(uploadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadCancelFile), object: nil)
  544. NotificationCenter.default.addObserver(self, selector: #selector(triggerProgressTask(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_progressTask), object:nil)
  545. changeTheming()
  546. }
  547. override func viewWillAppear(_ animated: Bool) {
  548. super.viewWillAppear(animated)
  549. self.navigationItem.title = titleCurrentFolder
  550. // get auto upload folder
  551. autoUploadFileName = NCManageDatabase.sharedInstance.getAccountAutoUploadFileName()
  552. autoUploadDirectory = NCManageDatabase.sharedInstance.getAccountAutoUploadDirectory(urlBase: appDelegate.urlBase, account: appDelegate.account)
  553. (layout, _, _, groupBy, _, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: layoutKey)
  554. gridLayout.itemForLine = CGFloat(itemForLine)
  555. if layout == k_layout_list {
  556. collectionView?.collectionViewLayout = listLayout
  557. } else {
  558. collectionView?.collectionViewLayout = gridLayout
  559. }
  560. reloadDataSource()
  561. }
  562. override func viewDidAppear(_ animated: Bool) {
  563. super.viewDidAppear(animated)
  564. reloadDataSourceNetwork()
  565. }
  566. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  567. super.viewWillTransition(to: size, with: coordinator)
  568. coordinator.animate(alongsideTransition: nil) { _ in
  569. self.collectionView?.collectionViewLayout.invalidateLayout()
  570. }
  571. }
  572. // MARK: - NotificationCenter
  573. @objc func changeTheming() {
  574. appDelegate.changeTheming(self, tableView: nil, collectionView: collectionView, form: false)
  575. }
  576. @objc func deleteFile(_ notification: NSNotification) {
  577. if self.view?.window == nil { return }
  578. if let userInfo = notification.userInfo as NSDictionary? {
  579. if let metadata = userInfo["metadata"] as? tableMetadata, let onlyLocal = userInfo["onlyLocal"] as? Bool, let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String {
  580. NCCollectionCommon.shared.notificationDeleteFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, errorCode: errorCode, errorDescription: errorDescription, onlyLocal: onlyLocal)
  581. }
  582. }
  583. }
  584. @objc func downloadStartFile(_ notification: NSNotification) {
  585. if self.view?.window == nil { return }
  586. if let userInfo = notification.userInfo as NSDictionary? {
  587. if let metadata = userInfo["metadata"] as? tableMetadata {
  588. NCCollectionCommon.shared.notificationDownloadStartFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  589. }
  590. }
  591. }
  592. @objc func downloadedFile(_ notification: NSNotification) {
  593. if self.view?.window == nil { return }
  594. if let userInfo = notification.userInfo as NSDictionary? {
  595. if let metadata = userInfo["metadata"] as? tableMetadata, let _ = userInfo["errorCode"] as? Int {
  596. NCCollectionCommon.shared.notificationDownloadedFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  597. }
  598. }
  599. }
  600. @objc func downloadCancelFile(_ notification: NSNotification) {
  601. if self.view?.window == nil { return }
  602. if let userInfo = notification.userInfo as NSDictionary? {
  603. if let metadata = userInfo["metadata"] as? tableMetadata {
  604. NCCollectionCommon.shared.notificationDownloadCancelFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  605. }
  606. }
  607. }
  608. @objc func uploadStartFile(_ notification: NSNotification) {
  609. if self.view?.window == nil { return }
  610. if let userInfo = notification.userInfo as NSDictionary? {
  611. if let metadata = userInfo["metadata"] as? tableMetadata {
  612. NCCollectionCommon.shared.notificationUploadStartFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, serverUrl: serverUrl, account: appDelegate.account)
  613. }
  614. }
  615. }
  616. @objc func uploadedFile(_ notification: NSNotification) {
  617. if self.view?.window == nil { return }
  618. if let userInfo = notification.userInfo as NSDictionary? {
  619. if let metadata = userInfo["metadata"] as? tableMetadata, let ocIdTemp = userInfo["ocIdTemp"] as? String, let _ = userInfo["errorCode"] as? Int {
  620. NCCollectionCommon.shared.notificationUploadedFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, ocIdTemp:ocIdTemp, serverUrl: serverUrl, account: appDelegate.account)
  621. }
  622. }
  623. }
  624. @objc func uploadCancelFile(_ notification: NSNotification) {
  625. if self.view?.window == nil { return }
  626. if let userInfo = notification.userInfo as NSDictionary? {
  627. if let metadata = userInfo["metadata"] as? tableMetadata {
  628. NCCollectionCommon.shared.notificationUploadCancelFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, serverUrl: serverUrl, account: appDelegate.account)
  629. }
  630. }
  631. }
  632. @objc func triggerProgressTask(_ notification: NSNotification) {
  633. if self.view?.window == nil { return }
  634. if let userInfo = notification.userInfo as NSDictionary? {
  635. if let ocId = userInfo["ocId"] as? String {
  636. let progressNumber = userInfo["progress"] as? NSNumber ?? 0
  637. let progress = progressNumber.floatValue
  638. NCCollectionCommon.shared.notificationTriggerProgressTask(collectionView: collectionView, dataSource: dataSource, ocId: ocId, progress: progress)
  639. }
  640. }
  641. }
  642. // MARK: DZNEmpty
  643. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  644. return NCBrandColor.sharedInstance.backgroundView
  645. }
  646. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  647. return nil
  648. }
  649. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  650. return nil
  651. }
  652. func description(forEmptyDataSet scrollView: UIScrollView!) -> NSAttributedString! {
  653. return nil
  654. }
  655. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  656. return true
  657. }
  658. // MARK: TAP EVENT
  659. func tapSwitchHeader(sender: Any) {
  660. if collectionView.collectionViewLayout == gridLayout {
  661. // list layout
  662. UIView.animate(withDuration: 0.0, animations: {
  663. self.collectionView.collectionViewLayout.invalidateLayout()
  664. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  665. self.collectionView.reloadData()
  666. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  667. })
  668. })
  669. layout = k_layout_list
  670. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  671. } else {
  672. // grid layout
  673. UIView.animate(withDuration: 0.0, animations: {
  674. self.collectionView.collectionViewLayout.invalidateLayout()
  675. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  676. self.collectionView.reloadData()
  677. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  678. })
  679. })
  680. layout = k_layout_grid
  681. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  682. }
  683. }
  684. func tapOrderHeader(sender: Any) {
  685. let sortMenu = NCSortMenu()
  686. sortMenu.toggleMenu(viewController: self, key: layoutKey, sortButton: sender as? UIButton, serverUrl: serverUrl)
  687. }
  688. func tapMoreHeader(sender: Any) {
  689. }
  690. func tapMoreListItem(with objectId: String, namedButtonMore: String, sender: Any) {
  691. tapMoreGridItem(with: objectId, namedButtonMore: namedButtonMore, sender: sender)
  692. }
  693. func tapShareListItem(with objectId: String, sender: Any) {
  694. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "ocId == %@", objectId)) else {
  695. return
  696. }
  697. NCMainCommon.shared.openShare(ViewController: self, metadata: metadata, indexPage: 2)
  698. }
  699. func tapMoreGridItem(with objectId: String, namedButtonMore: String, sender: Any) {
  700. }
  701. // MARK: SEGUE
  702. @objc func segue(metadata: tableMetadata) {
  703. self.metadataPush = metadata
  704. performSegue(withIdentifier: "segueDetail", sender: self)
  705. }
  706. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  707. let photoDataSource: NSMutableArray = []
  708. for metadata in (dataSource?.metadatas ?? [tableMetadata]()) {
  709. if metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video {
  710. photoDataSource.add(metadata)
  711. }
  712. }
  713. if let segueNavigationController = segue.destination as? UINavigationController {
  714. if let segueViewController = segueNavigationController.topViewController as? NCDetailViewController {
  715. segueViewController.metadata = metadataPush
  716. }
  717. }
  718. }
  719. // MARK: - NC API & Algorithm
  720. @objc func reloadDataSource() { }
  721. @objc func reloadDataSourceNetwork() { }
  722. }
  723. // MARK: - 3D Touch peek and pop
  724. extension NCCollectionViewCommon: UIViewControllerPreviewingDelegate {
  725. func previewingContext(_ previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
  726. guard let point = collectionView?.convert(location, from: collectionView?.superview) else { return nil }
  727. guard let indexPath = collectionView?.indexPathForItem(at: point) else { return nil }
  728. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return nil }
  729. guard let viewController = UIStoryboard(name: "CCPeekPop", bundle: nil).instantiateViewController(withIdentifier: "PeekPopImagePreview") as? CCPeekPop else { return nil }
  730. viewController.metadata = metadata
  731. if layout == k_layout_grid {
  732. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCGridCell else { return nil }
  733. previewingContext.sourceRect = cell.frame
  734. viewController.imageFile = cell.imageItem.image
  735. } else {
  736. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCListCell else { return nil }
  737. previewingContext.sourceRect = cell.frame
  738. viewController.imageFile = cell.imageItem.image
  739. }
  740. viewController.showOpenIn = true
  741. viewController.showOpenQuickLook = NCUtility.shared.isQuickLookDisplayable(metadata: metadata)
  742. viewController.showShare = false
  743. return viewController
  744. }
  745. func previewingContext(_ previewingContext: UIViewControllerPreviewing, commit viewControllerToCommit: UIViewController) {
  746. guard let indexPath = collectionView?.indexPathForItem(at: previewingContext.sourceRect.origin) else { return }
  747. collectionView(collectionView, didSelectItemAt: indexPath)
  748. }
  749. }
  750. // MARK: - Collection View
  751. extension NCCollectionViewCommon: UICollectionViewDelegate {
  752. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { }
  753. }
  754. extension NCCollectionViewCommon: UICollectionViewDataSource {
  755. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  756. if (indexPath.section == 0) {
  757. if kind == UICollectionView.elementKindSectionHeader {
  758. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
  759. if collectionView.collectionViewLayout == gridLayout {
  760. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  761. } else {
  762. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  763. }
  764. header.delegate = self
  765. header.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  766. header.separator.backgroundColor = NCBrandColor.sharedInstance.separator
  767. header.setStatusButton(count: dataSource?.metadatas.count ?? 0)
  768. header.setTitleSorted(datasourceTitleButton: titleButton)
  769. if groupBy == "none" {
  770. header.labelSection.isHidden = true
  771. header.labelSectionHeightConstraint.constant = 0
  772. } else {
  773. header.labelSection.isHidden = false
  774. header.setTitleLabel(title: "")
  775. header.labelSectionHeightConstraint.constant = sectionHeaderHeight
  776. }
  777. return header
  778. } else {
  779. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  780. let info = dataSource?.getFilesInformation()
  781. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  782. return footer
  783. }
  784. } else {
  785. if kind == UICollectionView.elementKindSectionHeader {
  786. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeader", for: indexPath) as! NCSectionHeader
  787. header.setTitleLabel(title: "")
  788. return header
  789. } else {
  790. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  791. let info = dataSource?.getFilesInformation()
  792. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  793. return footer
  794. }
  795. }
  796. }
  797. func numberOfSections(in collectionView: UICollectionView) -> Int {
  798. return dataSource?.sections ?? 1
  799. }
  800. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  801. return dataSource?.numberOfItemsInSection(section: section) ?? 1
  802. }
  803. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  804. let cell: UICollectionViewCell
  805. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else {
  806. return collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  807. }
  808. if layout == k_layout_grid {
  809. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  810. } else {
  811. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  812. }
  813. let shares = NCManageDatabase.sharedInstance.getTableShares(account: metadata.account, serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  814. NCCollectionCommon.shared.cellForItemAt(indexPath: indexPath, collectionView: collectionView, cell: cell, metadata: metadata, metadataFolder: nil, serverUrl: metadata.serverUrl, isEditMode: isEditMode, selectocId: selectOcId, autoUploadFileName: autoUploadFileName, autoUploadDirectory: autoUploadDirectory, hideButtonMore: false, downloadThumbnail: true, shares: shares, source: self)
  815. return cell
  816. }
  817. }
  818. extension NCCollectionViewCommon: UICollectionViewDelegateFlowLayout {
  819. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  820. if section == 0 {
  821. if groupBy == "none" {
  822. return CGSize(width: collectionView.frame.width, height: headerMenuHeight)
  823. } else {
  824. return CGSize(width: collectionView.frame.width, height: headerMenuHeight + sectionHeaderHeight)
  825. }
  826. } else {
  827. return CGSize(width: collectionView.frame.width, height: sectionHeaderHeight)
  828. }
  829. }
  830. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  831. let sections = dataSource?.sections ?? 1
  832. if (section == sections - 1) {
  833. return CGSize(width: collectionView.frame.width, height: footerHeight)
  834. } else {
  835. return CGSize(width: collectionView.frame.width, height: 0)
  836. }
  837. }
  838. }