mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-29 04:39:53 +00:00
* ios: digital password (instead of device auth) * set, ask, change password * kind of working, sometimes * ZSTack * fix cancel * update title * fix password showing after settings dismissed * disable button when 16 digits entered * fixes * layout on larger screens * do not disable auth when switching to system if system auth failed, refactor * fix enabling auth via the initial alert * support landscape orientation
230 lines
8.4 KiB
Swift
230 lines
8.4 KiB
Swift
//
|
|
// ChatListView.swift
|
|
// SimpleX
|
|
//
|
|
// Created by Evgeny Poberezkin on 27/01/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SimpleXChat
|
|
|
|
struct ChatListView: View {
|
|
@EnvironmentObject var chatModel: ChatModel
|
|
@Binding var showSettings: Bool
|
|
@State private var searchText = ""
|
|
@State private var showAddChat = false
|
|
@State var userPickerVisible = false
|
|
|
|
var body: some View {
|
|
ZStack(alignment: .topLeading) {
|
|
NavStackCompat(
|
|
isActive: Binding(
|
|
get: { ChatModel.shared.chatId != nil },
|
|
set: { _ in }
|
|
),
|
|
destination: chatView
|
|
) {
|
|
VStack {
|
|
if chatModel.chats.isEmpty {
|
|
onboardingButtons()
|
|
}
|
|
if chatModel.chats.count > 8 {
|
|
chatList.searchable(text: $searchText)
|
|
} else {
|
|
chatList
|
|
}
|
|
}
|
|
}
|
|
if userPickerVisible {
|
|
Rectangle().fill(.white.opacity(0.001)).onTapGesture {
|
|
withAnimation {
|
|
userPickerVisible.toggle()
|
|
}
|
|
}
|
|
}
|
|
UserPicker(showSettings: $showSettings, userPickerVisible: $userPickerVisible)
|
|
}
|
|
}
|
|
|
|
var chatList: some View {
|
|
List {
|
|
ForEach(filteredChats(), id: \.viewId) { chat in
|
|
ChatListNavLink(chat: chat)
|
|
.padding(.trailing, -16)
|
|
.disabled(chatModel.chatRunning != true)
|
|
}
|
|
}
|
|
.onChange(of: chatModel.chatId) { _ in
|
|
if chatModel.chatId == nil, let chatId = chatModel.chatToTop {
|
|
chatModel.chatToTop = nil
|
|
chatModel.popChat(chatId)
|
|
}
|
|
}
|
|
.onChange(of: chatModel.appOpenUrl) { _ in connectViaUrl() }
|
|
.onAppear() { connectViaUrl() }
|
|
.onDisappear() { withAnimation { userPickerVisible = false } }
|
|
.offset(x: -8)
|
|
.listStyle(.plain)
|
|
.navigationTitle("Your chats")
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.toolbar {
|
|
ToolbarItem(placement: .navigationBarLeading) {
|
|
Button {
|
|
if chatModel.users.filter { u in u.user.activeUser || !u.user.hidden }.count > 1 {
|
|
withAnimation {
|
|
userPickerVisible.toggle()
|
|
}
|
|
} else {
|
|
showSettings = true
|
|
}
|
|
} label: {
|
|
let user = chatModel.currentUser ?? User.sampleData
|
|
ZStack(alignment: .topTrailing) {
|
|
ProfileImage(imageStr: user.image, color: Color(uiColor: .quaternaryLabel))
|
|
.frame(width: 32, height: 32)
|
|
.padding(.trailing, 4)
|
|
let allRead = chatModel.users
|
|
.filter { u in !u.user.activeUser && !u.user.hidden }
|
|
.allSatisfy { u in u.unreadCount == 0 }
|
|
if !allRead {
|
|
unreadBadge(size: 12)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
ToolbarItem(placement: .principal) {
|
|
if (chatModel.incognito) {
|
|
HStack {
|
|
if (chatModel.chats.count > 8) {
|
|
Text("Your chats").font(.headline)
|
|
Spacer().frame(width: 16)
|
|
}
|
|
Image(systemName: "theatermasks").frame(maxWidth: 24, maxHeight: 24, alignment: .center).foregroundColor(.indigo)
|
|
}
|
|
} else {
|
|
Text("Your chats").font(.headline)
|
|
}
|
|
}
|
|
ToolbarItem(placement: .navigationBarTrailing) {
|
|
switch chatModel.chatRunning {
|
|
case .some(true): NewChatButton(showAddChat: $showAddChat)
|
|
case .some(false): chatStoppedIcon()
|
|
case .none: EmptyView()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private func unreadBadge(_ text: Text? = Text(" "), size: CGFloat = 18) -> some View {
|
|
Circle()
|
|
.frame(width: size, height: size)
|
|
.foregroundColor(.accentColor)
|
|
}
|
|
|
|
private func onboardingButtons() -> some View {
|
|
VStack(alignment: .trailing, spacing: 0) {
|
|
Path { p in
|
|
p.move(to: CGPoint(x: 8, y: 0))
|
|
p.addLine(to: CGPoint(x: 16, y: 10))
|
|
p.addLine(to: CGPoint(x: 0, y: 10))
|
|
p.addLine(to: CGPoint(x: 8, y: 0))
|
|
}
|
|
.fill(Color.accentColor)
|
|
.frame(width: 20, height: 10)
|
|
.padding(.trailing, 12)
|
|
|
|
connectButton("Tap to start a new chat") {
|
|
showAddChat = true
|
|
}
|
|
|
|
connectButton("or chat with the developers") {
|
|
DispatchQueue.main.async {
|
|
UIApplication.shared.open(simplexTeamURL)
|
|
}
|
|
}
|
|
.padding(.top, 10)
|
|
|
|
Spacer()
|
|
Text("You have no chats")
|
|
.foregroundColor(.secondary)
|
|
.frame(maxWidth: .infinity)
|
|
}
|
|
.padding(.trailing, 6)
|
|
.frame(maxHeight: .infinity)
|
|
}
|
|
|
|
private func connectButton(_ label: LocalizedStringKey, action: @escaping () -> Void) -> some View {
|
|
Button(action: action) {
|
|
Text(label)
|
|
.padding(.vertical, 10)
|
|
.padding(.horizontal, 20)
|
|
}
|
|
.background(Color.accentColor)
|
|
.foregroundColor(.white)
|
|
.clipShape(RoundedRectangle(cornerRadius: 16))
|
|
}
|
|
|
|
@ViewBuilder private func chatView() -> some View {
|
|
if let chatId = chatModel.chatId, let chat = chatModel.getChat(chatId) {
|
|
ChatView(chat: chat).onAppear {
|
|
loadChat(chat: chat)
|
|
}
|
|
}
|
|
}
|
|
|
|
private func filteredChats() -> [Chat] {
|
|
let s = searchText.trimmingCharacters(in: .whitespaces).localizedLowercase
|
|
return s == ""
|
|
? chatModel.chats
|
|
: chatModel.chats.filter { chat in
|
|
let contains = chat.chatInfo.chatViewName.localizedLowercase.contains(s)
|
|
switch chat.chatInfo {
|
|
case let .direct(contact):
|
|
return contains
|
|
|| contact.profile.displayName.localizedLowercase.contains(s)
|
|
|| contact.fullName.localizedLowercase.contains(s)
|
|
case .contactConnection: return false
|
|
default: return contains
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func chatStoppedIcon() -> some View {
|
|
Button {
|
|
AlertManager.shared.showAlertMsg(
|
|
title: "Chat is stopped",
|
|
message: "You can start chat via app Settings / Database or by restarting the app"
|
|
)
|
|
} label: {
|
|
Image(systemName: "exclamationmark.octagon.fill").foregroundColor(.red)
|
|
}
|
|
}
|
|
|
|
struct ChatListView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
let chatModel = ChatModel()
|
|
chatModel.chats = [
|
|
Chat(
|
|
chatInfo: ChatInfo.sampleData.direct,
|
|
chatItems: [ChatItem.getSample(1, .directSnd, .now, "hello")]
|
|
),
|
|
Chat(
|
|
chatInfo: ChatInfo.sampleData.group,
|
|
chatItems: [ChatItem.getSample(1, .directSnd, .now, "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.")]
|
|
),
|
|
Chat(
|
|
chatInfo: ChatInfo.sampleData.contactRequest,
|
|
chatItems: []
|
|
)
|
|
|
|
]
|
|
return Group {
|
|
ChatListView(showSettings: Binding.constant(false))
|
|
.environmentObject(chatModel)
|
|
ChatListView(showSettings: Binding.constant(false))
|
|
.environmentObject(ChatModel())
|
|
}
|
|
}
|
|
}
|