NCMediaCommandView.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. //
  2. // NCMediaCommandView.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 25/01/24.
  6. // Copyright © 2024 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 UIKit
  24. import NextcloudKit
  25. class NCMediaCommandView: UIView {
  26. @IBOutlet weak var title: UILabel!
  27. @IBOutlet weak var selectButton: UIButton!
  28. @IBOutlet weak var activityIndicator: UIActivityIndicatorView!
  29. @IBOutlet weak var moreButton: UIButton!
  30. var mediaView: NCMedia!
  31. var attributesZoomIn: UIMenuElement.Attributes = []
  32. var attributesZoomOut: UIMenuElement.Attributes = []
  33. let gradient: CAGradientLayer = CAGradientLayer()
  34. override func awakeFromNib() {
  35. super.awakeFromNib()
  36. title.text = ""
  37. selectButton.backgroundColor = .systemGray4.withAlphaComponent(0.6)
  38. selectButton.layer.cornerRadius = 15
  39. selectButton.layer.masksToBounds = true
  40. selectButton.setTitle( NSLocalizedString("_select_", comment: ""), for: .normal)
  41. moreButton.changesSelectionAsPrimaryAction = false
  42. gradient.frame = bounds
  43. gradient.startPoint = CGPoint(x: 0, y: 0.5)
  44. gradient.endPoint = CGPoint(x: 0, y: 1)
  45. gradient.colors = [UIColor.black.withAlphaComponent(UIAccessibility.isReduceTransparencyEnabled ? 0.8 : 0.4).cgColor, UIColor.clear.cgColor]
  46. layer.insertSublayer(gradient, at: 0)
  47. }
  48. override func layoutSublayers(of layer: CALayer) {
  49. super.layoutSublayers(of: layer)
  50. gradient.frame = bounds
  51. }
  52. @IBAction func selectButtonPressed(_ sender: UIButton) {
  53. if mediaView.isEditMode {
  54. setMoreButton()
  55. } else {
  56. setMoreButtonDelete()
  57. }
  58. }
  59. @IBAction func trashButtonPressed(_ sender: UIButton) {
  60. if !mediaView.selectOcId.isEmpty {
  61. let selectOcId = mediaView.selectOcId
  62. var title = NSLocalizedString("_delete_", comment: "")
  63. if selectOcId.count > 1 {
  64. title = NSLocalizedString("_delete_selected_files_", comment: "")
  65. }
  66. let alertController = UIAlertController(
  67. title: title,
  68. message: "",
  69. preferredStyle: .alert)
  70. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (_: UIAlertAction) in
  71. self.setMoreButton()
  72. Task {
  73. var error = NKError()
  74. var ocIds: [String] = []
  75. for ocId in selectOcId where error == .success {
  76. if let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  77. error = await NCNetworking.shared.deleteMetadata(metadata, onlyLocalCache: false)
  78. if error == .success {
  79. ocIds.append(metadata.ocId)
  80. }
  81. }
  82. }
  83. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDeleteFile, userInfo: ["ocId": ocIds, "onlyLocalCache": false, "error": error])
  84. }
  85. })
  86. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (_: UIAlertAction) in })
  87. mediaView.present(alertController, animated: true, completion: { })
  88. }
  89. }
  90. func setMoreButton() {
  91. moreButton.backgroundColor = .systemGray4.withAlphaComponent(0.6)
  92. moreButton.layer.cornerRadius = 15
  93. moreButton.layer.masksToBounds = true
  94. moreButton.showsMenuAsPrimaryAction = true
  95. moreButton.configuration = UIButton.Configuration.plain()
  96. let image = UIImage(systemName: "ellipsis")
  97. moreButton.setImage(image, for: .normal)
  98. mediaView.isEditMode = false
  99. mediaView.selectOcId.removeAll()
  100. mediaView.collectionView?.reloadData()
  101. selectButton.setTitle( NSLocalizedString("_select_", comment: ""), for: .normal)
  102. }
  103. func setMoreButtonDelete() {
  104. moreButton.backgroundColor = .clear
  105. moreButton.showsMenuAsPrimaryAction = false
  106. moreButton.configuration = UIButton.Configuration.plain()
  107. let image = UIImage(systemName: "trash.circle", withConfiguration: UIImage.SymbolConfiguration(pointSize: 25))?.withTintColor(.red, renderingMode: .alwaysOriginal)
  108. moreButton.setImage(image, for: .normal)
  109. mediaView.isEditMode = true
  110. selectButton.setTitle( NSLocalizedString("_cancel_", comment: ""), for: .normal)
  111. }
  112. func createMenu() {
  113. if let itemForLine = mediaView?.layout.itemForLine, let maxImageGrid = mediaView?.maxImageGrid {
  114. if itemForLine >= maxImageGrid - 1 {
  115. self.attributesZoomIn = []
  116. self.attributesZoomOut = .disabled
  117. } else if itemForLine <= 1 {
  118. self.attributesZoomIn = .disabled
  119. self.attributesZoomOut = []
  120. } else {
  121. self.attributesZoomIn = []
  122. self.attributesZoomOut = []
  123. }
  124. }
  125. let topAction = UIMenu(title: "", options: .displayInline, children: [
  126. UIMenu(title: NSLocalizedString("_zoom_", comment: ""), children: [
  127. UIAction(title: NSLocalizedString("_zoom_out_", comment: ""), image: UIImage(systemName: "minus.magnifyingglass"), attributes: self.attributesZoomOut) { _ in
  128. guard let mediaView = self.mediaView else { return }
  129. UIView.animate(withDuration: 0.0, animations: {
  130. mediaView.layout.itemForLine += 1
  131. self.createMenu()
  132. mediaView.collectionView.collectionViewLayout.invalidateLayout()
  133. NCKeychain().mediaItemForLine = Int(mediaView.layout.itemForLine)
  134. })
  135. },
  136. UIAction(title: NSLocalizedString("_zoom_in_", comment: ""), image: UIImage(systemName: "plus.magnifyingglass"), attributes: self.attributesZoomIn) { _ in
  137. UIView.animate(withDuration: 0.0, animations: {
  138. self.mediaView.layout.itemForLine -= 1
  139. self.createMenu()
  140. self.mediaView.collectionView.collectionViewLayout.invalidateLayout()
  141. NCKeychain().mediaItemForLine = Int(self.mediaView.layout.itemForLine)
  142. })
  143. }
  144. ]),
  145. UIMenu(title: NSLocalizedString("_media_view_options_", comment: ""), children: [
  146. UIAction(title: NSLocalizedString("_media_viewimage_show_", comment: ""), image: UIImage(systemName: "photo")) { _ in
  147. self.mediaView.showOnlyImages = true
  148. self.mediaView.showOnlyVideos = false
  149. self.mediaView.reloadDataSource()
  150. },
  151. UIAction(title: NSLocalizedString("_media_viewvideo_show_", comment: ""), image: UIImage(systemName: "video")) { _ in
  152. self.mediaView.showOnlyImages = false
  153. self.mediaView.showOnlyVideos = true
  154. self.mediaView.reloadDataSource()
  155. },
  156. UIAction(title: NSLocalizedString("_media_show_all_", comment: ""), image: UIImage(systemName: "photo.on.rectangle")) { _ in
  157. self.mediaView.showOnlyImages = false
  158. self.mediaView.showOnlyVideos = false
  159. self.mediaView.reloadDataSource()
  160. }
  161. ]),
  162. UIAction(title: NSLocalizedString("_select_media_folder_", comment: ""), image: UIImage(systemName: "folder"), handler: { _ in
  163. guard let navigationController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateInitialViewController() as? UINavigationController,
  164. let viewController = navigationController.topViewController as? NCSelect else { return }
  165. viewController.delegate = self.mediaView
  166. viewController.typeOfCommandView = .select
  167. viewController.type = "mediaFolder"
  168. self.mediaView.present(navigationController, animated: true, completion: nil)
  169. })
  170. ])
  171. let playFile = UIAction(title: NSLocalizedString("_play_from_files_", comment: ""), image: UIImage(systemName: "play.circle")) { _ in
  172. guard let tabBarController = self.mediaView.appDelegate.window?.rootViewController as? UITabBarController else { return }
  173. self.mediaView.documentPickerViewController = NCDocumentPickerViewController(tabBarController: tabBarController, isViewerMedia: true, allowsMultipleSelection: false, viewController: self.mediaView)
  174. }
  175. let playURL = UIAction(title: NSLocalizedString("_play_from_url_", comment: ""), image: UIImage(systemName: "link")) { _ in
  176. let alert = UIAlertController(title: NSLocalizedString("_valid_video_url_", comment: ""), message: nil, preferredStyle: .alert)
  177. alert.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel, handler: nil))
  178. alert.addTextField(configurationHandler: { textField in
  179. textField.placeholder = "http://myserver.com/movie.mkv"
  180. })
  181. alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { _ in
  182. guard let stringUrl = alert.textFields?.first?.text, !stringUrl.isEmpty, let url = URL(string: stringUrl) else { return }
  183. let fileName = url.lastPathComponent
  184. let appDelegate = (UIApplication.shared.delegate as? AppDelegate)!
  185. let metadata = NCManageDatabase.shared.createMetadata(account: appDelegate.account, user: appDelegate.user, userId: appDelegate.userId, fileName: fileName, fileNameView: fileName, ocId: NSUUID().uuidString, serverUrl: "", urlBase: appDelegate.urlBase, url: stringUrl, contentType: "")
  186. NCManageDatabase.shared.addMetadata(metadata)
  187. NCViewer().view(viewController: self.mediaView, metadata: metadata, metadatas: [metadata], imageIcon: nil)
  188. }))
  189. self.mediaView.present(alert, animated: true)
  190. }
  191. moreButton.menu = UIMenu(title: "", children: [topAction, playFile, playURL])
  192. }
  193. func setMediaCommand() {
  194. DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
  195. self.title.text = ""
  196. if let visibleCells = self.mediaView.collectionView?.indexPathsForVisibleItems.sorted(by: { $0.row < $1.row }).compactMap({ self.mediaView.collectionView?.cellForItem(at: $0) }) {
  197. if let cell = visibleCells.first as? NCGridMediaCell {
  198. self.title.text = ""
  199. if let date = cell.date {
  200. self.title.text = self.mediaView.utility.getTitleFromDate(date)
  201. }
  202. }
  203. }
  204. if let metadatas = self.mediaView.metadatas, !metadatas.isEmpty {
  205. self.selectButton.isHidden = false
  206. if self.gradient.isHidden {
  207. UIView.animate(withDuration: 0.3) {
  208. self.gradient.isHidden = false
  209. }
  210. }
  211. } else {
  212. self.selectButton.isHidden = true
  213. if !self.gradient.isHidden {
  214. UIView.animate(withDuration: 0.3) {
  215. self.gradient.isHidden = true
  216. }
  217. }
  218. }
  219. }
  220. }
  221. }