NCCollectionViewCommon.swift 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886
  1. //
  2. // NCCollectionViewCommon.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 12/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 NCCommunication
  25. class NCCollectionViewCommon: UIViewController, UIGestureRecognizerDelegate, UISearchResultsUpdating, UISearchControllerDelegate, UISearchBarDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  26. @IBOutlet weak var collectionView: UICollectionView!
  27. internal let refreshControl = UIRefreshControl()
  28. internal var searchController: UISearchController?
  29. @objc var serverUrl: String = ""
  30. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  31. internal var isEditMode = false
  32. internal var selectOcId: [String] = []
  33. internal var metadatasSource: [tableMetadata] = []
  34. internal var metadataFolder: tableMetadata?
  35. internal var metadataPush: tableMetadata?
  36. internal var dataSource: NCDataSource?
  37. internal var richWorkspaceText: String?
  38. internal var layout = ""
  39. internal var groupBy = ""
  40. internal var titleButton = ""
  41. internal var itemForLine = 0
  42. private var autoUploadFileName = ""
  43. private var autoUploadDirectory = ""
  44. private var listLayout: NCListLayout!
  45. private var gridLayout: NCGridLayout!
  46. private let headerHeight: CGFloat = 50
  47. private var headerRichWorkspaceHeight: CGFloat = 0
  48. private let footerHeight: CGFloat = 50
  49. private var timerInputSearch: Timer?
  50. internal var literalSearch: String?
  51. internal var isSearching: Bool = false
  52. internal var isReloadDataSourceNetworkInProgress: Bool = false
  53. // DECLARE
  54. internal var layoutKey = ""
  55. internal var titleCurrentFolder = ""
  56. internal var enableSearchBar: Bool = false
  57. internal var DZNimage: UIImage?
  58. internal var DZNtitle: String = ""
  59. internal var DZNdescription: String = ""
  60. required init?(coder aDecoder: NSCoder) {
  61. super.init(coder: aDecoder)
  62. }
  63. override func viewDidLoad() {
  64. super.viewDidLoad()
  65. self.navigationController?.navigationBar.prefersLargeTitles = true
  66. if enableSearchBar {
  67. searchController = UISearchController(searchResultsController: nil)
  68. searchController?.searchResultsUpdater = self
  69. self.navigationItem.searchController = searchController
  70. searchController?.dimsBackgroundDuringPresentation = false
  71. searchController?.delegate = self
  72. searchController?.searchBar.delegate = self
  73. }
  74. // Cell
  75. collectionView.register(UINib.init(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  76. collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  77. // Header
  78. collectionView.register(UINib.init(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  79. // Footer
  80. collectionView.register(UINib.init(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  81. collectionView.alwaysBounceVertical = true
  82. listLayout = NCListLayout()
  83. gridLayout = NCGridLayout()
  84. // Refresh Control
  85. collectionView.addSubview(refreshControl)
  86. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  87. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brandElement
  88. refreshControl.addTarget(self, action: #selector(reloadDataSourceNetwork), for: .valueChanged)
  89. // empty Data Source
  90. self.collectionView.emptyDataSetDelegate = self
  91. self.collectionView.emptyDataSetSource = self
  92. // 3D Touch peek and pop
  93. if traitCollection.forceTouchCapability == .available {
  94. registerForPreviewing(with: self, sourceView: view)
  95. }
  96. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil)
  97. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: k_notificationCenter_reloadDataSource), object: nil)
  98. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_deleteFile), object: nil)
  99. NotificationCenter.default.addObserver(self, selector: #selector(moveFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_moveFile), object: nil)
  100. NotificationCenter.default.addObserver(self, selector: #selector(copyFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_copyFile), object: nil)
  101. NotificationCenter.default.addObserver(self, selector: #selector(renameFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_renameFile), object: nil)
  102. NotificationCenter.default.addObserver(self, selector: #selector(createFolder(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_createFolder), object: nil)
  103. NotificationCenter.default.addObserver(self, selector: #selector(favoriteFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_favoriteFile), object: nil)
  104. NotificationCenter.default.addObserver(self, selector: #selector(downloadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadStartFile), object: nil)
  105. NotificationCenter.default.addObserver(self, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadedFile), object: nil)
  106. NotificationCenter.default.addObserver(self, selector: #selector(downloadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadCancelFile), object: nil)
  107. NotificationCenter.default.addObserver(self, selector: #selector(uploadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadStartFile), object: nil)
  108. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadedFile), object: nil)
  109. NotificationCenter.default.addObserver(self, selector: #selector(uploadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadCancelFile), object: nil)
  110. NotificationCenter.default.addObserver(self, selector: #selector(triggerProgressTask(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_progressTask), object:nil)
  111. changeTheming()
  112. }
  113. override func viewWillAppear(_ animated: Bool) {
  114. super.viewWillAppear(animated)
  115. appDelegate.activeViewController = self
  116. self.navigationItem.title = titleCurrentFolder
  117. // get auto upload folder
  118. autoUploadFileName = NCManageDatabase.sharedInstance.getAccountAutoUploadFileName()
  119. autoUploadDirectory = NCManageDatabase.sharedInstance.getAccountAutoUploadDirectory(urlBase: appDelegate.urlBase, account: appDelegate.account)
  120. (layout, _, _, groupBy, _, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: layoutKey)
  121. gridLayout.itemForLine = CGFloat(itemForLine)
  122. if layout == k_layout_list {
  123. collectionView?.collectionViewLayout = listLayout
  124. } else {
  125. collectionView?.collectionViewLayout = gridLayout
  126. }
  127. setNavigationItem()
  128. reloadDataSource()
  129. }
  130. override func viewDidAppear(_ animated: Bool) {
  131. super.viewDidAppear(animated)
  132. reloadDataSourceNetwork()
  133. }
  134. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  135. super.viewWillTransition(to: size, with: coordinator)
  136. coordinator.animate(alongsideTransition: nil) { _ in
  137. self.collectionView?.collectionViewLayout.invalidateLayout()
  138. }
  139. }
  140. func setNavigationItem() {
  141. if isEditMode {
  142. self.navigationItem.rightBarButtonItem = UIBarButtonItem(image: UIImage.init(named: "navigationMore"), style: .plain, target: self, action:#selector(tapSelectMenu(sender:)))
  143. self.navigationItem.leftBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_cancel_", comment: ""), style: .plain, target: self, action: #selector(tapSelect(sender:)))
  144. } else {
  145. self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_select_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(tapSelect(sender:)))
  146. self.navigationItem.leftBarButtonItem = nil
  147. }
  148. }
  149. // MARK: - NotificationCenter
  150. @objc func changeTheming() {
  151. appDelegate.changeTheming(self, tableView: nil, collectionView: collectionView, form: false)
  152. }
  153. @objc func deleteFile(_ notification: NSNotification) {
  154. if self.view?.window == nil { return }
  155. if let userInfo = notification.userInfo as NSDictionary? {
  156. if let metadata = userInfo["metadata"] as? tableMetadata, let onlyLocal = userInfo["onlyLocal"] as? Bool {
  157. if onlyLocal {
  158. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  159. let indexPath = IndexPath(row: row, section: 0)
  160. collectionView?.reloadItems(at: [indexPath])
  161. }
  162. } else {
  163. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  164. let indexPath = IndexPath(row: row, section: 0)
  165. collectionView?.performBatchUpdates({
  166. collectionView?.deleteItems(at: [indexPath])
  167. }, completion: { (_) in
  168. self.collectionView?.reloadData()
  169. })
  170. }
  171. }
  172. }
  173. }
  174. }
  175. @objc func moveFile(_ notification: NSNotification) {
  176. if self.view?.window == nil { return }
  177. if let userInfo = notification.userInfo as NSDictionary? {
  178. if let metadata = userInfo["metadata"] as? tableMetadata, let metadataNew = userInfo["metadataNew"] as? tableMetadata {
  179. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  180. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  181. let indexPath = IndexPath(row: row, section: 0)
  182. collectionView?.performBatchUpdates({
  183. collectionView?.deleteItems(at: [indexPath])
  184. }, completion: { (_) in
  185. self.collectionView?.reloadData()
  186. })
  187. }
  188. } else if metadataNew.serverUrl == serverUrl && metadata.account == appDelegate.account {
  189. if let row = dataSource?.addMetadata(metadataNew) {
  190. let indexPath = IndexPath(row: row, section: 0)
  191. collectionView?.performBatchUpdates({
  192. collectionView?.insertItems(at: [indexPath])
  193. }, completion: { (_) in
  194. self.collectionView?.reloadData()
  195. })
  196. }
  197. }
  198. }
  199. }
  200. }
  201. @objc func copyFile(_ notification: NSNotification) {
  202. if self.view?.window == nil { return }
  203. if let userInfo = notification.userInfo as NSDictionary? {
  204. if let serverUrlTo = userInfo["serverUrlTo"] as? String {
  205. if serverUrlTo == self.serverUrl {
  206. self.reloadDataSource()
  207. }
  208. }
  209. }
  210. }
  211. @objc func renameFile(_ notification: NSNotification) {
  212. if self.view?.window == nil { return }
  213. if let userInfo = notification.userInfo as NSDictionary? {
  214. if let metadata = userInfo["metadata"] as? tableMetadata {
  215. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  216. let indexPath = IndexPath(row: row, section: 0)
  217. collectionView?.performBatchUpdates({
  218. collectionView?.reloadItems(at: [indexPath])
  219. }, completion: { (_) in
  220. self.collectionView?.reloadData()
  221. })
  222. }
  223. }
  224. }
  225. }
  226. @objc func createFolder(_ notification: NSNotification) {
  227. if self.view?.window == nil { return }
  228. if let userInfo = notification.userInfo as NSDictionary? {
  229. if let metadata = userInfo["metadata"] as? tableMetadata {
  230. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  231. if let row = dataSource?.addMetadata(metadata) {
  232. let indexPath = IndexPath(row: row, section: 0)
  233. collectionView?.performBatchUpdates({
  234. collectionView?.insertItems(at: [indexPath])
  235. }, completion: { (_) in
  236. self.collectionView?.reloadData()
  237. })
  238. }
  239. }
  240. }
  241. } else {
  242. self.reloadDataSourceNetwork()
  243. }
  244. }
  245. @objc func favoriteFile(_ notification: NSNotification) {
  246. if self.view?.window == nil { return }
  247. if let userInfo = notification.userInfo as NSDictionary? {
  248. if let metadata = userInfo["metadata"] as? tableMetadata {
  249. if dataSource?.getIndexMetadata(ocId: metadata.ocId) != nil {
  250. self.reloadDataSource()
  251. }
  252. }
  253. }
  254. }
  255. @objc func downloadStartFile(_ notification: NSNotification) {
  256. if self.view?.window == nil { return }
  257. if let userInfo = notification.userInfo as NSDictionary? {
  258. if let metadata = userInfo["metadata"] as? tableMetadata {
  259. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  260. let indexPath = IndexPath(row: row, section: 0)
  261. collectionView?.reloadItems(at: [indexPath])
  262. }
  263. }
  264. }
  265. }
  266. @objc func downloadedFile(_ notification: NSNotification) {
  267. if self.view?.window == nil { return }
  268. if let userInfo = notification.userInfo as NSDictionary? {
  269. if let metadata = userInfo["metadata"] as? tableMetadata, let _ = userInfo["errorCode"] as? Int {
  270. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  271. let indexPath = IndexPath(row: row, section: 0)
  272. collectionView?.reloadItems(at: [indexPath])
  273. }
  274. }
  275. }
  276. }
  277. @objc func downloadCancelFile(_ notification: NSNotification) {
  278. if self.view?.window == nil { return }
  279. if let userInfo = notification.userInfo as NSDictionary? {
  280. if let metadata = userInfo["metadata"] as? tableMetadata {
  281. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  282. let indexPath = IndexPath(row: row, section: 0)
  283. collectionView?.reloadItems(at: [indexPath])
  284. }
  285. }
  286. }
  287. }
  288. @objc func uploadStartFile(_ notification: NSNotification) {
  289. if self.view?.window == nil { return }
  290. if let userInfo = notification.userInfo as NSDictionary? {
  291. if let metadata = userInfo["metadata"] as? tableMetadata {
  292. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  293. if let row = dataSource?.addMetadata(metadata) {
  294. let indexPath = IndexPath(row: row, section: 0)
  295. collectionView?.performBatchUpdates({
  296. collectionView?.insertItems(at: [indexPath])
  297. }, completion: { (_) in
  298. self.collectionView?.reloadData()
  299. })
  300. }
  301. }
  302. }
  303. }
  304. }
  305. @objc func uploadedFile(_ notification: NSNotification) {
  306. if self.view?.window == nil { return }
  307. if let userInfo = notification.userInfo as NSDictionary? {
  308. if let metadata = userInfo["metadata"] as? tableMetadata, let ocIdTemp = userInfo["ocIdTemp"] as? String, let _ = userInfo["errorCode"] as? Int {
  309. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  310. dataSource?.reloadMetadata(ocId: metadata.ocId, ocIdTemp: ocIdTemp)
  311. collectionView?.reloadData()
  312. }
  313. }
  314. }
  315. }
  316. @objc func uploadCancelFile(_ notification: NSNotification) {
  317. if self.view?.window == nil { return }
  318. if let userInfo = notification.userInfo as NSDictionary? {
  319. if let metadata = userInfo["metadata"] as? tableMetadata {
  320. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  321. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  322. let indexPath = IndexPath(row: row, section: 0)
  323. collectionView?.performBatchUpdates({
  324. collectionView?.deleteItems(at: [indexPath])
  325. }, completion: { (_) in
  326. self.collectionView?.reloadData()
  327. })
  328. } else {
  329. self.reloadDataSource()
  330. }
  331. }
  332. }
  333. }
  334. }
  335. @objc func triggerProgressTask(_ notification: NSNotification) {
  336. if self.view?.window == nil { return }
  337. if let userInfo = notification.userInfo as NSDictionary? {
  338. if let ocId = userInfo["ocId"] as? String {
  339. let _ = userInfo["account"] as? String ?? ""
  340. let _ = userInfo["serverUrl"] as? String ?? ""
  341. let progressNumber = userInfo["progress"] as? NSNumber ?? 0
  342. let progress = progressNumber.floatValue
  343. let status = userInfo["status"] as? Int ?? Int(k_metadataStatusNormal)
  344. let totalBytes = userInfo["totalBytes"] as? Double ?? 0
  345. let totalBytesExpected = userInfo["totalBytesExpected"] as? Double ?? 0
  346. appDelegate.listProgressMetadata.setObject([progress as NSNumber, totalBytes as NSNumber, totalBytesExpected as NSNumber], forKey: userInfo["ocId"] as? NSString ?? "")
  347. if let index = dataSource?.getIndexMetadata(ocId: ocId) {
  348. if let cell = collectionView?.cellForItem(at: IndexPath(row: index, section: 0)) {
  349. if cell is NCListCell {
  350. let cell = cell as! NCListCell
  351. if progress > 0 {
  352. cell.progressView?.isHidden = false
  353. cell.progressView?.progress = progress
  354. cell.setButtonMore(named: "stop")
  355. if status == k_metadataStatusInDownload {
  356. cell.labelInfo.text = CCUtility.transformedSize(totalBytesExpected) + " - ↓ " + CCUtility.transformedSize(totalBytes)
  357. } else if status == k_metadataStatusInUpload {
  358. cell.labelInfo.text = CCUtility.transformedSize(totalBytesExpected) + " - ↑ " + CCUtility.transformedSize(totalBytes)
  359. }
  360. }
  361. } else if cell is NCGridCell {
  362. let cell = cell as! NCGridCell
  363. if progress > 0 {
  364. cell.progressView.isHidden = false
  365. cell.progressView.progress = progress
  366. cell.setButtonMore(named: "stop")
  367. }
  368. }
  369. }
  370. }
  371. }
  372. }
  373. }
  374. // MARK: DZNEmpty
  375. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  376. return NCBrandColor.sharedInstance.backgroundView
  377. }
  378. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  379. if searchController?.isActive ?? false {
  380. return CCGraphics.changeThemingColorImage(UIImage.init(named: "search"), width: 300, height: 300, color: NCBrandColor.sharedInstance.yellowFavorite)
  381. }
  382. return DZNimage
  383. }
  384. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  385. var text = "\n"+NSLocalizedString(DZNtitle, comment: "")
  386. if searchController?.isActive ?? false {
  387. if isReloadDataSourceNetworkInProgress {
  388. text = "\n"+NSLocalizedString("_search_in_progress_", comment: "")
  389. } else {
  390. text = "\n"+NSLocalizedString("_search_no_record_found_", comment: "")
  391. }
  392. }
  393. let attributes = [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: 20), NSAttributedString.Key.foregroundColor: UIColor.gray]
  394. return NSAttributedString.init(string: text, attributes: attributes)
  395. }
  396. func description(forEmptyDataSet scrollView: UIScrollView!) -> NSAttributedString! {
  397. var text = "\n"+NSLocalizedString(DZNdescription, comment: "")
  398. if searchController?.isActive ?? false {
  399. text = "\n"+NSLocalizedString("_search_instruction_", comment: "")
  400. }
  401. let attributes = [NSAttributedString.Key.font: UIFont.systemFont(ofSize: 14), NSAttributedString.Key.foregroundColor: UIColor.lightGray]
  402. return NSAttributedString.init(string: text, attributes: attributes)
  403. }
  404. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  405. return true
  406. }
  407. // MARK: SEARCH
  408. func updateSearchResults(for searchController: UISearchController) {
  409. timerInputSearch?.invalidate()
  410. timerInputSearch = Timer.scheduledTimer(timeInterval: 1.5, target: self, selector: #selector(reloadDataSourceNetwork), userInfo: nil, repeats: false)
  411. literalSearch = searchController.searchBar.text
  412. collectionView?.reloadData()
  413. }
  414. func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
  415. isSearching = true
  416. metadatasSource.removeAll()
  417. reloadDataSource()
  418. }
  419. func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
  420. isSearching = false
  421. literalSearch = ""
  422. reloadDataSource()
  423. }
  424. // MARK: TAP EVENT
  425. @objc func tapSelect(sender: Any) {
  426. isEditMode = !isEditMode
  427. selectOcId.removeAll()
  428. setNavigationItem()
  429. self.collectionView.reloadData()
  430. }
  431. func tapSwitchHeader(sender: Any) {
  432. if collectionView.collectionViewLayout == gridLayout {
  433. // list layout
  434. UIView.animate(withDuration: 0.0, animations: {
  435. self.collectionView.collectionViewLayout.invalidateLayout()
  436. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  437. self.collectionView.reloadData()
  438. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  439. })
  440. })
  441. layout = k_layout_list
  442. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  443. } else {
  444. // grid layout
  445. UIView.animate(withDuration: 0.0, animations: {
  446. self.collectionView.collectionViewLayout.invalidateLayout()
  447. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  448. self.collectionView.reloadData()
  449. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  450. })
  451. })
  452. layout = k_layout_grid
  453. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  454. }
  455. }
  456. func tapOrderHeader(sender: Any) {
  457. let sortMenu = NCSortMenu()
  458. sortMenu.toggleMenu(viewController: self, key: layoutKey, sortButton: sender as? UIButton, serverUrl: serverUrl)
  459. }
  460. @objc func tapSelectMenu(sender: Any) {
  461. guard let tabBarController = self.tabBarController else { return }
  462. toggleMoreSelect(viewController: tabBarController, selectOcId: selectOcId)
  463. }
  464. func tapMoreHeader(sender: Any) { }
  465. func tapMoreListItem(with objectId: String, namedButtonMore: String, sender: Any) {
  466. tapMoreGridItem(with: objectId, namedButtonMore: namedButtonMore, sender: sender)
  467. }
  468. func tapShareListItem(with objectId: String, sender: Any) {
  469. guard let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(objectId) else { return }
  470. NCMainCommon.shared.openShare(ViewController: self, metadata: metadata, indexPage: 2)
  471. }
  472. func tapMoreGridItem(with objectId: String, namedButtonMore: String, sender: Any) {
  473. guard let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(objectId) else { return }
  474. guard let tabBarController = self.tabBarController else { return }
  475. if namedButtonMore == "more" {
  476. toggleMoreMenu(viewController: tabBarController, metadata: metadata)
  477. } else if namedButtonMore == "stop" {
  478. NCNetworking.shared.cancelTransferMetadata(metadata) { }
  479. }
  480. }
  481. func tapRichWorkspace(sender: Any) {
  482. if let navigationController = UIStoryboard(name: "NCViewerRichWorkspace", bundle: nil).instantiateInitialViewController() as? UINavigationController {
  483. if let viewerRichWorkspace = navigationController.topViewController as? NCViewerRichWorkspace {
  484. viewerRichWorkspace.richWorkspaceText = richWorkspaceText ?? ""
  485. viewerRichWorkspace.serverUrl = serverUrl
  486. navigationController.modalPresentationStyle = .fullScreen
  487. self.present(navigationController, animated: true, completion: nil)
  488. }
  489. }
  490. }
  491. func longPressListItem(with objectId: String, gestureRecognizer: UILongPressGestureRecognizer) {
  492. }
  493. func longPressGridItem(with objectId: String, gestureRecognizer: UILongPressGestureRecognizer) {
  494. }
  495. func longPressMoreListItem(with objectId: String, namedButtonMore: String, gestureRecognizer: UILongPressGestureRecognizer) {
  496. }
  497. func longPressMoreGridItem(with objectId: String, namedButtonMore: String, gestureRecognizer: UILongPressGestureRecognizer) {
  498. }
  499. // MARK: SEGUE
  500. @objc func segue(metadata: tableMetadata) {
  501. self.metadataPush = metadata
  502. performSegue(withIdentifier: "segueDetail", sender: self)
  503. }
  504. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  505. let photoDataSource: NSMutableArray = []
  506. for metadata in (dataSource?.metadatas ?? [tableMetadata]()) {
  507. if metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video {
  508. photoDataSource.add(metadata)
  509. }
  510. }
  511. if let segueNavigationController = segue.destination as? UINavigationController {
  512. if let segueViewController = segueNavigationController.topViewController as? NCDetailViewController {
  513. segueViewController.metadata = metadataPush
  514. }
  515. }
  516. }
  517. // MARK: - NC API & Algorithm
  518. @objc func reloadDataSource() {
  519. let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, serverUrl))
  520. richWorkspaceText = directory?.richWorkspace
  521. }
  522. @objc func reloadDataSourceNetwork() { }
  523. @objc func networkSearch() {
  524. if literalSearch?.count ?? 0 > 1 {
  525. isReloadDataSourceNetworkInProgress = true
  526. collectionView?.reloadData()
  527. NCNetworking.shared.searchFiles(urlBase: appDelegate.urlBase, user: appDelegate.user, literal: literalSearch!) { (account, metadatas, errorCode, errorDescription) in
  528. if self.searchController?.isActive ?? false && errorCode == 0 {
  529. self.metadatasSource = metadatas!
  530. }
  531. self.isReloadDataSourceNetworkInProgress = false
  532. self.reloadDataSource()
  533. }
  534. }
  535. }
  536. }
  537. // MARK: - 3D Touch peek and pop
  538. extension NCCollectionViewCommon: UIViewControllerPreviewingDelegate {
  539. func previewingContext(_ previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
  540. guard let point = collectionView?.convert(location, from: collectionView?.superview) else { return nil }
  541. guard let indexPath = collectionView?.indexPathForItem(at: point) else { return nil }
  542. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return nil }
  543. guard let viewController = UIStoryboard(name: "CCPeekPop", bundle: nil).instantiateViewController(withIdentifier: "PeekPopImagePreview") as? CCPeekPop else { return nil }
  544. viewController.metadata = metadata
  545. if layout == k_layout_grid {
  546. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCGridCell else { return nil }
  547. previewingContext.sourceRect = cell.frame
  548. viewController.imageFile = cell.imageItem.image
  549. } else {
  550. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCListCell else { return nil }
  551. previewingContext.sourceRect = cell.frame
  552. viewController.imageFile = cell.imageItem.image
  553. }
  554. viewController.showOpenIn = true
  555. viewController.showOpenQuickLook = NCUtility.shared.isQuickLookDisplayable(metadata: metadata)
  556. viewController.showShare = false
  557. return viewController
  558. }
  559. func previewingContext(_ previewingContext: UIViewControllerPreviewing, commit viewControllerToCommit: UIViewController) {
  560. guard let indexPath = collectionView?.indexPathForItem(at: previewingContext.sourceRect.origin) else { return }
  561. collectionView(collectionView, didSelectItemAt: indexPath)
  562. }
  563. }
  564. // MARK: - Collection View
  565. extension NCCollectionViewCommon: UICollectionViewDelegate {
  566. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  567. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return }
  568. metadataPush = metadata
  569. if isEditMode {
  570. if let index = selectOcId.firstIndex(of: metadata.ocId) {
  571. selectOcId.remove(at: index)
  572. } else {
  573. selectOcId.append(metadata.ocId)
  574. }
  575. collectionView.reloadItems(at: [indexPath])
  576. return
  577. }
  578. if metadata.e2eEncrypted && !CCUtility.isEnd(toEndEnabled: appDelegate.account) {
  579. NCContentPresenter.shared.messageNotification("_info_", description: "_e2e_goto_settings_for_enable_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.info, errorCode: Int(k_CCErrorE2EENotEnabled), forced: true)
  580. return
  581. }
  582. if metadata.directory {
  583. guard let serverUrlPush = CCUtility.stringAppendServerUrl(metadataPush!.serverUrl, addFileName: metadataPush!.fileName) else { return }
  584. if layoutKey == k_layout_view_favorite {
  585. let ncFavorite:NCFavorite = UIStoryboard(name: "NCFavorite", bundle: nil).instantiateInitialViewController() as! NCFavorite
  586. ncFavorite.serverUrl = serverUrlPush
  587. ncFavorite.titleCurrentFolder = metadataPush!.fileNameView
  588. self.navigationController?.pushViewController(ncFavorite, animated: true)
  589. }
  590. if layoutKey == k_layout_view_offline {
  591. let ncOffline:NCOffline = UIStoryboard(name: "NCOffline", bundle: nil).instantiateInitialViewController() as! NCOffline
  592. ncOffline.serverUrl = serverUrlPush
  593. ncOffline.titleCurrentFolder = metadataPush!.fileNameView
  594. self.navigationController?.pushViewController(ncOffline, animated: true)
  595. }
  596. } else {
  597. if metadata.typeFile == k_metadataTypeFile_document && NCUtility.shared.isDirectEditing(account: metadata.account, contentType: metadata.contentType) != nil {
  598. if NCCommunication.shared.isNetworkReachable() {
  599. performSegue(withIdentifier: "segueDetail", sender: self)
  600. } else {
  601. NCContentPresenter.shared.messageNotification("_info_", description: "_go_online_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.info, errorCode: Int(k_CCErrorOffline), forced: true)
  602. }
  603. return
  604. }
  605. if metadata.typeFile == k_metadataTypeFile_document && NCUtility.shared.isRichDocument(metadata) {
  606. if NCCommunication.shared.isNetworkReachable() {
  607. performSegue(withIdentifier: "segueDetail", sender: self)
  608. } else {
  609. NCContentPresenter.shared.messageNotification("_info_", description: "_go_online_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.info, errorCode: Int(k_CCErrorOffline), forced: true)
  610. }
  611. return
  612. }
  613. if CCUtility.fileProviderStorageExists(metadataPush?.ocId, fileNameView: metadataPush?.fileNameView) {
  614. performSegue(withIdentifier: "segueDetail", sender: self)
  615. } else {
  616. NCNetworking.shared.download(metadata: metadataPush!, selector: selectorLoadFileView) { (_) in }
  617. }
  618. }
  619. }
  620. func collectionViewSelectAll() {
  621. selectOcId.removeAll()
  622. for metadata in metadatasSource {
  623. selectOcId.append(metadata.ocId)
  624. }
  625. collectionView.reloadData()
  626. }
  627. }
  628. extension NCCollectionViewCommon: UICollectionViewDataSource {
  629. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  630. if kind == UICollectionView.elementKindSectionHeader {
  631. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
  632. if collectionView.collectionViewLayout == gridLayout {
  633. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  634. } else {
  635. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  636. }
  637. header.delegate = self
  638. header.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  639. header.separator.backgroundColor = NCBrandColor.sharedInstance.separator
  640. header.setStatusButton(count: dataSource?.metadatas.count ?? 0)
  641. header.setTitleSorted(datasourceTitleButton: titleButton)
  642. header.viewRichWorkspaceHeightConstraint.constant = headerRichWorkspaceHeight
  643. header.setRichWorkspaceText(richWorkspaceText: richWorkspaceText)
  644. return header
  645. } else {
  646. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  647. let info = dataSource?.getFilesInformation()
  648. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  649. return footer
  650. }
  651. }
  652. func numberOfSections(in collectionView: UICollectionView) -> Int {
  653. return 1
  654. }
  655. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  656. return dataSource?.numberOfItemsInSection(section: section) ?? 1
  657. }
  658. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  659. let cell: UICollectionViewCell
  660. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else {
  661. return collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  662. }
  663. if layout == k_layout_grid {
  664. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  665. } else {
  666. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  667. }
  668. let shares = NCManageDatabase.sharedInstance.getTableShares(account: metadata.account, serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  669. NCCollectionCommon.shared.cellForItemAt(indexPath: indexPath, collectionView: collectionView, cell: cell, metadata: metadata, metadataFolder: metadataFolder, serverUrl: metadata.serverUrl, isEditMode: isEditMode, selectocId: selectOcId, autoUploadFileName: autoUploadFileName, autoUploadDirectory: autoUploadDirectory, hideButtonMore: false, downloadThumbnail: true, shares: shares, source: self, dataSource: dataSource)
  670. return cell
  671. }
  672. }
  673. extension NCCollectionViewCommon: UICollectionViewDelegateFlowLayout {
  674. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  675. if richWorkspaceText?.count ?? 0 == 0 {
  676. headerRichWorkspaceHeight = 0
  677. } else {
  678. headerRichWorkspaceHeight = UIScreen.main.bounds.size.height / 4
  679. }
  680. return CGSize(width: collectionView.frame.width, height: headerHeight + headerRichWorkspaceHeight)
  681. }
  682. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  683. return CGSize(width: collectionView.frame.width, height: footerHeight)
  684. }
  685. }