/* * 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 . */ import SwiftUI import linphonesw struct ConversationForwardMessageFragment: View { @ObservedObject var contactsManager = ContactsManager.shared @ObservedObject var magicSearch = MagicSearchSingleton.shared @EnvironmentObject var conversationViewModel: ConversationViewModel @EnvironmentObject var conversationsListViewModel: ConversationsListViewModel @StateObject private var conversationForwardMessageViewModel: ConversationForwardMessageViewModel @Binding var isShowConversationForwardMessageFragment: Bool @FocusState var isSearchFieldFocused: Bool @State private var delayedColor = Color.white @FocusState var isMessageTextFocused: Bool init(conversationsList: [ConversationModel], selectedMessage: EventLogMessage?, isShowConversationForwardMessageFragment: Binding) { _conversationForwardMessageViewModel = StateObject(wrappedValue: ConversationForwardMessageViewModel(conversationsList: conversationsList, selectedMessage: selectedMessage)) self._isShowConversationForwardMessageFragment = isShowConversationForwardMessageFragment } var body: some View { NavigationView { 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 { conversationForwardMessageViewModel.searchField = "" magicSearch.currentFilter = "" magicSearch.searchForContacts() conversationForwardMessageViewModel.selectedMessage = nil withAnimation { isShowConversationForwardMessageFragment = false } } Text("conversation_forward_message_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) { ZStack(alignment: .trailing) { TextField("history_call_start_search_bar_filter_hint", text: $conversationForwardMessageViewModel.searchField) .default_text_style(styleSize: 15) .frame(height: 25) .focused($isSearchFieldFocused) .padding(.horizontal, 30) .onChange(of: conversationForwardMessageViewModel.searchField) { newValue in if newValue.isEmpty { conversationForwardMessageViewModel.resetFilterConversations() } else { conversationForwardMessageViewModel.filterConversations() } magicSearch.currentFilter = newValue magicSearch.searchForContacts() } HStack { Button(action: { }, label: { Image("magnifying-glass") .renderingMode(.template) .resizable() .foregroundStyle(Color.grayMain2c500) .frame(width: 25, height: 25) }) Spacer() if !conversationForwardMessageViewModel.searchField.isEmpty { Button(action: { conversationForwardMessageViewModel.searchField = "" magicSearch.currentFilter = "" conversationForwardMessageViewModel.resetFilterConversations() magicSearch.searchForContacts() }, label: { Image("x") .renderingMode(.template) .resizable() .foregroundStyle(Color.grayMain2c500) .frame(width: 25, height: 25) }) } } } .padding(.horizontal, 15) .padding(.vertical, 10) .cornerRadius(60) .overlay( RoundedRectangle(cornerRadius: 60) .inset(by: 0.5) .stroke(isSearchFieldFocused ? Color.orangeMain500 : Color.gray200, lineWidth: 1) ) .padding(.vertical) .padding(.horizontal) ZStack { ScrollView { if !conversationForwardMessageViewModel.conversationsList.isEmpty { HStack(alignment: .center) { Text("bottom_navigation_conversations_label") .default_text_style_800(styleSize: 16) Spacer() } .padding(.vertical, 10) .padding(.horizontal, 16) conversationsList } if !ContactsManager.shared.lastSearch.isEmpty { HStack(alignment: .center) { Text("contacts_list_all_contacts_title") .default_text_style_800(styleSize: 16) Spacer() } .padding(.vertical, 10) .padding(.horizontal, 16) } ContactsListFragment(showingSheet: .constant(false), startCallFunc: { addr in withAnimation { conversationForwardMessageViewModel.createOneToOneChatRoomWith(remote: addr) } }) .padding(.horizontal, 16) if !contactsManager.lastSearchSuggestions.isEmpty { HStack(alignment: .center) { Text("generic_address_picker_suggestions_list_title") .default_text_style_800(styleSize: 16) Spacer() } .padding(.vertical, 10) .padding(.horizontal, 16) suggestionsList } } if magicSearch.isLoading { ProgressView() .controlSize(.large) .progressViewStyle(CircularProgressViewStyle(tint: .orangeMain500)) } } } .frame(maxWidth: .infinity) } .background(.white) if conversationForwardMessageViewModel.operationInProgress { PopupLoadingView() .background(.black.opacity(0.65)) .onDisappear { conversationForwardMessageViewModel.searchField = "" magicSearch.currentFilter = "" magicSearch.searchForContacts() conversationForwardMessageViewModel.forwardMessage() isShowConversationForwardMessageFragment = false if conversationForwardMessageViewModel.displayedConversation != nil { if SharedMainViewModel.shared.displayedConversation != nil { DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) { self.conversationViewModel.changeDisplayedChatRoom(conversationModel: conversationForwardMessageViewModel.displayedConversation!) } } else { self.conversationViewModel.changeDisplayedChatRoom(conversationModel: conversationForwardMessageViewModel.displayedConversation!) } } } } } .navigationTitle("") .navigationBarHidden(true) .onAppear { if !magicSearch.currentFilter.isEmpty || (self.contactsManager.lastSearch.isEmpty && self.contactsManager.lastSearchSuggestions.isEmpty) { magicSearch.currentFilter = "" magicSearch.searchForContacts() } } .onDisappear { conversationForwardMessageViewModel.searchField = "" magicSearch.currentFilter = "" magicSearch.searchForContacts() conversationForwardMessageViewModel.selectedMessage = nil withAnimation { isShowConversationForwardMessageFragment = false } } } .navigationViewStyle(StackNavigationViewStyle()) } var conversationsList: some View { ForEach(0..