NCOffline.swift 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. //
  2. // NCOffline.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/10/2018.
  6. // Copyright © 2018 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  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. class NCOffline: UIViewController ,UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout, UIGestureRecognizerDelegate, NCOfflineListCellDelegate, NCOfflineGridCellDelegate, NCOfflineHeaderDelegate, DropdownMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  25. @IBOutlet fileprivate weak var collectionView: UICollectionView!
  26. var titleCurrentFolder = NSLocalizedString("_manage_file_offline_", comment: "")
  27. var directoryID = ""
  28. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  29. private var isEditMode = false
  30. private var selectFileID = [String]()
  31. private var sectionDatasource = CCSectionDataSourceMetadata()
  32. private var datasourceSorted = ""
  33. private var datasourceAscending = true
  34. private var datasourceGroupBy = ""
  35. private var datasourceDirectoryOnTop = false
  36. private var listLayout: NCListLayoutOffline!
  37. private var gridLayout: NCGridLayoutOffline!
  38. private var actionSheet: ActionSheet?
  39. private let headerMenuHeight: CGFloat = 50
  40. private let sectionHeaderHeight: CGFloat = 20
  41. private let footerHeight: CGFloat = 50
  42. private let refreshControl = UIRefreshControl()
  43. override func viewDidLoad() {
  44. super.viewDidLoad()
  45. // Cell
  46. collectionView.register(UINib.init(nibName: "NCOfflineListCell", bundle: nil), forCellWithReuseIdentifier: "cell-list")
  47. collectionView.register(UINib.init(nibName: "NCOfflineGridCell", bundle: nil), forCellWithReuseIdentifier: "cell-grid")
  48. // Header
  49. collectionView.register(UINib.init(nibName: "NCOfflineSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  50. collectionView.register(UINib.init(nibName: "NCOfflineSectionHeader", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeader")
  51. // Footer
  52. collectionView.register(UINib.init(nibName: "NCOfflineFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "footer")
  53. collectionView.alwaysBounceVertical = true
  54. listLayout = NCListLayoutOffline()
  55. gridLayout = NCGridLayoutOffline()
  56. // Add Refresh Control
  57. if #available(iOS 10.0, *) {
  58. collectionView.refreshControl = refreshControl
  59. } else {
  60. collectionView.addSubview(refreshControl)
  61. }
  62. // Configure Refresh Control
  63. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  64. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brand
  65. refreshControl.addTarget(self, action: #selector(loadDatasource), for: .valueChanged)
  66. // empty Data Source
  67. self.collectionView.emptyDataSetDelegate = self;
  68. self.collectionView.emptyDataSetSource = self;
  69. }
  70. override func viewWillAppear(_ animated: Bool) {
  71. super.viewWillAppear(animated)
  72. self.navigationItem.title = titleCurrentFolder
  73. datasourceSorted = CCUtility.getOrderSettings()
  74. datasourceAscending = CCUtility.getAscendingSettings()
  75. datasourceGroupBy = CCUtility.getGroupBySettings()
  76. datasourceDirectoryOnTop = CCUtility.getDirectoryOnTop()
  77. if CCUtility.getLayoutOffline() == "list" {
  78. collectionView.collectionViewLayout = listLayout
  79. } else {
  80. collectionView.collectionViewLayout = gridLayout
  81. }
  82. loadDatasource()
  83. }
  84. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  85. super.viewWillTransition(to: size, with: coordinator)
  86. coordinator.animate(alongsideTransition: nil) { _ in
  87. self.collectionView.collectionViewLayout.invalidateLayout()
  88. self.actionSheet?.viewDidLayoutSubviews()
  89. }
  90. }
  91. // MARK: DZNEmpty
  92. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  93. return NCBrandColor.sharedInstance.backgroundView
  94. }
  95. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  96. return CCGraphics.changeThemingColorImage(UIImage.init(named: "filesNoFiles"), multiplier: 2, color: NCBrandColor.sharedInstance.brandElement)
  97. }
  98. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  99. let text = "\n"+NSLocalizedString("_files_no_files_", comment: "")
  100. let attributes = [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: 20), NSAttributedString.Key.foregroundColor: UIColor.lightGray]
  101. return NSAttributedString.init(string: text, attributes: attributes)
  102. }
  103. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  104. return true
  105. }
  106. // MARK: TAP EVENT
  107. func tapSwitchHeader(sender: Any) {
  108. if collectionView.collectionViewLayout == gridLayout {
  109. // list layout
  110. UIView.animate(withDuration: 0.0, animations: {
  111. self.collectionView.collectionViewLayout.invalidateLayout()
  112. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  113. self.collectionView.reloadData()
  114. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  115. })
  116. })
  117. CCUtility.setLayoutOffline("list")
  118. } else {
  119. // grid layout
  120. UIView.animate(withDuration: 0.0, animations: {
  121. self.collectionView.collectionViewLayout.invalidateLayout()
  122. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  123. self.collectionView.reloadData()
  124. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  125. })
  126. })
  127. CCUtility.setLayoutOffline("grid")
  128. }
  129. }
  130. func tapOrderHeader(sender: Any) {
  131. var menuView: DropdownMenu?
  132. var selectedIndexPath = [IndexPath()]
  133. let item1 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortFileNameAZ"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_name_a_z_", comment: ""))
  134. let item2 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortFileNameZA"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_name_z_a_", comment: ""))
  135. let item3 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortDateMoreRecent"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_date_more_recent_", comment: ""))
  136. let item4 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortDateLessRecent"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_date_less_recent_", comment: ""))
  137. let item5 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortSmallest"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_size_smallest_", comment: ""))
  138. let item6 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortLargest"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_size_largest_", comment: ""))
  139. switch datasourceSorted {
  140. case "fileName":
  141. if datasourceAscending == true { item1.style = .highlight; selectedIndexPath.append(IndexPath(row: 0, section: 0)) }
  142. if datasourceAscending == false { item2.style = .highlight; selectedIndexPath.append(IndexPath(row: 1, section: 0)) }
  143. case "date":
  144. if datasourceAscending == false { item3.style = .highlight; selectedIndexPath.append(IndexPath(row: 2, section: 0)) }
  145. if datasourceAscending == true { item4.style = .highlight; selectedIndexPath.append(IndexPath(row: 3, section: 0)) }
  146. case "size":
  147. if datasourceAscending == true { item5.style = .highlight; selectedIndexPath.append(IndexPath(row: 4, section: 0)) }
  148. if datasourceAscending == false { item6.style = .highlight; selectedIndexPath.append(IndexPath(row: 5, section: 0)) }
  149. default:
  150. ()
  151. }
  152. let item7 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "MenuGroupByAlphabetic"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_group_alphabetic_no_", comment: ""))
  153. let item8 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "MenuGroupByFile"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_group_typefile_no_", comment: ""))
  154. let item9 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "MenuGroupByDate"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_group_date_no_", comment: ""))
  155. switch datasourceGroupBy {
  156. case "alphabetic":
  157. item7.style = .highlight; selectedIndexPath.append(IndexPath(row: 0, section: 1))
  158. case "typefile":
  159. item8.style = .highlight; selectedIndexPath.append(IndexPath(row: 1, section: 1))
  160. case "date":
  161. item9.style = .highlight; selectedIndexPath.append(IndexPath(row: 2, section: 1))
  162. default:
  163. ()
  164. }
  165. let item10 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "foldersOnTop"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_directory_on_top_no_", comment: ""))
  166. if datasourceDirectoryOnTop {
  167. item10.style = .highlight; selectedIndexPath.append(IndexPath(row: 0, section: 2))
  168. }
  169. let sectionOrder = DropdownSection(sectionIdentifier: "", items: [item1, item2, item3, item4, item5, item6])
  170. let sectionGroupBy = DropdownSection(sectionIdentifier: "", items: [item7, item8, item9])
  171. let sectionFolderOnTop = DropdownSection(sectionIdentifier: "", items: [item10])
  172. menuView = DropdownMenu(navigationController: self.navigationController!, sections: [sectionOrder, sectionGroupBy, sectionFolderOnTop], selectedIndexPath: selectedIndexPath)
  173. menuView?.token = "tapOrderHeaderMenu"
  174. menuView?.delegate = self
  175. menuView?.rowHeight = 45
  176. menuView?.sectionHeaderHeight = 8
  177. menuView?.highlightColor = NCBrandColor.sharedInstance.brand
  178. menuView?.tableView.alwaysBounceVertical = false
  179. menuView?.tableViewBackgroundColor = UIColor.white
  180. let header = (sender as? UIButton)?.superview
  181. let headerRect = self.collectionView.convert(header!.bounds, from: self.view)
  182. let menuOffsetY = headerRect.height - headerRect.origin.y - 2
  183. menuView?.topOffsetY = CGFloat(menuOffsetY)
  184. menuView?.showMenu()
  185. }
  186. func tapMoreHeader(sender: Any) {
  187. }
  188. func tapMoreItem(with fileID: String, sender: Any) {
  189. tapMoreGridItem(with: fileID, sender: sender)
  190. }
  191. func tapMoreGridItem(with fileID: String, sender: Any) {
  192. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "fileID == %@", fileID)) else {
  193. return
  194. }
  195. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  196. return
  197. }
  198. if !isEditMode {
  199. var items = [ActionSheetItem]()
  200. let appearanceDelete = ActionSheetItemAppearance.init()
  201. appearanceDelete.textColor = UIColor.red
  202. if (metadata.directory == false || serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl)) {
  203. items.append(ActionSheetItem(title: NSLocalizedString("_remove_available_offline_", comment: ""), value: 0, image: CCGraphics.changeThemingColorImage(UIImage.init(named: "offline"), multiplier: 2, color: NCBrandColor.sharedInstance.icon)))
  204. }
  205. items.append(ActionSheetItem(title: NSLocalizedString("_share_", comment: ""), value: 1, image: CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), multiplier: 2, color: NCBrandColor.sharedInstance.icon)))
  206. let itemDelete = ActionSheetItem(title: NSLocalizedString("_delete_", comment: ""), value: 2, image: CCGraphics.changeThemingColorImage(UIImage.init(named: "trash"), multiplier: 2, color: UIColor.red))
  207. itemDelete.customAppearance = appearanceDelete
  208. items.append(itemDelete)
  209. items.append(ActionSheetCancelButton(title: NSLocalizedString("_cancel_", comment: "")))
  210. actionSheet = ActionSheet(items: items) { sheet, item in
  211. if item.value as? Int == 0 {
  212. if metadata.directory {
  213. NCManageDatabase.sharedInstance.setDirectory(serverUrl: CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)!, offline: false)
  214. } else {
  215. NCManageDatabase.sharedInstance.setLocalFile(fileID: metadata.fileID, offline: false)
  216. }
  217. self.loadDatasource()
  218. }
  219. if item.value as? Int == 1 { self.appDelegate.activeMain.openWindowShare(metadata) }
  220. if item.value as? Int == 2 { self.deleteItem(with: metadata, sender: sender) }
  221. if item is ActionSheetCancelButton { print("Cancel buttons has the value `true`") }
  222. }
  223. let headerView = actionSheetHeader(with: metadata)
  224. actionSheet?.headerView = headerView
  225. actionSheet?.headerView?.frame.size.height = 50
  226. actionSheet?.present(in: self, from: sender as! UIButton)
  227. } else {
  228. let buttonPosition:CGPoint = (sender as! UIButton).convert(CGPoint.zero, to:collectionView)
  229. let indexPath = collectionView.indexPathForItem(at: buttonPosition)
  230. collectionView(self.collectionView, didSelectItemAt: indexPath!)
  231. }
  232. }
  233. // MARK: DROP-DOWN-MENU
  234. func dropdownMenu(_ dropdownMenu: DropdownMenu, didSelectRowAt indexPath: IndexPath) {
  235. if dropdownMenu.token == "tapOrderHeaderMenu" {
  236. switch indexPath.section {
  237. case 0: switch indexPath.row {
  238. case 0: CCUtility.setOrderSettings("fileName"); CCUtility.setAscendingSettings(true)
  239. case 1: CCUtility.setOrderSettings("fileName"); CCUtility.setAscendingSettings(false)
  240. case 2: CCUtility.setOrderSettings("date"); CCUtility.setAscendingSettings(false)
  241. case 3: CCUtility.setOrderSettings("date"); CCUtility.setAscendingSettings(true)
  242. case 4: CCUtility.setOrderSettings("size"); CCUtility.setAscendingSettings(true)
  243. case 5: CCUtility.setOrderSettings("size"); CCUtility.setAscendingSettings(false)
  244. default: ()
  245. }
  246. case 1: switch indexPath.row {
  247. case 0:
  248. if datasourceGroupBy == "alphabetic" {
  249. CCUtility.setGroupBySettings("none")
  250. } else {
  251. CCUtility.setGroupBySettings("alphabetic")
  252. }
  253. case 1:
  254. if datasourceGroupBy == "typefile" {
  255. CCUtility.setGroupBySettings("none")
  256. } else {
  257. CCUtility.setGroupBySettings("typefile")
  258. }
  259. case 2:
  260. if datasourceGroupBy == "date" {
  261. CCUtility.setGroupBySettings("none")
  262. } else {
  263. CCUtility.setGroupBySettings("date")
  264. }
  265. default: ()
  266. }
  267. case 2: if datasourceDirectoryOnTop {
  268. CCUtility.setDirectoryOnTop(false)
  269. } else {
  270. CCUtility.setDirectoryOnTop(true)
  271. }
  272. default: ()
  273. }
  274. datasourceAscending = CCUtility.getAscendingSettings()
  275. datasourceSorted = CCUtility.getOrderSettings()
  276. datasourceGroupBy = CCUtility.getGroupBySettings()
  277. datasourceDirectoryOnTop = CCUtility.getDirectoryOnTop()
  278. loadDatasource()
  279. }
  280. if dropdownMenu.token == "tapMoreHeaderMenu" {
  281. }
  282. if dropdownMenu.token == "tapMoreHeaderMenuSelect" {
  283. }
  284. }
  285. // MARK: NC API
  286. func downloadThumbnail(with tableMetadata: tableMetadata, indexPath: IndexPath) {
  287. let ocNetworking = OCnetworking.init(delegate: self, metadataNet: nil, withUser: appDelegate.activeUser, withUserID: appDelegate.activeUserID, withPassword: appDelegate.activePassword, withUrl: appDelegate.activeUrl)
  288. ocNetworking?.downloadPreviewTrash(withFileID: tableMetadata.fileID, fileName: tableMetadata.fileName, completion: { (message, errorCode) in
  289. if errorCode == 0 && CCUtility.fileProviderStorageIconExists(tableMetadata.fileID, fileNameView: tableMetadata.fileName) {
  290. self.collectionView.reloadItems(at: [indexPath])
  291. }
  292. })
  293. }
  294. func deleteItem(with metadata: tableMetadata, sender: Any) {
  295. var items = [ActionSheetItem]()
  296. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  297. return
  298. }
  299. guard let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == serverUrl", appDelegate.activeAccount, serverUrl)) else {
  300. return
  301. }
  302. items.append(ActionSheetDangerButton(title: NSLocalizedString("_delete_", comment: "")))
  303. items.append(ActionSheetCancelButton(title: NSLocalizedString("_cancel_", comment: "")))
  304. actionSheet = ActionSheet(items: items) { sheet, item in
  305. if item is ActionSheetDangerButton {
  306. NCMainCommon.sharedInstance.deleteFile(metadatas: [metadata], e2ee: tableDirectory.e2eEncrypted, serverUrl: serverUrl, folderFileID: tableDirectory.fileID) { (errorCode, message) in
  307. self.loadDatasource()
  308. }
  309. }
  310. if item is ActionSheetCancelButton { print("Cancel buttons has the value `true`") }
  311. }
  312. let headerView = actionSheetHeader(with: metadata)
  313. actionSheet?.headerView = headerView
  314. actionSheet?.headerView?.frame.size.height = 50
  315. actionSheet?.present(in: self, from: sender as! UIButton)
  316. }
  317. // MARK: DATASOURCE
  318. @objc func loadDatasource() {
  319. var fileIDs = [String]()
  320. sectionDatasource = CCSectionDataSourceMetadata()
  321. if directoryID == "" {
  322. if let directories = NCManageDatabase.sharedInstance.getTablesDirectory(predicate: NSPredicate(format: "account == %@ AND offline == true", appDelegate.activeAccount), sorted: "serverUrl", ascending: true) {
  323. for directory: tableDirectory in directories {
  324. fileIDs.append(directory.fileID)
  325. }
  326. }
  327. if let files = NCManageDatabase.sharedInstance.getTableLocalFiles(predicate: NSPredicate(format: "account == %@ AND offline == true", appDelegate.activeAccount), sorted: "fileName", ascending: true) {
  328. for file: tableLocalFile in files {
  329. fileIDs.append(file.fileID)
  330. }
  331. }
  332. if let metadatas = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "account == %@ AND fileID IN %@", appDelegate.activeAccount, fileIDs), sorted: datasourceSorted, ascending: datasourceAscending) {
  333. sectionDatasource = CCSectionMetadata.creataDataSourseSectionMetadata(metadatas, listProgressMetadata: nil, groupByField: datasourceGroupBy, filterFileID: nil, filterTypeFileImage: false, filterTypeFileVideo: false, activeAccount: appDelegate.activeAccount)
  334. }
  335. } else {
  336. if let metadatas = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "account == %@ AND directoryID == %@", appDelegate.activeAccount, directoryID), sorted: datasourceSorted, ascending: datasourceAscending) {
  337. sectionDatasource = CCSectionMetadata.creataDataSourseSectionMetadata(metadatas, listProgressMetadata: nil, groupByField: datasourceGroupBy, filterFileID: nil, filterTypeFileImage: false, filterTypeFileVideo: false, activeAccount: appDelegate.activeAccount)
  338. }
  339. }
  340. self.refreshControl.endRefreshing()
  341. collectionView.reloadData()
  342. }
  343. // MARK: COLLECTIONVIEW METHODS
  344. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  345. if (indexPath.section == 0) {
  346. if kind == UICollectionView.elementKindSectionHeader {
  347. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCOfflineSectionHeaderMenu
  348. if collectionView.collectionViewLayout == gridLayout {
  349. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  350. } else {
  351. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  352. }
  353. header.delegate = self
  354. header.setStatusButton(count: sectionDatasource.allFileID.count)
  355. header.setTitleOrder(datasourceSorted: datasourceSorted, datasourceAscending: datasourceAscending)
  356. if datasourceGroupBy == "none" {
  357. header.labelSection.isHidden = true
  358. header.labelSectionHeightConstraint.constant = 0
  359. } else {
  360. header.labelSection.isHidden = false
  361. header.setTitleLabel(sectionDatasource: sectionDatasource, section: indexPath.section)
  362. header.labelSectionHeightConstraint.constant = sectionHeaderHeight
  363. }
  364. return header
  365. } else {
  366. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "footer", for: indexPath) as! NCOfflineFooter
  367. footer.setTitleLabel(sectionDatasource: sectionDatasource)
  368. return footer
  369. }
  370. } else {
  371. if kind == UICollectionView.elementKindSectionHeader {
  372. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeader", for: indexPath) as! NCOfflineSectionHeader
  373. header.setTitleLabel(sectionDatasource: sectionDatasource, section: indexPath.section)
  374. return header
  375. } else {
  376. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "footer", for: indexPath) as! NCOfflineFooter
  377. footer.setTitleLabel(sectionDatasource: sectionDatasource)
  378. return footer
  379. }
  380. }
  381. }
  382. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  383. if section == 0 {
  384. if datasourceGroupBy == "none" {
  385. return CGSize(width: collectionView.frame.width, height: headerMenuHeight)
  386. } else {
  387. return CGSize(width: collectionView.frame.width, height: headerMenuHeight + sectionHeaderHeight)
  388. }
  389. } else {
  390. return CGSize(width: collectionView.frame.width, height: sectionHeaderHeight)
  391. }
  392. }
  393. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  394. let sections = sectionDatasource.sectionArrayRow.allKeys.count
  395. if (section == sections - 1) {
  396. return CGSize(width: collectionView.frame.width, height: footerHeight)
  397. } else {
  398. return CGSize(width: collectionView.frame.width, height: 0)
  399. }
  400. }
  401. func numberOfSections(in collectionView: UICollectionView) -> Int {
  402. let sections = sectionDatasource.sectionArrayRow.allKeys.count
  403. return sections
  404. }
  405. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  406. let key = sectionDatasource.sections.object(at: section)
  407. let datasource = sectionDatasource.sectionArrayRow.object(forKey: key) as! [tableMetadata]
  408. return datasource.count
  409. }
  410. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  411. var image: UIImage?
  412. guard let metadata = NCMainCommon.sharedInstance.getMetadataFromSectionDataSourceIndexPath(indexPath, sectionDataSource: sectionDatasource) else {
  413. return collectionView.dequeueReusableCell(withReuseIdentifier: "cell-list", for: indexPath) as! NCOfflineListCell
  414. }
  415. if metadata.iconName.count > 0 {
  416. image = UIImage.init(named: metadata.iconName)
  417. } else {
  418. image = UIImage.init(named: "file")
  419. }
  420. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconFileID(metadata.fileID, fileNameView: metadata.fileName)) {
  421. image = UIImage.init(contentsOfFile: CCUtility.getDirectoryProviderStorageIconFileID(metadata.fileID, fileNameView: metadata.fileName))
  422. } else {
  423. if metadata.thumbnailExists && !CCUtility.fileProviderStorageIconExists(metadata.fileID, fileNameView: metadata.fileName) {
  424. downloadThumbnail(with: metadata, indexPath: indexPath)
  425. }
  426. }
  427. if collectionView.collectionViewLayout == listLayout {
  428. // LIST
  429. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell-list", for: indexPath) as! NCOfflineListCell
  430. cell.delegate = self
  431. cell.fileID = metadata.fileID
  432. cell.indexPath = indexPath
  433. cell.labelTitle.text = metadata.fileNameView
  434. if metadata.directory {
  435. cell.imageItem.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  436. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date)
  437. } else {
  438. cell.imageItem.image = image
  439. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date) + " " + CCUtility.transformedSize(metadata.size)
  440. }
  441. if isEditMode {
  442. cell.imageItemLeftConstraint.constant = 45
  443. cell.imageSelect.isHidden = false
  444. if selectFileID.contains(metadata.fileID) {
  445. cell.imageSelect.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedYes"), multiplier: 2, color: NCBrandColor.sharedInstance.brand)
  446. cell.backgroundView = cellBlurEffect(with: cell.bounds)
  447. } else {
  448. cell.imageSelect.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedNo"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  449. cell.backgroundView = nil
  450. }
  451. } else {
  452. cell.imageItemLeftConstraint.constant = 10
  453. cell.imageSelect.isHidden = true
  454. cell.backgroundView = nil
  455. }
  456. // Remove last separator
  457. if collectionView.numberOfItems(inSection: indexPath.section) == indexPath.row + 1 {
  458. cell.separator.isHidden = true
  459. } else {
  460. cell.separator.isHidden = false
  461. }
  462. return cell
  463. } else {
  464. // GRID
  465. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell-grid", for: indexPath) as! NCOfflineGridCell
  466. cell.delegate = self
  467. cell.fileID = metadata.fileID
  468. cell.indexPath = indexPath
  469. cell.labelTitle.text = metadata.fileNameView
  470. if metadata.directory {
  471. cell.imageItem.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  472. } else {
  473. cell.imageItem.image = image
  474. }
  475. if isEditMode {
  476. cell.imageSelect.isHidden = false
  477. if selectFileID.contains(metadata.fileID) {
  478. cell.imageSelect.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedYes"), multiplier: 2, color: UIColor.white)
  479. cell.backgroundView = cellBlurEffect(with: cell.bounds)
  480. } else {
  481. cell.imageSelect.isHidden = true
  482. cell.backgroundView = nil
  483. }
  484. } else {
  485. cell.imageSelect.isHidden = true
  486. cell.backgroundView = nil
  487. }
  488. return cell
  489. }
  490. }
  491. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  492. guard let metadata = NCMainCommon.sharedInstance.getMetadataFromSectionDataSourceIndexPath(indexPath, sectionDataSource: sectionDatasource) else {
  493. return
  494. }
  495. if isEditMode {
  496. if let index = selectFileID.index(of: metadata.fileID) {
  497. selectFileID.remove(at: index)
  498. } else {
  499. selectFileID.append(metadata.fileID)
  500. }
  501. collectionView.reloadItems(at: [indexPath])
  502. return
  503. }
  504. if metadata.directory {
  505. let ncOffline:NCOffline = UIStoryboard(name: "NCOffline", bundle: nil).instantiateInitialViewController() as! NCOffline
  506. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  507. return
  508. }
  509. let serverUrlPush = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)
  510. guard let directoryIDPush = NCManageDatabase.sharedInstance.getDirectoryID(serverUrlPush) else {
  511. return
  512. }
  513. ncOffline.directoryID = directoryIDPush
  514. ncOffline.titleCurrentFolder = metadata.fileNameView
  515. self.navigationController?.pushViewController(ncOffline, animated: true)
  516. } else {
  517. performSegue(withIdentifier: "segueDetail", sender: self)
  518. }
  519. }
  520. // MARK: SEGUE
  521. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  522. }
  523. // MARK: UTILITY
  524. private func cellBlurEffect(with frame: CGRect) -> UIView {
  525. let blurEffect = UIBlurEffect(style: .extraLight)
  526. let blurEffectView = UIVisualEffectView(effect: blurEffect)
  527. blurEffectView.frame = frame
  528. blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
  529. blurEffectView.backgroundColor = NCBrandColor.sharedInstance.brand.withAlphaComponent(0.2)
  530. return blurEffectView
  531. }
  532. private func actionSheetHeader(with metadata: tableMetadata) -> UIView? {
  533. var image: UIImage?
  534. // Header
  535. if metadata.directory {
  536. image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  537. } else if metadata.iconName.count > 0 {
  538. image = UIImage.init(named: metadata.iconName)
  539. } else {
  540. image = UIImage.init(named: "file")
  541. }
  542. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconFileID(metadata.fileID, fileNameView: metadata.fileNameView)) {
  543. image = UIImage.init(contentsOfFile: CCUtility.getDirectoryProviderStorageIconFileID(metadata.fileID, fileNameView: metadata.fileNameView))
  544. }
  545. let headerView = UINib(nibName: "NCActionSheetHeaderView", bundle: nil).instantiate(withOwner: self, options: nil).first as! NCActionSheetHeaderView
  546. headerView.imageItem.image = image
  547. headerView.label.text = metadata.fileNameView
  548. headerView.label.textColor = NCBrandColor.sharedInstance.icon
  549. return headerView
  550. }
  551. }