NCCollectionViewCommon.swift 36 KB

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