mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
* ios: fix sheets dismissing during biometric authentication
* remove AppSheet
* Revert "remove AppSheet"
This reverts commit 3aa1688cbd
.
* remove local auth request on sheet dismissal
* revert biometricAuth
52 lines
1.6 KiB
Swift
52 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,
|
|
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,
|
|
content: @escaping (T) -> Content
|
|
) -> some View where T: Identifiable, Content: View {
|
|
sheet(item: item, onDismiss: onDismiss) { it in
|
|
content(it).modifier(PrivacySensitive())
|
|
}
|
|
}
|
|
}
|