NCUploadAssets.swift 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. //
  2. // NCUploadAssets.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/01/23.
  6. // Copyright © 2023 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 SwiftUI
  24. import NextcloudKit
  25. import TLPhotoPicker
  26. import Mantis
  27. import Photos
  28. import QuickLook
  29. class NCHostingUploadAssetsView: NSObject {
  30. func makeShipDetailsUI(assets: [TLPHAsset], serverUrl: String, userBaseUrl: NCUserBaseUrl) -> UIViewController {
  31. let uploadAssets = NCUploadAssets(assets: assets, serverUrl: serverUrl, userBaseUrl: userBaseUrl )
  32. let details = UploadAssetsView(uploadAssets: uploadAssets)
  33. return UIHostingController(rootView: details)
  34. }
  35. }
  36. // MARK: - Class
  37. struct PreviewStore {
  38. var id: String
  39. var asset: TLPHAsset
  40. var assetType: TLPHAsset.AssetType
  41. var data: Data?
  42. var fileName: String
  43. var image: UIImage
  44. }
  45. class NCUploadAssets: NSObject, ObservableObject, NCCreateFormUploadConflictDelegate {
  46. @Published var serverUrl: String
  47. @Published var assets: [TLPHAsset]
  48. @Published var userBaseUrl: NCUserBaseUrl
  49. @Published var dismiss = false
  50. @Published var isHiddenSave = true
  51. @Published var isUseAutoUploadFolder: Bool = false
  52. @Published var isUseAutoUploadSubFolder: Bool = false
  53. @Published var previewStore: [PreviewStore] = []
  54. @Published var showHUD: Bool = false
  55. @Published var uploadInProgress: Bool = false
  56. var metadatasNOConflict: [tableMetadata] = []
  57. var metadatasUploadInConflict: [tableMetadata] = []
  58. var timer: Timer?
  59. init(assets: [TLPHAsset], serverUrl: String, userBaseUrl: NCUserBaseUrl) {
  60. self.assets = assets
  61. self.serverUrl = serverUrl
  62. self.userBaseUrl = userBaseUrl
  63. }
  64. func loadImages() {
  65. var previewStore: [PreviewStore] = []
  66. self.showHUD = true
  67. DispatchQueue.global().async {
  68. for asset in self.assets {
  69. guard let image = asset.fullResolutionImage?.resizeImage(size: CGSize(width: 300, height: 300), isAspectRation: true), let localIdentifier = asset.phAsset?.localIdentifier else { continue }
  70. previewStore.append(PreviewStore(id: localIdentifier, asset: asset, assetType: asset.type, fileName: "", image: image))
  71. }
  72. DispatchQueue.main.async {
  73. self.showHUD = false
  74. self.previewStore = previewStore
  75. self.isHiddenSave = false
  76. }
  77. }
  78. }
  79. func startTimer(navigationItem: UINavigationItem) {
  80. self.timer = Timer.scheduledTimer(withTimeInterval: 0.5, repeats: true, block: { _ in
  81. guard let buttonDone = navigationItem.leftBarButtonItems?.first, let buttonCrop = navigationItem.leftBarButtonItems?.last else { return }
  82. buttonCrop.isEnabled = true
  83. buttonDone.isEnabled = true
  84. if let markup = navigationItem.rightBarButtonItems?.first(where: { $0.accessibilityIdentifier == "QLOverlayMarkupButtonAccessibilityIdentifier" }) {
  85. if let originalButton = markup.value(forKey: "originalButton") as AnyObject? {
  86. if let symbolImageName = originalButton.value(forKey: "symbolImageName") as? String {
  87. if symbolImageName == "pencil.tip.crop.circle.on" {
  88. buttonCrop.isEnabled = false
  89. buttonDone.isEnabled = false
  90. }
  91. }
  92. }
  93. }
  94. })
  95. }
  96. func stopTimer() {
  97. self.timer?.invalidate()
  98. }
  99. func dismissCreateFormUploadConflict(metadatas: [tableMetadata]?) {
  100. guard let metadatas = metadatas else {
  101. self.showHUD = false
  102. self.uploadInProgress.toggle()
  103. return
  104. }
  105. func createProcessUploads() {
  106. if !self.dismiss {
  107. NCNetworkingProcess.shared.createProcessUploads(metadatas: metadatas, completion: { _ in
  108. self.dismiss = true
  109. })
  110. }
  111. }
  112. if isUseAutoUploadFolder {
  113. DispatchQueue.global().async {
  114. let assets = self.assets.compactMap { $0.phAsset }
  115. let result = NCNetworking.shared.createFolder(assets: assets, selector: NCGlobal.shared.selectorUploadFile, useSubFolder: self.isUseAutoUploadSubFolder, account: self.userBaseUrl.account, urlBase: self.userBaseUrl.urlBase, userId: self.userBaseUrl.userId, withPush: false)
  116. DispatchQueue.main.async {
  117. self.showHUD = false
  118. self.uploadInProgress.toggle()
  119. if result {
  120. createProcessUploads()
  121. } else {
  122. let error = NKError(errorCode: NCGlobal.shared.errorInternalError, errorDescription: "_error_createsubfolders_upload_")
  123. NCContentPresenter().showError(error: error)
  124. }
  125. }
  126. }
  127. } else {
  128. createProcessUploads()
  129. }
  130. }
  131. }
  132. // MARK: - View
  133. struct UploadAssetsView: View {
  134. @State private var fileName: String = NCKeychain().getFileNameMask(key: NCGlobal.shared.keyFileNameMask)
  135. @State private var isMaintainOriginalFilename: Bool = NCKeychain().getOriginalFileName(key: NCGlobal.shared.keyFileNameOriginal)
  136. @State private var isAddFilenametype: Bool = NCKeychain().getFileNameType(key: NCGlobal.shared.keyFileNameType)
  137. @State private var isPresentedSelect = false
  138. @State private var isPresentedUploadConflict = false
  139. @State private var isPresentedQuickLook = false
  140. @State private var isPresentedAlert = false
  141. @State private var fileNamePath = NSTemporaryDirectory() + "Photo.jpg"
  142. @State private var renameFileName: String = ""
  143. @State private var renameIndex: Int = 0
  144. @State private var metadata: tableMetadata?
  145. @State private var index: Int = 0
  146. var gridItems: [GridItem] = [GridItem()]
  147. @ObservedObject var uploadAssets: NCUploadAssets
  148. @Environment(\.presentationMode) var presentationMode
  149. init(uploadAssets: NCUploadAssets) {
  150. self.uploadAssets = uploadAssets
  151. uploadAssets.loadImages()
  152. }
  153. func getTextServerUrl(_ serverUrl: String) -> String {
  154. if let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", uploadAssets.userBaseUrl.account, serverUrl)), let metadata = NCManageDatabase.shared.getMetadataFromOcId(directory.ocId) {
  155. return (metadata.fileNameView)
  156. } else {
  157. return (serverUrl as NSString).lastPathComponent
  158. }
  159. }
  160. private func setFileNameMaskForPreview(fileName: String?) -> String {
  161. guard let asset = uploadAssets.assets.first?.phAsset else { return "" }
  162. var preview: String = ""
  163. let creationDate = asset.creationDate ?? Date()
  164. NCKeychain().setOriginalFileName(key: NCGlobal.shared.keyFileNameOriginal, value: isMaintainOriginalFilename)
  165. NCKeychain().setFileNameType(key: NCGlobal.shared.keyFileNameType, prefix: isAddFilenametype)
  166. NCKeychain().setFileNameMask(key: NCGlobal.shared.keyFileNameMask, mask: fileName)
  167. preview = CCUtility.createFileName(
  168. getOriginalFilenameForPreview() as String,
  169. fileDate: creationDate,
  170. fileType: asset.mediaType,
  171. keyFileName: fileName.isEmptyOrNil ? nil : NCGlobal.shared.keyFileNameMask,
  172. keyFileNameType: NCGlobal.shared.keyFileNameType,
  173. keyFileNameOriginal: NCGlobal.shared.keyFileNameOriginal,
  174. forcedNewFileName: false
  175. )
  176. let trimmedPreview = preview.trimmingCharacters(in: .whitespacesAndNewlines)
  177. return String(format: NSLocalizedString("_preview_filename_", comment: ""), "MM, MMM, DD, YY, YYYY, HH, hh, mm, ss, ampm") + ":" + "\n\n" + (trimmedPreview as NSString).deletingPathExtension
  178. }
  179. private func save(completion: @escaping (_ metadatasNOConflict: [tableMetadata], _ metadatasUploadInConflict: [tableMetadata]) -> Void) {
  180. let utilityFileSystem = NCUtilityFileSystem()
  181. var metadatasNOConflict: [tableMetadata] = []
  182. var metadatasUploadInConflict: [tableMetadata] = []
  183. let autoUploadPath = NCManageDatabase.shared.getAccountAutoUploadPath(urlBase: uploadAssets.userBaseUrl.urlBase, userId: uploadAssets.userBaseUrl.userId, account: uploadAssets.userBaseUrl.account)
  184. var serverUrl = uploadAssets.isUseAutoUploadFolder ? autoUploadPath : uploadAssets.serverUrl
  185. let autoUploadSubfolderGranularity = NCManageDatabase.shared.getAccountAutoUploadSubfolderGranularity()
  186. for tlAsset in uploadAssets.assets {
  187. guard let asset = tlAsset.phAsset, let previewStore = uploadAssets.previewStore.first(where: { $0.id == asset.localIdentifier }) else { continue }
  188. let assetFileName = asset.originalFilename
  189. var livePhoto: Bool = false
  190. let creationDate = asset.creationDate ?? Date()
  191. let ext = assetFileName.pathExtension.lowercased()
  192. let fileName = previewStore.fileName.isEmpty
  193. ? CCUtility.createFileName(assetFileName as String,
  194. fileDate: creationDate,
  195. fileType: asset.mediaType,
  196. keyFileName: NCGlobal.shared.keyFileNameMask,
  197. keyFileNameType: NCGlobal.shared.keyFileNameType,
  198. keyFileNameOriginal: NCGlobal.shared.keyFileNameOriginal,
  199. forcedNewFileName: false)!
  200. : (previewStore.fileName + "." + ext)
  201. if previewStore.assetType == .livePhoto && NCKeychain().livePhoto && previewStore.data == nil {
  202. livePhoto = true
  203. }
  204. // Auto upload with subfolder
  205. if uploadAssets.isUseAutoUploadSubFolder {
  206. let dateFormatter = DateFormatter()
  207. dateFormatter.dateFormat = "yyyy"
  208. let yearString = dateFormatter.string(from: creationDate)
  209. dateFormatter.dateFormat = "MM"
  210. let monthString = dateFormatter.string(from: creationDate)
  211. dateFormatter.dateFormat = "dd"
  212. let dayString = dateFormatter.string(from: creationDate)
  213. if autoUploadSubfolderGranularity == NCGlobal.shared.subfolderGranularityYearly {
  214. serverUrl = autoUploadPath + "/" + yearString
  215. } else if autoUploadSubfolderGranularity == NCGlobal.shared.subfolderGranularityDaily {
  216. serverUrl = autoUploadPath + "/" + yearString + "/" + monthString + "/" + dayString
  217. } else { // Month Granularity is default
  218. serverUrl = autoUploadPath + "/" + yearString + "/" + monthString
  219. }
  220. }
  221. // Check if is in upload
  222. let isRecordInSessions = NCManageDatabase.shared.getAdvancedMetadatas(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND fileName == %@ AND session != ''", uploadAssets.userBaseUrl.account, serverUrl, fileName), sorted: "fileName", ascending: false)
  223. if !isRecordInSessions.isEmpty { continue }
  224. let metadata = NCManageDatabase.shared.createMetadata(account: uploadAssets.userBaseUrl.account, user: uploadAssets.userBaseUrl.user, userId: uploadAssets.userBaseUrl.userId, fileName: fileName, fileNameView: fileName, ocId: NSUUID().uuidString, serverUrl: serverUrl, urlBase: uploadAssets.userBaseUrl.urlBase, url: "", contentType: "")
  225. if livePhoto {
  226. metadata.livePhotoFile = (metadata.fileName as NSString).deletingPathExtension + ".mov"
  227. }
  228. metadata.assetLocalIdentifier = asset.localIdentifier
  229. metadata.session = NCNetworking.shared.sessionUploadBackground
  230. metadata.sessionSelector = NCGlobal.shared.selectorUploadFile
  231. metadata.status = NCGlobal.shared.metadataStatusWaitUpload
  232. metadata.sessionDate = Date()
  233. // Modified
  234. if let previewStore = uploadAssets.previewStore.first(where: { $0.id == asset.localIdentifier }), let data = previewStore.data {
  235. if metadata.contentType == "image/heic" {
  236. let fileNameNoExtension = (fileName as NSString).deletingPathExtension
  237. metadata.contentType = "image/jpeg"
  238. metadata.fileName = fileNameNoExtension + ".jpg"
  239. metadata.fileNameView = fileNameNoExtension + ".jpg"
  240. }
  241. let fileNamePath = utilityFileSystem.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)
  242. do {
  243. try data.write(to: URL(fileURLWithPath: fileNamePath))
  244. metadata.isExtractFile = true
  245. metadata.size = utilityFileSystem.getFileSize(filePath: fileNamePath)
  246. metadata.creationDate = asset.creationDate as? NSDate ?? (Date() as NSDate)
  247. metadata.date = asset.modificationDate as? NSDate ?? (Date() as NSDate)
  248. } catch { }
  249. }
  250. if let result = NCManageDatabase.shared.getMetadataConflict(account: uploadAssets.userBaseUrl.account, serverUrl: serverUrl, fileNameView: fileName) {
  251. metadata.fileName = result.fileName
  252. metadatasUploadInConflict.append(metadata)
  253. } else {
  254. metadatasNOConflict.append(metadata)
  255. }
  256. }
  257. completion(metadatasNOConflict, metadatasUploadInConflict)
  258. }
  259. private func presentedQuickLook(index: Int) {
  260. var image: UIImage?
  261. if let imageData = uploadAssets.previewStore[index].data {
  262. image = UIImage(data: imageData)
  263. } else if let imageFullResolution = uploadAssets.previewStore[index].asset.fullResolutionImage?.fixedOrientation() {
  264. image = imageFullResolution
  265. }
  266. if let image = image {
  267. if let data = image.jpegData(compressionQuality: 1) {
  268. do {
  269. try data.write(to: URL(fileURLWithPath: fileNamePath))
  270. self.index = index
  271. isPresentedQuickLook = true
  272. } catch {
  273. }
  274. }
  275. }
  276. }
  277. private func deleteAsset(index: Int) {
  278. uploadAssets.assets.remove(at: index)
  279. uploadAssets.previewStore.remove(at: index)
  280. if uploadAssets.previewStore.isEmpty {
  281. uploadAssets.dismiss = true
  282. }
  283. }
  284. private func getOriginalFilenameForPreview() -> NSString {
  285. NCKeychain().setOriginalFileName(key: NCGlobal.shared.keyFileNameOriginal, value: isMaintainOriginalFilename)
  286. if let asset = uploadAssets.assets.first?.phAsset {
  287. return asset.originalFilename
  288. } else {
  289. return ""
  290. }
  291. }
  292. var body: some View {
  293. let utilityFileSystem = NCUtilityFileSystem()
  294. NavigationView {
  295. ZStack(alignment: .top) {
  296. List {
  297. Section(footer: Text(NSLocalizedString("_modify_image_desc_", comment: ""))) {
  298. ScrollView(.horizontal) {
  299. LazyHGrid(rows: gridItems, alignment: .center, spacing: 10) {
  300. ForEach(0..<uploadAssets.previewStore.count, id: \.self) { index in
  301. let item = uploadAssets.previewStore[index]
  302. Menu {
  303. Button(action: {
  304. renameFileName = uploadAssets.previewStore[index].fileName
  305. renameIndex = index
  306. isPresentedAlert = true
  307. }) {
  308. Label(NSLocalizedString("_rename_", comment: ""), systemImage: "pencil")
  309. }
  310. if item.asset.type == .photo || item.asset.type == .livePhoto {
  311. Button(action: {
  312. presentedQuickLook(index: index)
  313. }) {
  314. Label(NSLocalizedString("_modify_", comment: ""), systemImage: "pencil.tip.crop.circle")
  315. }
  316. }
  317. if item.data != nil {
  318. Button(action: {
  319. if let image = uploadAssets.previewStore[index].asset.fullResolutionImage?.resizeImage(size: CGSize(width: 300, height: 300), isAspectRation: true) {
  320. uploadAssets.previewStore[index].image = image
  321. uploadAssets.previewStore[index].data = nil
  322. uploadAssets.previewStore[index].assetType = uploadAssets.previewStore[index].asset.type
  323. }
  324. }) {
  325. Label(NSLocalizedString("_undo_modify_", comment: ""), systemImage: "arrow.uturn.backward.circle")
  326. }
  327. }
  328. if item.data == nil && item.asset.type == .livePhoto && item.assetType == .livePhoto {
  329. Button(action: {
  330. uploadAssets.previewStore[index].assetType = .photo
  331. }) {
  332. Label(NSLocalizedString("_disable_livephoto_", comment: ""), systemImage: "livephoto.slash")
  333. }
  334. } else if item.data == nil && item.asset.type == .livePhoto && item.assetType == .photo {
  335. Button(action: {
  336. uploadAssets.previewStore[index].assetType = .livePhoto
  337. }) {
  338. Label(NSLocalizedString("_enable_livephoto_", comment: ""), systemImage: "livephoto")
  339. }
  340. }
  341. Button(role: .destructive, action: {
  342. deleteAsset(index: index)
  343. }) {
  344. Label(NSLocalizedString("_remove_", comment: ""), systemImage: "trash")
  345. }
  346. } label: {
  347. ImageAsset(uploadAssets: uploadAssets, index: index)
  348. .alert(NSLocalizedString("_rename_file_", comment: ""), isPresented: $isPresentedAlert) {
  349. TextField(NSLocalizedString("_enter_filename_", comment: ""), text: $renameFileName)
  350. .autocapitalization(.none)
  351. .autocorrectionDisabled()
  352. Button(NSLocalizedString("_rename_", comment: ""), action: {
  353. uploadAssets.previewStore[renameIndex].fileName = renameFileName.trimmingCharacters(in: .whitespacesAndNewlines)
  354. })
  355. Button(NSLocalizedString("_cancel_", comment: ""), role: .cancel, action: {})
  356. }
  357. }
  358. }
  359. }
  360. }
  361. }
  362. // .redacted(reason: uploadAssets.previewStore.isEmpty ? .placeholder : [])
  363. Section {
  364. Toggle(isOn: $isMaintainOriginalFilename, label: {
  365. Text(NSLocalizedString("_maintain_original_filename_", comment: ""))
  366. .font(.system(size: 15))
  367. })
  368. .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brand)))
  369. if !isMaintainOriginalFilename {
  370. Toggle(isOn: $isAddFilenametype, label: {
  371. Text(NSLocalizedString("_add_filenametype_", comment: ""))
  372. .font(.system(size: 15))
  373. })
  374. .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brand)))
  375. }
  376. }
  377. Section {
  378. Toggle(isOn: $uploadAssets.isUseAutoUploadFolder, label: {
  379. Text(NSLocalizedString("_use_folder_auto_upload_", comment: ""))
  380. .font(.system(size: 15))
  381. })
  382. .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brand)))
  383. if uploadAssets.isUseAutoUploadFolder {
  384. Toggle(isOn: $uploadAssets.isUseAutoUploadSubFolder, label: {
  385. Text(NSLocalizedString("_autoupload_create_subfolder_", comment: ""))
  386. .font(.system(size: 15))
  387. })
  388. .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brand)))
  389. }
  390. if !uploadAssets.isUseAutoUploadFolder {
  391. HStack {
  392. Label {
  393. if utilityFileSystem.getHomeServer(urlBase: uploadAssets.userBaseUrl.urlBase, userId: uploadAssets.userBaseUrl.userId) == uploadAssets.serverUrl {
  394. Text("/")
  395. .font(.system(size: 15))
  396. .frame(maxWidth: .infinity, alignment: .trailing)
  397. } else {
  398. Text(self.getTextServerUrl(uploadAssets.serverUrl))
  399. .font(.system(size: 15))
  400. .frame(maxWidth: .infinity, alignment: .trailing)
  401. }
  402. } icon: {
  403. Image("folder")
  404. .renderingMode(.template)
  405. .resizable()
  406. .scaledToFit()
  407. .foregroundColor(Color(NCBrandColor.shared.brand))
  408. }
  409. }
  410. .contentShape(Rectangle())
  411. .onTapGesture {
  412. isPresentedSelect = true
  413. }
  414. }
  415. }
  416. Section {
  417. HStack {
  418. Text(NSLocalizedString("_filename_", comment: ""))
  419. if isMaintainOriginalFilename {
  420. Text(getOriginalFilenameForPreview().deletingPathExtension)
  421. .font(.system(size: 15))
  422. .frame(maxWidth: .infinity, alignment: .trailing)
  423. .foregroundColor(Color.gray)
  424. } else {
  425. TextField(NSLocalizedString("_enter_filename_", comment: ""), text: $fileName)
  426. .font(.system(size: 15))
  427. .modifier(TextFieldClearButton(text: $fileName))
  428. .multilineTextAlignment(.trailing)
  429. }
  430. }
  431. if !isMaintainOriginalFilename {
  432. Text(setFileNameMaskForPreview(fileName: fileName))
  433. .font(.system(size: 11))
  434. .foregroundColor(Color.gray)
  435. }
  436. }
  437. .complexModifier { view in
  438. view.listRowSeparator(.hidden)
  439. }
  440. Button(NSLocalizedString("_save_", comment: "")) {
  441. if uploadAssets.isUseAutoUploadFolder, uploadAssets.isUseAutoUploadSubFolder {
  442. uploadAssets.showHUD = true
  443. }
  444. uploadAssets.uploadInProgress.toggle()
  445. save { metadatasNOConflict, metadatasUploadInConflict in
  446. if metadatasUploadInConflict.isEmpty {
  447. uploadAssets.dismissCreateFormUploadConflict(metadatas: metadatasNOConflict)
  448. } else {
  449. uploadAssets.metadatasNOConflict = metadatasNOConflict
  450. uploadAssets.metadatasUploadInConflict = metadatasUploadInConflict
  451. isPresentedUploadConflict = true
  452. }
  453. }
  454. }
  455. .frame(maxWidth: .infinity)
  456. .buttonStyle(ButtonRounded(disabled: uploadAssets.uploadInProgress))
  457. .listRowBackground(Color(UIColor.systemGroupedBackground))
  458. .disabled(uploadAssets.uploadInProgress)
  459. .hiddenConditionally(isHidden: uploadAssets.isHiddenSave)
  460. }
  461. .navigationTitle(NSLocalizedString("_upload_photos_videos_", comment: ""))
  462. .navigationBarTitleDisplayMode(.inline)
  463. HUDView(showHUD: $uploadAssets.showHUD, textLabel: NSLocalizedString("_wait_", comment: ""), image: "doc.badge.arrow.up")
  464. .offset(y: uploadAssets.showHUD ? 5 : -200)
  465. .animation(.easeOut)
  466. }
  467. }
  468. .navigationViewStyle(StackNavigationViewStyle())
  469. .sheet(isPresented: $isPresentedSelect) {
  470. SelectView(serverUrl: $uploadAssets.serverUrl)
  471. }
  472. .sheet(isPresented: $isPresentedUploadConflict) {
  473. UploadConflictView(delegate: uploadAssets, serverUrl: uploadAssets.serverUrl, metadatasUploadInConflict: uploadAssets.metadatasUploadInConflict, metadatasNOConflict: uploadAssets.metadatasNOConflict)
  474. }
  475. .fullScreenCover(isPresented: $isPresentedQuickLook) {
  476. ViewerQuickLook(url: URL(fileURLWithPath: fileNamePath), index: $index, isPresentedQuickLook: $isPresentedQuickLook, uploadAssets: uploadAssets)
  477. .ignoresSafeArea()
  478. }
  479. .onReceive(uploadAssets.$dismiss) { newValue in
  480. if newValue {
  481. presentationMode.wrappedValue.dismiss()
  482. }
  483. }
  484. .onTapGesture {
  485. UIApplication.shared.windows.filter { $0.isKeyWindow }.first?.endEditing(true)
  486. }
  487. .onDisappear {
  488. uploadAssets.dismiss = true
  489. }
  490. }
  491. struct ImageAsset: View {
  492. @ObservedObject var uploadAssets: NCUploadAssets
  493. @State var index: Int
  494. var body: some View {
  495. ZStack(alignment: .bottomTrailing) {
  496. if index < uploadAssets.previewStore.count {
  497. let item = uploadAssets.previewStore[index]
  498. Image(uiImage: item.image)
  499. .resizable()
  500. .aspectRatio(contentMode: .fill)
  501. .frame(width: 80, height: 80, alignment: .center)
  502. .cornerRadius(10)
  503. if item.assetType == .livePhoto && item.data == nil {
  504. Image(systemName: "livephoto")
  505. .resizable()
  506. .scaledToFit()
  507. .frame(width: 15, height: 15)
  508. .foregroundColor(.white)
  509. .padding(.horizontal, 5)
  510. .padding(.vertical, 5)
  511. } else if item.assetType == .video {
  512. Image(systemName: "video.fill")
  513. .resizable()
  514. .scaledToFit()
  515. .frame(width: 15, height: 15)
  516. .foregroundColor(.white)
  517. .padding(.horizontal, 5)
  518. .padding(.vertical, 5)
  519. }
  520. }
  521. }
  522. }
  523. }
  524. }
  525. // MARK: - Preview
  526. struct UploadAssetsView_Previews: PreviewProvider {
  527. static var previews: some View {
  528. if let appDelegate = UIApplication.shared.delegate as? AppDelegate {
  529. let uploadAssets = NCUploadAssets(assets: [], serverUrl: "/", userBaseUrl: appDelegate)
  530. UploadAssetsView(uploadAssets: uploadAssets)
  531. }
  532. }
  533. }