mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-04-17 20:08:31 +00:00
144 lines
3.7 KiB
Swift
144 lines
3.7 KiB
Swift
/*
|
|
* Copyright (c) 2010-2023 Belledonne Communications SARL.
|
|
*
|
|
* This file is part of linphone-iphone
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import SwiftUI
|
|
import linphonesw
|
|
|
|
struct ConversationDocumentsListFragment: View {
|
|
@EnvironmentObject var conversationViewModel: ConversationViewModel
|
|
|
|
@StateObject private var conversationDocumentsListViewModel = ConversationDocumentsListViewModel()
|
|
|
|
@Binding var isShowDocumentsFilesFragment: Bool
|
|
|
|
var body: some View {
|
|
NavigationView {
|
|
GeometryReader { geometry in
|
|
ZStack {
|
|
VStack(spacing: 1) {
|
|
|
|
Rectangle()
|
|
.foregroundStyle(Color.orangeMain500)
|
|
.edgesIgnoringSafeArea(.top)
|
|
.frame(height: 0)
|
|
|
|
HStack {
|
|
Image("caret-left")
|
|
.renderingMode(.template)
|
|
.resizable()
|
|
.foregroundStyle(Color.orangeMain500)
|
|
.frame(width: 25, height: 25, alignment: .leading)
|
|
.padding(.all, 10)
|
|
.padding(.top, 2)
|
|
.padding(.leading, -10)
|
|
.onTapGesture {
|
|
withAnimation {
|
|
isShowDocumentsFilesFragment = false
|
|
}
|
|
}
|
|
|
|
Text("conversation_document_list_title")
|
|
.multilineTextAlignment(.leading)
|
|
.default_text_style_orange_800(styleSize: 16)
|
|
|
|
Spacer()
|
|
|
|
}
|
|
.frame(maxWidth: .infinity)
|
|
.frame(height: 50)
|
|
.padding(.horizontal)
|
|
.padding(.bottom, 4)
|
|
.background(.white)
|
|
|
|
VStack(spacing: 0) {
|
|
List {
|
|
ForEach(conversationDocumentsListViewModel.documentsList, id: \.path) { file in
|
|
MediaGridItemView(file: file)
|
|
.background()
|
|
.listRowInsets(EdgeInsets(top: 0, leading: 0, bottom: 0, trailing: 0))
|
|
.listRowSeparator(.hidden)
|
|
}
|
|
}
|
|
.safeAreaInset(edge: .top, content: {
|
|
Spacer()
|
|
.frame(height: 12)
|
|
})
|
|
.listStyle(.plain)
|
|
.overlay(
|
|
VStack {
|
|
if true {
|
|
Spacer()
|
|
Text("conversation_no_document_found")
|
|
.multilineTextAlignment(.leading)
|
|
.default_text_style_800(styleSize: 16)
|
|
Spacer()
|
|
}
|
|
}
|
|
.padding(.all)
|
|
)
|
|
}
|
|
.frame(maxWidth: .infinity)
|
|
}
|
|
.background(Color.gray100)
|
|
}
|
|
.navigationTitle("")
|
|
.navigationBarHidden(true)
|
|
.onDisappear {
|
|
withAnimation {
|
|
isShowDocumentsFilesFragment = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.navigationViewStyle(StackNavigationViewStyle())
|
|
}
|
|
}
|
|
|
|
struct DocumentRow: View {
|
|
|
|
@ObservedObject var file: FileModel
|
|
|
|
var body: some View {
|
|
ZStack(alignment: .bottomTrailing) {
|
|
if let previewPath = file.mediaPreview,
|
|
let image = UIImage(contentsOfFile: previewPath) {
|
|
Image(uiImage: image)
|
|
.resizable()
|
|
.scaledToFill()
|
|
.frame(height: 110)
|
|
.clipped()
|
|
} else {
|
|
Rectangle()
|
|
.fill(Color.gray.opacity(0.2))
|
|
.frame(height: 110)
|
|
}
|
|
|
|
if let duration = file.audioVideoDuration, file.isVideoPreview {
|
|
Text(duration)
|
|
.font(.caption2)
|
|
.padding(6)
|
|
.background(Color.black.opacity(0.6))
|
|
.foregroundColor(.white)
|
|
.clipShape(RoundedRectangle(cornerRadius: 6))
|
|
.padding(6)
|
|
}
|
|
}
|
|
.cornerRadius(8)
|
|
}
|
|
}
|