NCCollectionCommon.swift 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044
  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. _ = dataSource?.deleteMetadata(ocId: metadata.ocId)
  305. }
  306. collectionView?.reloadData()
  307. } else {
  308. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  309. }
  310. }
  311. func notificationDownloadStartFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  312. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  313. let indexPath = IndexPath(row: row, section: 0)
  314. collectionView?.reloadItems(at: [indexPath])
  315. }
  316. }
  317. func notificationDownloadedFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  318. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  319. let indexPath = IndexPath(row: row, section: 0)
  320. collectionView?.reloadItems(at: [indexPath])
  321. }
  322. }
  323. func notificationDownloadCancelFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  324. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  325. let indexPath = IndexPath(row: row, section: 0)
  326. collectionView?.reloadItems(at: [indexPath])
  327. }
  328. }
  329. func notificationUploadStartFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, serverUrl: String, account: String) {
  330. if metadata.serverUrl == serverUrl && metadata.account == account {
  331. dataSource?.addMetadata(metadata)
  332. collectionView?.reloadData()
  333. }
  334. }
  335. func notificationUploadedFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, ocIdTemp: String, serverUrl: String, account: String) {
  336. if metadata.serverUrl == serverUrl && metadata.account == account {
  337. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId, ocIdTemp: ocIdTemp) {
  338. let indexPath = IndexPath(row: row, section: 0)
  339. collectionView?.reloadItems(at: [indexPath])
  340. }
  341. }
  342. }
  343. func notificationUploadCancelFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, serverUrl: String, account: String) {
  344. if metadata.serverUrl == serverUrl && metadata.account == account {
  345. dataSource?.deleteMetadata(ocId: metadata.ocId)
  346. collectionView?.reloadData()
  347. }
  348. }
  349. func notificationTriggerProgressTask(collectionView: UICollectionView?, dataSource: NCDataSource?, ocId: String, progress: Float) {
  350. if let index = dataSource?.getIndexMetadata(ocId: ocId) {
  351. if let cell = collectionView?.cellForItem(at: IndexPath(row: index, section: 0)) {
  352. if cell is NCListCell {
  353. let cell = cell as! NCListCell
  354. if progress > 0 {
  355. cell.progressView?.isHidden = false
  356. cell.progressView?.progress = progress
  357. cell.setButtonMore(named: "stop")
  358. }
  359. } else if cell is NCGridCell {
  360. let cell = cell as! NCGridCell
  361. if progress > 0 {
  362. cell.progressView.isHidden = false
  363. cell.progressView.progress = progress
  364. cell.setButtonMore(named: "stop")
  365. }
  366. }
  367. }
  368. }
  369. }
  370. }
  371. // MARK: - List Layout
  372. class NCListLayout: UICollectionViewFlowLayout {
  373. let itemHeight: CGFloat = 60
  374. override init() {
  375. super.init()
  376. sectionHeadersPinToVisibleBounds = false
  377. minimumInteritemSpacing = 0
  378. minimumLineSpacing = 1
  379. self.scrollDirection = .vertical
  380. self.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
  381. }
  382. required init?(coder aDecoder: NSCoder) {
  383. fatalError("init(coder:) has not been implemented")
  384. }
  385. override var itemSize: CGSize {
  386. get {
  387. if let collectionView = collectionView {
  388. let itemWidth: CGFloat = collectionView.frame.width
  389. return CGSize(width: itemWidth, height: self.itemHeight)
  390. }
  391. // Default fallback
  392. return CGSize(width: 100, height: 100)
  393. }
  394. set {
  395. super.itemSize = newValue
  396. }
  397. }
  398. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  399. return proposedContentOffset
  400. }
  401. }
  402. // MARK: - Grid Layout
  403. class NCGridLayout: UICollectionViewFlowLayout {
  404. var heightLabelPlusButton: CGFloat = 45
  405. var marginLeftRight: CGFloat = 6
  406. var itemForLine: CGFloat = 3
  407. override init() {
  408. super.init()
  409. sectionHeadersPinToVisibleBounds = false
  410. minimumInteritemSpacing = 1
  411. minimumLineSpacing = marginLeftRight
  412. self.scrollDirection = .vertical
  413. self.sectionInset = UIEdgeInsets(top: 10, left: marginLeftRight, bottom: 0, right: marginLeftRight)
  414. }
  415. required init?(coder aDecoder: NSCoder) {
  416. fatalError("init(coder:) has not been implemented")
  417. }
  418. override var itemSize: CGSize {
  419. get {
  420. if let collectionView = collectionView {
  421. let itemWidth: CGFloat = (collectionView.frame.width - marginLeftRight * 2 - marginLeftRight * (itemForLine - 1)) / itemForLine
  422. let itemHeight: CGFloat = itemWidth + heightLabelPlusButton
  423. return CGSize(width: itemWidth, height: itemHeight)
  424. }
  425. // Default fallback
  426. return CGSize(width: 100, height: 100)
  427. }
  428. set {
  429. super.itemSize = newValue
  430. }
  431. }
  432. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  433. return proposedContentOffset
  434. }
  435. }
  436. // MARK: - NCSelect
  437. extension NCCollectionCommon: NCSelectDelegate {
  438. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, array: [Any], buttonType: String, overwrite: Bool) {
  439. if (serverUrl != nil && array.count > 0) {
  440. var move = true
  441. if buttonType == "done1" { move = false }
  442. for metadata in array as! [tableMetadata] {
  443. NCOperationQueue.shared.copyMove(metadata: metadata, serverUrl: serverUrl!, overwrite: overwrite, move: move)
  444. }
  445. }
  446. }
  447. func openSelectView(viewController: UIViewController, array: [Any]) {
  448. let navigationController = UIStoryboard.init(name: "NCSelect", bundle: nil).instantiateInitialViewController() as! UINavigationController
  449. let vc = navigationController.topViewController as! NCSelect
  450. vc.delegate = self
  451. vc.hideButtonCreateFolder = false
  452. vc.selectFile = false
  453. vc.includeDirectoryE2EEncryption = false
  454. vc.includeImages = false
  455. vc.type = ""
  456. vc.titleButtonDone = NSLocalizedString("_move_", comment: "")
  457. vc.titleButtonDone1 = NSLocalizedString("_copy_",comment: "")
  458. vc.isButtonDone1Hide = false
  459. vc.isOverwriteHide = false
  460. vc.keyLayout = k_layout_view_move
  461. vc.array = array
  462. navigationController.modalPresentationStyle = .fullScreen
  463. viewController.present(navigationController, animated: true, completion: nil)
  464. }
  465. }
  466. // MARK: - Nextcloud CollectionView Common
  467. class NCCollectionViewCommon: UIViewController, UIGestureRecognizerDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  468. @IBOutlet weak var collectionView: UICollectionView!
  469. @objc var serverUrl = ""
  470. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  471. internal var metadataPush: tableMetadata?
  472. internal var isEditMode = false
  473. internal var selectOcId: [String] = []
  474. internal var dataSource: NCDataSource?
  475. internal var layout = ""
  476. internal var groupBy = ""
  477. internal var titleButton = ""
  478. internal var itemForLine = 0
  479. private var autoUploadFileName = ""
  480. private var autoUploadDirectory = ""
  481. private var listLayout: NCListLayout!
  482. private var gridLayout: NCGridLayout!
  483. private let headerMenuHeight: CGFloat = 50
  484. private let sectionHeaderHeight: CGFloat = 20
  485. private let footerHeight: CGFloat = 50
  486. internal let refreshControl = UIRefreshControl()
  487. // DECLARE
  488. internal var layoutKey = ""
  489. internal var titleCurrentFolder = ""
  490. required init?(coder aDecoder: NSCoder) {
  491. super.init(coder: aDecoder)
  492. }
  493. override func viewDidLoad() {
  494. super.viewDidLoad()
  495. // Cell
  496. collectionView.register(UINib.init(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  497. collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  498. // Header
  499. collectionView.register(UINib.init(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  500. collectionView.register(UINib.init(nibName: "NCSectionHeader", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeader")
  501. // Footer
  502. collectionView.register(UINib.init(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  503. collectionView.alwaysBounceVertical = true
  504. listLayout = NCListLayout()
  505. gridLayout = NCGridLayout()
  506. // Refresh Control
  507. collectionView.addSubview(refreshControl)
  508. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  509. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brandElement
  510. refreshControl.addTarget(self, action: #selector(reloadDataSourceNetwork), for: .valueChanged)
  511. // empty Data Source
  512. self.collectionView.emptyDataSetDelegate = self
  513. self.collectionView.emptyDataSetSource = self
  514. // 3D Touch peek and pop
  515. if traitCollection.forceTouchCapability == .available {
  516. registerForPreviewing(with: self, sourceView: view)
  517. }
  518. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil)
  519. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: k_notificationCenter_reloadDataSource), object: nil)
  520. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_deleteFile), object: nil)
  521. NotificationCenter.default.addObserver(self, selector: #selector(downloadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadStartFile), object: nil)
  522. NotificationCenter.default.addObserver(self, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadedFile), object: nil)
  523. NotificationCenter.default.addObserver(self, selector: #selector(downloadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadCancelFile), object: nil)
  524. NotificationCenter.default.addObserver(self, selector: #selector(uploadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadStartFile), object: nil)
  525. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadedFile), object: nil)
  526. NotificationCenter.default.addObserver(self, selector: #selector(uploadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadCancelFile), object: nil)
  527. NotificationCenter.default.addObserver(self, selector: #selector(triggerProgressTask(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_progressTask), object:nil)
  528. changeTheming()
  529. }
  530. override func viewWillAppear(_ animated: Bool) {
  531. super.viewWillAppear(animated)
  532. self.navigationItem.title = titleCurrentFolder
  533. // get auto upload folder
  534. autoUploadFileName = NCManageDatabase.sharedInstance.getAccountAutoUploadFileName()
  535. autoUploadDirectory = NCManageDatabase.sharedInstance.getAccountAutoUploadDirectory(urlBase: appDelegate.urlBase, account: appDelegate.account)
  536. (layout, _, _, groupBy, _, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: layoutKey)
  537. gridLayout.itemForLine = CGFloat(itemForLine)
  538. if layout == k_layout_list {
  539. collectionView?.collectionViewLayout = listLayout
  540. } else {
  541. collectionView?.collectionViewLayout = gridLayout
  542. }
  543. reloadDataSource()
  544. }
  545. override func viewDidAppear(_ animated: Bool) {
  546. super.viewDidAppear(animated)
  547. reloadDataSourceNetwork()
  548. }
  549. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  550. super.viewWillTransition(to: size, with: coordinator)
  551. coordinator.animate(alongsideTransition: nil) { _ in
  552. self.collectionView?.collectionViewLayout.invalidateLayout()
  553. }
  554. }
  555. // MARK: - NotificationCenter
  556. @objc func changeTheming() {
  557. appDelegate.changeTheming(self, tableView: nil, collectionView: collectionView, form: false)
  558. }
  559. @objc func deleteFile(_ notification: NSNotification) {
  560. if self.view?.window == nil { return }
  561. if let userInfo = notification.userInfo as NSDictionary? {
  562. 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 {
  563. NCCollectionCommon.shared.notificationDeleteFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, errorCode: errorCode, errorDescription: errorDescription, onlyLocal: onlyLocal)
  564. }
  565. }
  566. }
  567. @objc func downloadStartFile(_ notification: NSNotification) {
  568. if self.view?.window == nil { return }
  569. if let userInfo = notification.userInfo as NSDictionary? {
  570. if let metadata = userInfo["metadata"] as? tableMetadata {
  571. NCCollectionCommon.shared.notificationDownloadStartFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  572. }
  573. }
  574. }
  575. @objc func downloadedFile(_ notification: NSNotification) {
  576. if self.view?.window == nil { return }
  577. if let userInfo = notification.userInfo as NSDictionary? {
  578. if let metadata = userInfo["metadata"] as? tableMetadata, let _ = userInfo["errorCode"] as? Int {
  579. NCCollectionCommon.shared.notificationDownloadedFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  580. }
  581. }
  582. }
  583. @objc func downloadCancelFile(_ notification: NSNotification) {
  584. if self.view?.window == nil { return }
  585. if let userInfo = notification.userInfo as NSDictionary? {
  586. if let metadata = userInfo["metadata"] as? tableMetadata {
  587. NCCollectionCommon.shared.notificationDownloadCancelFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  588. }
  589. }
  590. }
  591. @objc func uploadStartFile(_ notification: NSNotification) {
  592. if self.view?.window == nil { return }
  593. if let userInfo = notification.userInfo as NSDictionary? {
  594. if let metadata = userInfo["metadata"] as? tableMetadata {
  595. NCCollectionCommon.shared.notificationUploadStartFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, serverUrl: serverUrl, account: appDelegate.account)
  596. }
  597. }
  598. }
  599. @objc func uploadedFile(_ notification: NSNotification) {
  600. if self.view?.window == nil { return }
  601. if let userInfo = notification.userInfo as NSDictionary? {
  602. if let metadata = userInfo["metadata"] as? tableMetadata, let ocIdTemp = userInfo["ocIdTemp"] as? String, let _ = userInfo["errorCode"] as? Int {
  603. NCCollectionCommon.shared.notificationUploadedFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, ocIdTemp:ocIdTemp, serverUrl: serverUrl, account: appDelegate.account)
  604. }
  605. }
  606. }
  607. @objc func uploadCancelFile(_ notification: NSNotification) {
  608. if self.view?.window == nil { return }
  609. if let userInfo = notification.userInfo as NSDictionary? {
  610. if let metadata = userInfo["metadata"] as? tableMetadata {
  611. NCCollectionCommon.shared.notificationUploadCancelFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, serverUrl: serverUrl, account: appDelegate.account)
  612. }
  613. }
  614. }
  615. @objc func triggerProgressTask(_ notification: NSNotification) {
  616. if self.view?.window == nil { return }
  617. if let userInfo = notification.userInfo as NSDictionary? {
  618. if let ocId = userInfo["ocId"] as? String {
  619. let progressNumber = userInfo["progress"] as? NSNumber ?? 0
  620. let progress = progressNumber.floatValue
  621. NCCollectionCommon.shared.notificationTriggerProgressTask(collectionView: collectionView, dataSource: dataSource, ocId: ocId, progress: progress)
  622. }
  623. }
  624. }
  625. // MARK: DZNEmpty
  626. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  627. return NCBrandColor.sharedInstance.backgroundView
  628. }
  629. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  630. return nil
  631. }
  632. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  633. return nil
  634. }
  635. func description(forEmptyDataSet scrollView: UIScrollView!) -> NSAttributedString! {
  636. return nil
  637. }
  638. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  639. return true
  640. }
  641. // MARK: TAP EVENT
  642. func tapSwitchHeader(sender: Any) {
  643. if collectionView.collectionViewLayout == gridLayout {
  644. // list layout
  645. UIView.animate(withDuration: 0.0, animations: {
  646. self.collectionView.collectionViewLayout.invalidateLayout()
  647. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  648. self.collectionView.reloadData()
  649. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  650. })
  651. })
  652. layout = k_layout_list
  653. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  654. } else {
  655. // grid layout
  656. UIView.animate(withDuration: 0.0, animations: {
  657. self.collectionView.collectionViewLayout.invalidateLayout()
  658. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  659. self.collectionView.reloadData()
  660. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  661. })
  662. })
  663. layout = k_layout_grid
  664. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  665. }
  666. }
  667. func tapOrderHeader(sender: Any) {
  668. let sortMenu = NCSortMenu()
  669. sortMenu.toggleMenu(viewController: self, key: layoutKey, sortButton: sender as? UIButton, serverUrl: serverUrl)
  670. }
  671. func tapMoreHeader(sender: Any) {
  672. }
  673. func tapMoreListItem(with objectId: String, namedButtonMore: String, sender: Any) {
  674. tapMoreGridItem(with: objectId, namedButtonMore: namedButtonMore, sender: sender)
  675. }
  676. func tapShareListItem(with objectId: String, sender: Any) {
  677. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "ocId == %@", objectId)) else {
  678. return
  679. }
  680. NCMainCommon.shared.openShare(ViewController: self, metadata: metadata, indexPage: 2)
  681. }
  682. func tapMoreGridItem(with objectId: String, namedButtonMore: String, sender: Any) {
  683. }
  684. // MARK: SEGUE
  685. @objc func segue(metadata: tableMetadata) {
  686. self.metadataPush = metadata
  687. performSegue(withIdentifier: "segueDetail", sender: self)
  688. }
  689. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  690. let photoDataSource: NSMutableArray = []
  691. for metadata in (dataSource?.metadatas ?? [tableMetadata]()) {
  692. if metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video {
  693. photoDataSource.add(metadata)
  694. }
  695. }
  696. if let segueNavigationController = segue.destination as? UINavigationController {
  697. if let segueViewController = segueNavigationController.topViewController as? NCDetailViewController {
  698. segueViewController.metadata = metadataPush
  699. }
  700. }
  701. }
  702. // MARK: - NC API & Algorithm
  703. @objc func reloadDataSource() { }
  704. @objc func reloadDataSourceNetwork() { }
  705. }
  706. // MARK: - 3D Touch peek and pop
  707. extension NCCollectionViewCommon: UIViewControllerPreviewingDelegate {
  708. func previewingContext(_ previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
  709. guard let point = collectionView?.convert(location, from: collectionView?.superview) else { return nil }
  710. guard let indexPath = collectionView?.indexPathForItem(at: point) else { return nil }
  711. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return nil }
  712. guard let viewController = UIStoryboard(name: "CCPeekPop", bundle: nil).instantiateViewController(withIdentifier: "PeekPopImagePreview") as? CCPeekPop else { return nil }
  713. viewController.metadata = metadata
  714. if layout == k_layout_grid {
  715. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCGridCell else { return nil }
  716. previewingContext.sourceRect = cell.frame
  717. viewController.imageFile = cell.imageItem.image
  718. } else {
  719. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCListCell else { return nil }
  720. previewingContext.sourceRect = cell.frame
  721. viewController.imageFile = cell.imageItem.image
  722. }
  723. viewController.showOpenIn = true
  724. viewController.showOpenQuickLook = NCUtility.shared.isQuickLookDisplayable(metadata: metadata)
  725. viewController.showShare = false
  726. return viewController
  727. }
  728. func previewingContext(_ previewingContext: UIViewControllerPreviewing, commit viewControllerToCommit: UIViewController) {
  729. guard let indexPath = collectionView?.indexPathForItem(at: previewingContext.sourceRect.origin) else { return }
  730. collectionView(collectionView, didSelectItemAt: indexPath)
  731. }
  732. }
  733. // MARK: - Collection View
  734. extension NCCollectionViewCommon: UICollectionViewDelegate {
  735. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { }
  736. }
  737. extension NCCollectionViewCommon: UICollectionViewDataSource {
  738. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  739. if (indexPath.section == 0) {
  740. if kind == UICollectionView.elementKindSectionHeader {
  741. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
  742. if collectionView.collectionViewLayout == gridLayout {
  743. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  744. } else {
  745. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  746. }
  747. header.delegate = self
  748. header.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  749. header.separator.backgroundColor = NCBrandColor.sharedInstance.separator
  750. header.setStatusButton(count: dataSource?.metadatas.count ?? 0)
  751. header.setTitleSorted(datasourceTitleButton: titleButton)
  752. if groupBy == "none" {
  753. header.labelSection.isHidden = true
  754. header.labelSectionHeightConstraint.constant = 0
  755. } else {
  756. header.labelSection.isHidden = false
  757. header.setTitleLabel(title: "")
  758. header.labelSectionHeightConstraint.constant = sectionHeaderHeight
  759. }
  760. return header
  761. } else {
  762. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  763. let info = dataSource?.getFilesInformation()
  764. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  765. return footer
  766. }
  767. } else {
  768. if kind == UICollectionView.elementKindSectionHeader {
  769. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeader", for: indexPath) as! NCSectionHeader
  770. header.setTitleLabel(title: "")
  771. return header
  772. } else {
  773. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  774. let info = dataSource?.getFilesInformation()
  775. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  776. return footer
  777. }
  778. }
  779. }
  780. func numberOfSections(in collectionView: UICollectionView) -> Int {
  781. return dataSource?.sections ?? 1
  782. }
  783. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  784. return dataSource?.numberOfItemsInSection(section: section) ?? 1
  785. }
  786. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  787. let cell: UICollectionViewCell
  788. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else {
  789. return collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  790. }
  791. if layout == k_layout_grid {
  792. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  793. } else {
  794. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  795. }
  796. let shares = NCManageDatabase.sharedInstance.getTableShares(account: metadata.account, serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  797. 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)
  798. return cell
  799. }
  800. }
  801. extension NCCollectionViewCommon: UICollectionViewDelegateFlowLayout {
  802. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  803. if section == 0 {
  804. if groupBy == "none" {
  805. return CGSize(width: collectionView.frame.width, height: headerMenuHeight)
  806. } else {
  807. return CGSize(width: collectionView.frame.width, height: headerMenuHeight + sectionHeaderHeight)
  808. }
  809. } else {
  810. return CGSize(width: collectionView.frame.width, height: sectionHeaderHeight)
  811. }
  812. }
  813. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  814. let sections = dataSource?.sections ?? 1
  815. if (section == sections - 1) {
  816. return CGSize(width: collectionView.frame.width, height: footerHeight)
  817. } else {
  818. return CGSize(width: collectionView.frame.width, height: 0)
  819. }
  820. }
  821. }