* Refactor app database queries to not require the app database as argument * Android Share Extension and fix notifications prompt * feedback review
56 lines
1.7 KiB
Swift
56 lines
1.7 KiB
Swift
//
|
|
// AttachmentsView.swift
|
|
// MattermostShare
|
|
//
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct AttachmentsView: View {
|
|
@EnvironmentObject var shareViewModel: ShareViewModel
|
|
@Binding var attachments: [AttachmentModel]
|
|
|
|
var error: String? {
|
|
if let server = shareViewModel.server {
|
|
if server.uploadsDisabled {
|
|
return "File uploads are disabled for the selected server"
|
|
}
|
|
let sizeError = attachments.contains { $0.sizeError(server: server)}
|
|
let resolutionError = attachments.contains { $0.resolutionError(server: server)}
|
|
if sizeError && attachments.count == 1 {
|
|
return "File must be less than \(server.maxFileSize.formattedFileSize)"
|
|
} else if sizeError {
|
|
return "Each file must be less than \(server.maxFileSize.formattedFileSize)"
|
|
} else if resolutionError {
|
|
return "Image exceeds maximum dimensions of 7680 x 4320 px"
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
var body: some View {
|
|
VStack (spacing: 8) {
|
|
if (attachments.count == 1) {
|
|
SingleAttachmentView(
|
|
attachment: attachments[0],
|
|
hasError: attachments[0].sizeError(server: shareViewModel.server) ||
|
|
attachments[0].resolutionError(server: shareViewModel.server)
|
|
)
|
|
.padding(.horizontal, 20)
|
|
.transition(.opacity)
|
|
} else {
|
|
MultipleAttachmentView(attachments: $attachments)
|
|
.transition(.opacity)
|
|
}
|
|
|
|
if error != nil {
|
|
ErrorLabelView(error: error!)
|
|
.padding(.horizontal, 20)
|
|
}
|
|
}
|
|
.animation(.linear(duration: 0.3))
|
|
}
|
|
}
|