mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-05 02:26:01 +00:00
* ios: fix toolbar in member support chat * refactor * refactor nav buttons * ios: unread reports, members requiring attention * top bar destop (special case for 1 support chat) * put Navigation view higher in hierarchy * use nav title for knocking * refactor loading secondary chat, overlay fake toolbar for knocking chats * fix member reports toolbar * unread counter for member's support chat
53 lines
1.6 KiB
Swift
53 lines
1.6 KiB
Swift
//
|
|
// AppSheet.swift
|
|
// SimpleX (iOS)
|
|
//
|
|
// Created by Evgeny on 24/11/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
class AppSheetState: ObservableObject {
|
|
static let shared = AppSheetState()
|
|
@Published var scenePhaseActive: Bool = false
|
|
|
|
func redactionReasons(_ protectScreen: Bool) -> RedactionReasons {
|
|
!protectScreen || scenePhaseActive
|
|
? RedactionReasons()
|
|
: RedactionReasons.placeholder
|
|
}
|
|
}
|
|
|
|
private struct PrivacySensitive: ViewModifier {
|
|
@AppStorage(DEFAULT_PRIVACY_PROTECT_SCREEN) private var protectScreen = false
|
|
// Screen protection doesn't work for appSheet on iOS 16 if @Environment(\.scenePhase) is used instead of global state
|
|
@ObservedObject var appSheetState: AppSheetState = AppSheetState.shared
|
|
|
|
func body(content: Content) -> some View {
|
|
content.redacted(reason: appSheetState.redactionReasons(protectScreen))
|
|
}
|
|
}
|
|
|
|
extension View {
|
|
func appSheet<Content>(
|
|
isPresented: Binding<Bool>,
|
|
onDismiss: (() -> Void)? = nil,
|
|
@ViewBuilder content: @escaping () -> Content
|
|
) -> some View where Content: View {
|
|
sheet(isPresented: isPresented, onDismiss: onDismiss) {
|
|
content().modifier(PrivacySensitive())
|
|
}
|
|
}
|
|
|
|
func appSheet<T, Content>(
|
|
item: Binding<T?>,
|
|
onDismiss: (() -> Void)? = nil,
|
|
@ViewBuilder content: @escaping (T) -> Content
|
|
) -> some View where T: Identifiable, Content: View {
|
|
sheet(item: item, onDismiss: onDismiss) { it in
|
|
content(it).modifier(PrivacySensitive())
|
|
}
|
|
}
|
|
}
|