2023-03-20 10:00:01 +00:00
|
|
|
//
|
|
|
|
// LockableView.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 3/20/23.
|
|
|
|
// Copyright (c) 2023 Davide De Rosa. All rights reserved.
|
|
|
|
//
|
|
|
|
// https://github.com/passepartoutvpn
|
|
|
|
//
|
|
|
|
// This file is part of Passepartout.
|
|
|
|
//
|
|
|
|
// Passepartout is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Passepartout is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct LockableView<Content: View, LockedContent: View>: View {
|
|
|
|
@Binding var locksInBackground: Bool
|
|
|
|
|
|
|
|
let content: () -> Content
|
|
|
|
|
|
|
|
let lockedContent: () -> LockedContent
|
|
|
|
|
2023-03-25 15:47:08 +00:00
|
|
|
let unlockBlock: (Binding<Bool>) -> Void
|
|
|
|
|
2023-03-20 10:00:01 +00:00
|
|
|
@Environment(\.scenePhase) private var scenePhase
|
|
|
|
|
2023-03-25 15:47:08 +00:00
|
|
|
@ObservedObject private var lock: Lock = .shared
|
2023-03-20 10:00:01 +00:00
|
|
|
|
2023-03-25 15:47:08 +00:00
|
|
|
private var isLocked: Binding<Bool> {
|
|
|
|
.init {
|
|
|
|
Lock.shared.isActive
|
|
|
|
} set: {
|
|
|
|
Lock.shared.isActive = $0
|
|
|
|
}
|
|
|
|
}
|
2023-03-20 10:00:01 +00:00
|
|
|
|
|
|
|
var body: some View {
|
2023-03-25 15:47:08 +00:00
|
|
|
ZStack {
|
|
|
|
content()
|
|
|
|
if isLocked.wrappedValue {
|
2023-03-20 10:00:01 +00:00
|
|
|
lockedContent()
|
|
|
|
}
|
|
|
|
}.onChange(of: scenePhase, perform: onScenePhase)
|
|
|
|
}
|
|
|
|
|
|
|
|
private func onScenePhase(_ scenePhase: ScenePhase) {
|
|
|
|
switch scenePhase {
|
|
|
|
case .active:
|
|
|
|
unlockIfNeeded()
|
|
|
|
|
|
|
|
case .inactive:
|
|
|
|
lockIfNeeded()
|
|
|
|
|
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func lockIfNeeded() {
|
|
|
|
guard locksInBackground else {
|
|
|
|
return
|
|
|
|
}
|
2023-03-25 15:47:08 +00:00
|
|
|
isLocked.wrappedValue = true
|
2023-03-20 10:00:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func unlockIfNeeded() {
|
2023-03-20 13:12:42 +00:00
|
|
|
guard locksInBackground else {
|
2023-03-25 15:47:08 +00:00
|
|
|
isLocked.wrappedValue = false
|
2023-03-20 10:00:01 +00:00
|
|
|
return
|
|
|
|
}
|
2023-03-25 15:47:08 +00:00
|
|
|
guard isLocked.wrappedValue else {
|
2023-03-20 10:00:01 +00:00
|
|
|
return
|
|
|
|
}
|
2023-03-25 15:47:08 +00:00
|
|
|
unlockBlock(isLocked)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class Lock: ObservableObject {
|
|
|
|
static let shared = Lock()
|
|
|
|
|
|
|
|
@Published var isActive = true
|
|
|
|
|
|
|
|
private init() {
|
2023-03-20 10:00:01 +00:00
|
|
|
}
|
|
|
|
}
|