NCMediaCommandView.swift 12 KB

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