mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
* ios: User chooser UI * Change * Changes * update view * fix layout/refactor * fix preview * wider menu, update label * hide Your profiles button * Clickable background that hides userChooser * No click listener * Better animation * Disabled scrolling for small number of items * Separated scrollview and buttons * No transition * Re-indent * Limiting width by the longest label * UserManagerView * Adapted API * Hide user chooser after selection * Top counter, users refactor * Padding * use VStack to fix layout bug * eol * rename: rename to getUserChatData * update layout * s/semibold/medium * remove SettingsButton view * rename Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
240 lines
8.6 KiB
Swift
240 lines
8.6 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
|
|
@State private var showSettings = false
|
|
@State private var searchText = ""
|
|
@State private var showAddChat = false
|
|
@State var userPickerVisible = false
|
|
@State var selectedView: Int? = nil
|
|
|
|
var body: some View {
|
|
ZStack(alignment: .topLeading) {
|
|
NavigationView {
|
|
VStack {
|
|
if chatModel.chats.isEmpty {
|
|
onboardingButtons()
|
|
}
|
|
if chatModel.chats.count > 8 {
|
|
chatList.searchable(text: $searchText)
|
|
} else {
|
|
chatList
|
|
}
|
|
NavigationLink(destination: UserProfilesView().navigationTitle("Profiles"), tag: 0, selection: $selectedView) {
|
|
EmptyView()
|
|
}
|
|
}
|
|
}
|
|
.navigationViewStyle(.stack)
|
|
if userPickerVisible {
|
|
Rectangle().fill(.white.opacity(0.001)).onTapGesture {
|
|
withAnimation {
|
|
userPickerVisible.toggle()
|
|
}
|
|
}
|
|
}
|
|
UserPicker(
|
|
showSettings: $showSettings,
|
|
userPickerVisible: $userPickerVisible,
|
|
manageUsers: {
|
|
selectedView = 0
|
|
userPickerVisible = false
|
|
}
|
|
)
|
|
}
|
|
}
|
|
|
|
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 {
|
|
withAnimation {
|
|
userPickerVisible.toggle()
|
|
}
|
|
} label: {
|
|
let user = chatModel.currentUser ?? User.sampleData
|
|
let color = Color(uiColor: .tertiarySystemGroupedBackground)
|
|
HStack(spacing: 0) {
|
|
ProfileImage(imageStr: user.image, color: color)
|
|
.frame(width: 32, height: 32)
|
|
.padding(.trailing, 6)
|
|
.padding(.vertical, 6)
|
|
let unread = chatModel.users
|
|
.filter { !$0.user.activeUser }
|
|
.reduce(0, {cnt, u in cnt + u.unreadCount})
|
|
if unread > 0 {
|
|
unreadCounter(unread)
|
|
.padding(.leading, -12)
|
|
.padding(.top, -16)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
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)
|
|
}
|
|
}
|
|
}
|
|
ToolbarItem(placement: .navigationBarTrailing) {
|
|
switch chatModel.chatRunning {
|
|
case .some(true): NewChatButton(showAddChat: $showAddChat)
|
|
case .some(false): chatStoppedIcon()
|
|
case .none: EmptyView()
|
|
}
|
|
}
|
|
}
|
|
.sheet(isPresented: $showSettings) {
|
|
SettingsView(showSettings: $showSettings)
|
|
}
|
|
.background(
|
|
NavigationLink(
|
|
destination: chatView(),
|
|
isActive: Binding(
|
|
get: { chatModel.chatId != nil },
|
|
set: { _ in }
|
|
)
|
|
) { EmptyView() }
|
|
)
|
|
}
|
|
|
|
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()
|
|
.environmentObject(chatModel)
|
|
ChatListView()
|
|
.environmentObject(ChatModel())
|
|
}
|
|
}
|
|
}
|