mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
* wip
* refactor, fix bindings
* wip
* wip
* fixes
* wip
* information map, logos
* global conditions hack
* restructure
* restructure
* texts
* text
* restructure
* wip
* restructure
* rename
* wip
* conditions for all
* comment
* onboarding wip
* onboarding wip
* fix paddings
* fix paddings
* wip
* fix padding
* onboarding wip
* nav link instead of sheet
* pretty button
* large titles
* notifications mode button style
* reenable demo operator
* Revert "reenable demo operator"
This reverts commit 42111eb333
.
* padding
* reenable demo operator
* refactor (removes additional model api)
* style
* bold
* bold
* light/dark
* fix button
* comment
* wip
* remove preset
* new types
* api types
* apis
* smp and xftp servers in single view
* test operator servers, refactor
* save in main view
* better progress
* better in progress
* remove shadow
* update
* apis
* conditions view wip
* load text
* remove custom servers button from onboarding, open already conditions in nav link
* allow to continue with simplex on onboarding
* footer
* existing users notice
* fix to not show nothing on no action
* disable notice
* review later
* disable notice
* wip
* wip
* wip
* wip
* optional tag
* fix
* fix tags
* fix
* wip
* remove coding keys
* fix onboarding
* rename
* rework model wip
* wip
* wip
* wip
* fix
* wip
* wip
* delete
* simplify
* wip
* fix delete
* ios: server operators ui wip
* refactor
* edited
* save servers on dismiss/back
* ios: add address card and remove address from onboarding (#5181)
* ios: add address card and remove address from onboarding
* allow for address creation in info when open via card
* conditions interactions wip
* conditions interactions wip
* fix
* wip
* wip
* wip
* wip
* rename
* wip
* fix
* remove operator binding
* fix set enabled
* rename
* cleanup
* text
* fix info view dark mode
* update lib
* ios: operators & servers validation
* fix
* ios: align onboarding style
* ios: align onboarding style
* ios: operators info (#5207)
* ios: operators info
* update
* update texts
* texts
---------
Co-authored-by: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com>
---------
Co-authored-by: Diogo <diogofncunha@gmail.com>
Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com>
344 lines
13 KiB
Swift
344 lines
13 KiB
Swift
//
|
|
// ChooseServerOperators.swift
|
|
// SimpleX (iOS)
|
|
//
|
|
// Created by spaced4ndy on 31.10.2024.
|
|
// Copyright © 2024 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SimpleXChat
|
|
|
|
struct OnboardingButtonStyle: ButtonStyle {
|
|
@EnvironmentObject var theme: AppTheme
|
|
var isDisabled: Bool = false
|
|
|
|
func makeBody(configuration: Configuration) -> some View {
|
|
configuration.label
|
|
.font(.system(size: 17, weight: .semibold))
|
|
.padding()
|
|
.frame(maxWidth: .infinity)
|
|
.background(
|
|
isDisabled
|
|
? (
|
|
theme.colors.isLight
|
|
? .gray.opacity(0.17)
|
|
: .gray.opacity(0.27)
|
|
)
|
|
: theme.colors.primary
|
|
)
|
|
.foregroundColor(
|
|
isDisabled
|
|
? (
|
|
theme.colors.isLight
|
|
? .gray.opacity(0.4)
|
|
: .white.opacity(0.2)
|
|
)
|
|
: .white
|
|
)
|
|
.cornerRadius(16)
|
|
.scaleEffect(configuration.isPressed ? 0.95 : 1.0)
|
|
}
|
|
}
|
|
|
|
struct ChooseServerOperators: View {
|
|
@Environment(\.dismiss) var dismiss: DismissAction
|
|
@Environment(\.colorScheme) var colorScheme: ColorScheme
|
|
@EnvironmentObject var theme: AppTheme
|
|
var onboarding: Bool
|
|
@State private var showInfoSheet = false
|
|
@State private var serverOperators: [ServerOperator] = []
|
|
@State private var selectedOperatorIds = Set<Int64>()
|
|
@State private var reviewConditionsNavLinkActive = false
|
|
@State private var justOpened = true
|
|
|
|
var selectedOperators: [ServerOperator] { serverOperators.filter { selectedOperatorIds.contains($0.operatorId) } }
|
|
|
|
var body: some View {
|
|
NavigationView {
|
|
GeometryReader { g in
|
|
ScrollView {
|
|
VStack(alignment: .leading, spacing: 20) {
|
|
Text("Choose operators")
|
|
.font(.largeTitle)
|
|
.bold()
|
|
|
|
infoText()
|
|
|
|
Spacer()
|
|
|
|
ForEach(serverOperators) { srvOperator in
|
|
operatorCheckView(srvOperator)
|
|
}
|
|
|
|
Spacer()
|
|
|
|
let reviewForOperators = selectedOperators.filter { !$0.conditionsAcceptance.conditionsAccepted }
|
|
let canReviewLater = reviewForOperators.allSatisfy { $0.conditionsAcceptance.usageAllowed }
|
|
|
|
VStack(spacing: 8) {
|
|
if !reviewForOperators.isEmpty {
|
|
reviewConditionsButton()
|
|
} else {
|
|
continueButton()
|
|
}
|
|
if onboarding {
|
|
Text("You can disable operators and configure your servers in Network & servers settings.")
|
|
.multilineTextAlignment(.center)
|
|
.font(.footnote)
|
|
.padding(.horizontal, 32)
|
|
}
|
|
}
|
|
.padding(.bottom)
|
|
|
|
if !onboarding && !reviewForOperators.isEmpty {
|
|
VStack(spacing: 8) {
|
|
reviewLaterButton()
|
|
(
|
|
Text("Conditions will be accepted for enabled operators after 30 days.")
|
|
+ Text(" ")
|
|
+ Text("You can configure operators in Network & servers settings.")
|
|
)
|
|
.multilineTextAlignment(.center)
|
|
.font(.footnote)
|
|
.padding(.horizontal, 32)
|
|
}
|
|
.disabled(!canReviewLater)
|
|
.padding(.bottom)
|
|
}
|
|
}
|
|
.frame(minHeight: g.size.height)
|
|
}
|
|
.onAppear {
|
|
if justOpened {
|
|
serverOperators = ChatModel.shared.conditions.serverOperators
|
|
selectedOperatorIds = Set(serverOperators.filter { $0.enabled }.map { $0.operatorId })
|
|
justOpened = false
|
|
}
|
|
}
|
|
.sheet(isPresented: $showInfoSheet) {
|
|
ChooseServerOperatorsInfoView()
|
|
}
|
|
}
|
|
.frame(maxHeight: .infinity)
|
|
.padding()
|
|
}
|
|
}
|
|
|
|
private func infoText() -> some View {
|
|
HStack(spacing: 12) {
|
|
Image(systemName: "info.circle")
|
|
.resizable()
|
|
.scaledToFit()
|
|
.frame(width: 20, height: 20)
|
|
.foregroundColor(theme.colors.primary)
|
|
.onTapGesture {
|
|
showInfoSheet = true
|
|
}
|
|
|
|
Text("Select operators, whose servers you will be using.")
|
|
}
|
|
}
|
|
|
|
@ViewBuilder private func operatorCheckView(_ serverOperator: ServerOperator) -> some View {
|
|
let checked = selectedOperatorIds.contains(serverOperator.operatorId)
|
|
let icon = checked ? "checkmark.circle.fill" : "circle"
|
|
let iconColor = checked ? theme.colors.primary : Color(uiColor: .tertiaryLabel).asAnotherColorFromSecondary(theme)
|
|
HStack(spacing: 10) {
|
|
Image(serverOperator.largeLogo(colorScheme))
|
|
.resizable()
|
|
.scaledToFit()
|
|
.frame(height: 48)
|
|
Spacer()
|
|
Image(systemName: icon)
|
|
.resizable()
|
|
.scaledToFit()
|
|
.frame(width: 26, height: 26)
|
|
.foregroundColor(iconColor)
|
|
}
|
|
.background(Color(.systemBackground))
|
|
.padding()
|
|
.clipShape(RoundedRectangle(cornerRadius: 18))
|
|
.overlay(
|
|
RoundedRectangle(cornerRadius: 18)
|
|
.stroke(Color(uiColor: .secondarySystemFill), lineWidth: 2)
|
|
)
|
|
.padding(.horizontal, 2)
|
|
.onTapGesture {
|
|
if checked {
|
|
selectedOperatorIds.remove(serverOperator.operatorId)
|
|
} else {
|
|
selectedOperatorIds.insert(serverOperator.operatorId)
|
|
}
|
|
}
|
|
}
|
|
|
|
private func reviewConditionsButton() -> some View {
|
|
ZStack {
|
|
Button {
|
|
reviewConditionsNavLinkActive = true
|
|
} label: {
|
|
Text("Review conditions")
|
|
}
|
|
.buttonStyle(OnboardingButtonStyle(isDisabled: selectedOperatorIds.isEmpty))
|
|
.disabled(selectedOperatorIds.isEmpty)
|
|
|
|
NavigationLink(isActive: $reviewConditionsNavLinkActive) {
|
|
reviewConditionsDestinationView()
|
|
} label: {
|
|
EmptyView()
|
|
}
|
|
.frame(width: 1, height: 1)
|
|
.hidden()
|
|
}
|
|
}
|
|
|
|
private func continueButton() -> some View {
|
|
Button {
|
|
continueToNextStep()
|
|
} label: {
|
|
Text("Continue")
|
|
}
|
|
.buttonStyle(OnboardingButtonStyle(isDisabled: selectedOperatorIds.isEmpty))
|
|
.disabled(selectedOperatorIds.isEmpty)
|
|
}
|
|
|
|
private func reviewLaterButton() -> some View {
|
|
Button {
|
|
continueToNextStep()
|
|
} label: {
|
|
Text("Review later")
|
|
}
|
|
.buttonStyle(.borderless)
|
|
}
|
|
|
|
private func continueToNextStep() {
|
|
if onboarding {
|
|
withAnimation {
|
|
onboardingStageDefault.set(.step4_SetNotificationsMode)
|
|
ChatModel.shared.onboardingStage = .step4_SetNotificationsMode
|
|
}
|
|
} else {
|
|
dismiss()
|
|
}
|
|
}
|
|
|
|
private func reviewConditionsDestinationView() -> some View {
|
|
reviewConditionsView()
|
|
.navigationTitle("Conditions of use")
|
|
.navigationBarTitleDisplayMode(.large)
|
|
.modifier(ThemedBackground(grouped: true))
|
|
}
|
|
|
|
@ViewBuilder private func reviewConditionsView() -> some View {
|
|
let operatorsWithConditionsAccepted = ChatModel.shared.conditions.serverOperators.filter { $0.conditionsAcceptance.conditionsAccepted }
|
|
let acceptForOperators = selectedOperators.filter { !$0.conditionsAcceptance.conditionsAccepted }
|
|
VStack(alignment: .leading, spacing: 20) {
|
|
if !operatorsWithConditionsAccepted.isEmpty {
|
|
Text("Conditions are already accepted for following operator(s): **\(operatorsWithConditionsAccepted.map { $0.legalName_ }.joined(separator: ", "))**.")
|
|
Text("Same conditions will apply to operator(s): **\(acceptForOperators.map { $0.legalName_ }.joined(separator: ", "))**.")
|
|
} else {
|
|
Text("Conditions will be accepted for operator(s): **\(acceptForOperators.map { $0.legalName_ }.joined(separator: ", "))**.")
|
|
}
|
|
ConditionsTextView()
|
|
acceptConditionsButton()
|
|
.padding(.bottom)
|
|
.padding(.bottom)
|
|
}
|
|
.padding(.horizontal)
|
|
.frame(maxHeight: .infinity)
|
|
}
|
|
|
|
private func acceptConditionsButton() -> some View {
|
|
Button {
|
|
Task {
|
|
do {
|
|
let conditionsId = ChatModel.shared.conditions.currentConditions.conditionsId
|
|
let acceptForOperators = selectedOperators.filter { !$0.conditionsAcceptance.conditionsAccepted }
|
|
let operatorIds = acceptForOperators.map { $0.operatorId }
|
|
let r = try await acceptConditions(conditionsId: conditionsId, operatorIds: operatorIds)
|
|
await MainActor.run {
|
|
ChatModel.shared.conditions = r
|
|
}
|
|
if let enabledOperators = enabledOperators(r.serverOperators) {
|
|
let r2 = try await setServerOperators(operators: enabledOperators)
|
|
await MainActor.run {
|
|
ChatModel.shared.conditions = r2
|
|
continueToNextStep()
|
|
}
|
|
} else {
|
|
await MainActor.run {
|
|
continueToNextStep()
|
|
}
|
|
}
|
|
} catch let error {
|
|
await MainActor.run {
|
|
showAlert(
|
|
NSLocalizedString("Error accepting conditions", comment: "alert title"),
|
|
message: responseError(error)
|
|
)
|
|
}
|
|
}
|
|
}
|
|
} label: {
|
|
Text("Accept conditions")
|
|
}
|
|
.buttonStyle(OnboardingButtonStyle())
|
|
}
|
|
|
|
private func enabledOperators(_ operators: [ServerOperator]) -> [ServerOperator]? {
|
|
var ops = operators
|
|
if !ops.isEmpty {
|
|
for i in 0..<ops.count {
|
|
var op = ops[i]
|
|
op.enabled = selectedOperatorIds.contains(op.operatorId)
|
|
ops[i] = op
|
|
}
|
|
let haveSMPStorage = ops.contains(where: { $0.enabled && $0.smpRoles.storage })
|
|
let haveSMPProxy = ops.contains(where: { $0.enabled && $0.smpRoles.proxy })
|
|
let haveXFTPStorage = ops.contains(where: { $0.enabled && $0.xftpRoles.storage })
|
|
let haveXFTPProxy = ops.contains(where: { $0.enabled && $0.xftpRoles.proxy })
|
|
if haveSMPStorage && haveSMPProxy && haveXFTPStorage && haveXFTPProxy {
|
|
return ops
|
|
} else if let firstEnabledIndex = ops.firstIndex(where: { $0.enabled }) {
|
|
var op = ops[firstEnabledIndex]
|
|
if !haveSMPStorage { op.smpRoles.storage = true }
|
|
if !haveSMPProxy { op.smpRoles.proxy = true }
|
|
if !haveXFTPStorage { op.xftpRoles.storage = true }
|
|
if !haveXFTPProxy { op.xftpRoles.proxy = true }
|
|
ops[firstEnabledIndex] = op
|
|
return ops
|
|
} else { // Shouldn't happen - view doesn't let to proceed if no operators are enabled
|
|
return nil
|
|
}
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ChooseServerOperatorsInfoView: View {
|
|
var body: some View {
|
|
VStack(alignment: .leading) {
|
|
Text("Why choose multiple operators")
|
|
.font(.largeTitle)
|
|
.padding(.vertical)
|
|
ScrollView {
|
|
VStack(alignment: .leading) {
|
|
Group {
|
|
Text("Selecting multiple operators improves protection of your communication graph.")
|
|
Text("TODO Better explanation")
|
|
}
|
|
.padding(.bottom)
|
|
}
|
|
}
|
|
}
|
|
.padding()
|
|
.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .top)
|
|
.modifier(ThemedBackground())
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
ChooseServerOperators(onboarding: true)
|
|
}
|