123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- //
- // NCUploadAssetsView.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 03/06/24.
- // Copyright © 2024 Marino Faggiana. All rights reserved.
- //
- import SwiftUI
- struct NCUploadAssetsView: View {
- @ObservedObject var model: NCUploadAssetsModel
- @State private var showSelect = false
- @State private var showUploadConflict = false
- @State private var showQuickLook = false
- @State private var shorRenameAlert = false
- @State private var renameFileName: String = ""
- @State private var renameIndex: Int = 0
- @State private var index: Int = 0
- var metadata: tableMetadata?
- let gridItems: [GridItem] = [GridItem()]
- let fileNamePath = NSTemporaryDirectory() + "Photo.jpg"
- @Environment(\.presentationMode) var presentationMode
- var body: some View {
- let utilityFileSystem = NCUtilityFileSystem()
- NavigationView {
- ZStack(alignment: .top) {
- List {
- Section(footer: Text(NSLocalizedString("_modify_image_desc_", comment: ""))) {
- ScrollView(.horizontal) {
- LazyHGrid(rows: gridItems, alignment: .center, spacing: 10) {
- ForEach(0..<model.previewStore.count, id: \.self) { index in
- let item = model.previewStore[index]
- Menu {
- Button(action: {
- renameFileName = model.previewStore[index].fileName
- renameIndex = index
- shorRenameAlert = true
- }) {
- Label(NSLocalizedString("_rename_", comment: ""), systemImage: "pencil")
- }
- if item.asset.type == .photo || item.asset.type == .livePhoto {
- Button(action: {
- if model.presentedQuickLook(index: index, fileNamePath: fileNamePath) {
- self.index = index
- showQuickLook = true
- }
- }) {
- Label(NSLocalizedString("_modify_", comment: ""), systemImage: "pencil.tip.crop.circle")
- }
- }
- if item.data != nil {
- Button(action: {
- if let image = model.previewStore[index].asset.fullResolutionImage?.resizeImage(size: CGSize(width: 300, height: 300), isAspectRation: true) {
- model.previewStore[index].image = image
- model.previewStore[index].data = nil
- model.previewStore[index].assetType = model.previewStore[index].asset.type
- }
- }) {
- Label(NSLocalizedString("_undo_modify_", comment: ""), systemImage: "arrow.uturn.backward.circle")
- }
- }
- if item.data == nil && item.asset.type == .livePhoto && item.assetType == .livePhoto {
- Button(action: {
- model.previewStore[index].assetType = .photo
- }) {
- Label(NSLocalizedString("_disable_livephoto_", comment: ""), systemImage: "livephoto.slash")
- }
- } else if item.data == nil && item.asset.type == .livePhoto && item.assetType == .photo {
- Button(action: {
- model.previewStore[index].assetType = .livePhoto
- }) {
- Label(NSLocalizedString("_enable_livephoto_", comment: ""), systemImage: "livephoto")
- }
- }
- Button(role: .destructive, action: {
- model.deleteAsset(index: index)
- }) {
- Label(NSLocalizedString("_remove_", comment: ""), systemImage: "trash")
- }
- } label: {
- ImageAsset(model: model, index: index)
- .alert(NSLocalizedString("_rename_file_", comment: ""), isPresented: $shorRenameAlert) {
- TextField(NSLocalizedString("_enter_filename_", comment: ""), text: $renameFileName)
- .autocapitalization(.none)
- .autocorrectionDisabled()
- Button(NSLocalizedString("_rename_", comment: ""), action: {
- model.previewStore[renameIndex].fileName = renameFileName.trimmingCharacters(in: .whitespacesAndNewlines)
- })
- Button(NSLocalizedString("_cancel_", comment: ""), role: .cancel, action: {})
- }
- }
- }
- }
- }
- }
- // .redacted(reason: uploadAssets.previewStore.isEmpty ? .placeholder : [])
- Section {
- Toggle(isOn: $model.useAutoUploadFolder, label: {
- Text(NSLocalizedString("_use_folder_auto_upload_", comment: ""))
- .font(.system(size: 15))
- })
- .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brandElement)))
- if model.useAutoUploadFolder {
- Toggle(isOn: $model.useAutoUploadFolder, label: {
- Text(NSLocalizedString("_autoupload_create_subfolder_", comment: ""))
- .font(.system(size: 15))
- })
- .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brandElement)))
- }
- if !model.useAutoUploadFolder {
- HStack {
- Label {
- if utilityFileSystem.getHomeServer(urlBase: model.userBaseUrl.urlBase, userId: model.userBaseUrl.userId) == model.serverUrl {
- Text("/")
- .font(.system(size: 15))
- .frame(maxWidth: .infinity, alignment: .trailing)
- } else {
- Text(model.getTextServerUrl())
- .font(.system(size: 15))
- .frame(maxWidth: .infinity, alignment: .trailing)
- }
- } icon: {
- Image("folder")
- .renderingMode(.template)
- .resizable()
- .scaledToFit()
- .foregroundColor(Color(NCBrandColor.shared.brandElement))
- }
- }
- .contentShape(Rectangle())
- .onTapGesture {
- showSelect = true
- }
- }
- }
- Button(NSLocalizedString("_save_", comment: "")) {
- if model.useAutoUploadFolder, model.useAutoUploadSubFolder {
- model.showHUD = true
- }
- model.uploadInProgress.toggle()
- model.save { metadatasNOConflict, metadatasUploadInConflict in
- if metadatasUploadInConflict.isEmpty {
- model.dismissCreateFormUploadConflict(metadatas: metadatasNOConflict)
- } else {
- model.metadatasNOConflict = metadatasNOConflict
- model.metadatasUploadInConflict = metadatasUploadInConflict
- showUploadConflict = true
- }
- }
- }
- .frame(maxWidth: .infinity)
- .buttonStyle(ButtonRounded(disabled: model.uploadInProgress))
- .listRowBackground(Color(UIColor.systemGroupedBackground))
- .disabled(model.uploadInProgress)
- .hiddenConditionally(isHidden: model.hiddenSave)
- }
- .navigationTitle(NSLocalizedString("_upload_photos_videos_", comment: ""))
- .navigationBarTitleDisplayMode(.inline)
- .navigationBarItems(trailing: Button(action: {
- presentationMode.wrappedValue.dismiss()
- }) {
- Image(systemName: "xmark")
- .font(Font.system(.body).weight(.light))
- .foregroundStyle(Color(NCBrandColor.shared.iconImageColor))
- })
- HUDView(showHUD: $model.showHUD, textLabel: NSLocalizedString("_wait_", comment: ""), image: "doc.badge.arrow.up")
- .offset(y: model.showHUD ? 5 : -200)
- .animation(.easeOut, value: model.showHUD)
- }
- }
- .navigationViewStyle(StackNavigationViewStyle())
- .sheet(isPresented: $showSelect) {
- SelectView(serverUrl: $model.serverUrl)
- }
- .sheet(isPresented: $showUploadConflict) {
- UploadConflictView(delegate: model, serverUrl: model.serverUrl, metadatasUploadInConflict: model.metadatasUploadInConflict, metadatasNOConflict: model.metadatasNOConflict)
- }
- .fullScreenCover(isPresented: $showQuickLook) {
- NCViewerQuickLookView(url: URL(fileURLWithPath: fileNamePath), index: $index, isPresentedQuickLook: $showQuickLook, model: model)
- .ignoresSafeArea()
- }
- .onReceive(model.$dismissView) { newValue in
- if newValue {
- presentationMode.wrappedValue.dismiss()
- }
- }
- .onTapGesture {
- SceneManager.shared.getWindow(controller: model.controller)?.endEditing(true)
- }
- .onDisappear {
- model.dismissView = true
- }
- }
- struct ImageAsset: View {
- @ObservedObject var model: NCUploadAssetsModel
- @State var index: Int
- var body: some View {
- ZStack(alignment: .bottomTrailing) {
- if index < model.previewStore.count {
- let item = model.previewStore[index]
- Image(uiImage: item.image)
- .resizable()
- .aspectRatio(contentMode: .fill)
- .frame(width: 80, height: 80, alignment: .center)
- .cornerRadius(10)
- if item.assetType == .livePhoto && item.data == nil {
- Image(systemName: "livephoto")
- .resizable()
- .scaledToFit()
- .frame(width: 15, height: 15)
- .foregroundColor(.white)
- .padding(.horizontal, 5)
- .padding(.vertical, 5)
- } else if item.assetType == .video {
- Image(systemName: "video.fill")
- .resizable()
- .scaledToFit()
- .frame(width: 15, height: 15)
- .foregroundColor(.white)
- .padding(.horizontal, 5)
- .padding(.vertical, 5)
- }
- }
- }
- }
- }
- }
- #Preview {
- NCUploadAssetsView(model: NCUploadAssetsModel(assets: [], serverUrl: "/", userBaseUrl: (UIApplication.shared.delegate as? AppDelegate)!, controller: nil))
- }
|