mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 10:29:58 +02:00
Approval modal: since the Share/QR sheet auto-opens after creating a transfer, it is always up when a receiver request arrives, and macOS silently drops a sheet presented while another is still dismissing — so the approval sheet never appeared. Drive the approval sheet from explicit state (not a constant binding) and, on macOS, defer its presentation one dismiss-beat after closing the Share/QR sheet so the hand-off is serialized. Still a non-dismissable sheet; iOS timing unchanged. Sandboxed file sharing: the macOS picker released its security scope immediately, so the core's later import failed with EPERM under the App Store sandbox (the non-sandboxed .dmg was unaffected). Capture a security-scoped bookmark at pick time and re-acquire access across shareFiles() — during which the core imports the bytes — mirroring the receive-folder scoped-access pattern.
251 lines
8.6 KiB
Swift
251 lines
8.6 KiB
Swift
import SFSafeSymbols
|
|
import SwiftUI
|
|
|
|
/// App root, ported from `App.kt`. Owns the object graph and feature models, wires
|
|
/// the adaptive shell, floating actions, snackbar host, and approval modal.
|
|
struct RootView: View {
|
|
@StateObject private var graph: AppGraph
|
|
@StateObject private var appModel: AppModel
|
|
@StateObject private var sendModel: SendModel
|
|
@StateObject private var receiveModel: ReceiveModel
|
|
@StateObject private var settingsModel: SettingsModel
|
|
@ObservedObject private var messages: UiMessageController
|
|
@ObservedObject private var approvals: ApprovalCoordinator
|
|
|
|
@Environment(\.scenePhase) private var scenePhase
|
|
|
|
/// Drives the approval sheet; toggled from the pending-approval `onChange` so the
|
|
/// presentation can be deferred until the Share/QR sheet has dismissed on macOS.
|
|
@State private var showApproval = false
|
|
|
|
init(dependencies: AppDependencies) {
|
|
let graph = AppGraph(dependencies: dependencies)
|
|
_graph = StateObject(wrappedValue: graph)
|
|
_appModel = StateObject(wrappedValue: AppModel(
|
|
environment: dependencies.environment,
|
|
repository: graph.coreRepository,
|
|
preferences: graph.preferencesRepository,
|
|
messages: graph.messages
|
|
))
|
|
_sendModel = StateObject(wrappedValue: SendModel(
|
|
repository: graph.coreRepository,
|
|
fileSystemService: dependencies.fileSystemService,
|
|
preferences: graph.preferencesRepository,
|
|
filePreviewRepository: graph.filePreviewRepository,
|
|
messages: graph.messages
|
|
))
|
|
_receiveModel = StateObject(wrappedValue: ReceiveModel(
|
|
repository: graph.coreRepository,
|
|
fileSystemService: dependencies.fileSystemService,
|
|
preferences: graph.preferencesRepository,
|
|
messages: graph.messages
|
|
))
|
|
_settingsModel = StateObject(wrappedValue: SettingsModel(
|
|
environment: dependencies.environment,
|
|
deviceInfoProvider: dependencies.deviceInfoProvider,
|
|
fileSystemService: dependencies.fileSystemService,
|
|
repository: graph.coreRepository,
|
|
preferences: graph.preferencesRepository,
|
|
notifications: dependencies.notificationService,
|
|
messages: graph.messages,
|
|
bugReports: NoopBugReportService()
|
|
))
|
|
messages = graph.messages
|
|
approvals = graph.approvalCoordinator
|
|
}
|
|
|
|
var body: some View {
|
|
GeometryReader { proxy in
|
|
let windowClass = windowClassFor(width: proxy.size.width)
|
|
let isDark = resolveDarkTheme(appModel.themeMode, systemDark: systemDark)
|
|
ZStack {
|
|
navigation(windowClass: windowClass)
|
|
SnackbarHost(controller: messages)
|
|
ApprovalModalHost(
|
|
isPresented: $showApproval,
|
|
state: approvals.state,
|
|
onAccept: approvals.accept,
|
|
onRefuse: approvals.refuse
|
|
)
|
|
}
|
|
.overlay {
|
|
// A small, unobtrusive indicator while the core finishes its async
|
|
// startup — otherwise the lists look empty and the app feels stalled.
|
|
if !sendModel.coreState.isInitialized {
|
|
CoreStartingOverlay()
|
|
}
|
|
}
|
|
.animation(.easeInOut(duration: 0.25), value: sendModel.coreState.isInitialized)
|
|
.vniDropTheme(isDark: isDark)
|
|
.preferredColorScheme(appModel.themeMode.preferredColorScheme)
|
|
.environment(\.vniColors, isDark ? .dark : .light)
|
|
}
|
|
.platformPickers(settingsModel: settingsModel)
|
|
.task { await consumeExternalInvitations() }
|
|
.onChange(of: scenePhase) { _, phase in
|
|
switch phase {
|
|
case .active:
|
|
graph.visibility.setForeground(true)
|
|
graph.backgroundActivity.didBecomeForeground()
|
|
settingsModel.refreshNotificationPermission()
|
|
// Reconcile against the durable snapshot: while the window was
|
|
// unfocused/occluded (common on macOS) live events may not have
|
|
// rendered, leaving progress/status stale.
|
|
Task { _ = await graph.coreRepository.refresh() }
|
|
case .background:
|
|
graph.visibility.setForeground(false)
|
|
// Hold the process open for iOS's grace window so an active
|
|
// transfer can finish and notify before suspension.
|
|
graph.backgroundActivity.didEnterBackground()
|
|
case .inactive:
|
|
graph.visibility.setForeground(false)
|
|
@unknown default:
|
|
break
|
|
}
|
|
}
|
|
// A pending approval is a blocking modal. Close the sender's detail panel
|
|
// (e.g. the Share/QR sheet) first, then present the approval sheet — but on
|
|
// macOS a sheet presented while another is still dismissing is silently
|
|
// dropped, so defer the presentation until that dismissal finishes.
|
|
.onChange(of: approvals.state.current?.id) { _, id in
|
|
guard id != nil else { showApproval = false; return }
|
|
let wasShowingSheet = sendModel.state.detailPanel != nil
|
|
sendModel.closeDetailPanel()
|
|
#if os(macOS)
|
|
if wasShowingSheet {
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.45) {
|
|
if approvals.state.current != nil { showApproval = true }
|
|
}
|
|
} else {
|
|
showApproval = true
|
|
}
|
|
#else
|
|
_ = wasShowingSheet
|
|
showApproval = true
|
|
#endif
|
|
}
|
|
#if os(macOS)
|
|
// macOS keeps `scenePhase == .active` even when the app loses focus, so
|
|
// drive foreground/background off NSApplication's active state instead —
|
|
// otherwise notifications (only posted when unfocused) never fire.
|
|
.onReceive(NotificationCenter.default.publisher(for: NSApplication.didResignActiveNotification)) { _ in
|
|
graph.visibility.setForeground(false)
|
|
}
|
|
.onReceive(NotificationCenter.default.publisher(for: NSApplication.didBecomeActiveNotification)) { _ in
|
|
graph.visibility.setForeground(true)
|
|
settingsModel.refreshNotificationPermission()
|
|
Task { _ = await graph.coreRepository.refresh() }
|
|
}
|
|
#endif
|
|
}
|
|
|
|
/// iOS uses a bottom tab bar; macOS uses a native source-list sidebar so each
|
|
/// screen's toolbar lives in the detail column instead of the shared title bar.
|
|
@ViewBuilder
|
|
private func navigation(windowClass: WindowClass) -> some View {
|
|
#if os(macOS)
|
|
NavigationSplitView {
|
|
List(AppDestination.allCases, selection: sidebarBinding) { destination in
|
|
Label(String(localized: destination.labelKey), systemSymbol: destination.systemSymbol)
|
|
.tag(destination)
|
|
}
|
|
.navigationSplitViewColumnWidth(min: 180, ideal: 200, max: 260)
|
|
} detail: {
|
|
screen(for: appModel.destination, windowClass: windowClass)
|
|
}
|
|
#else
|
|
TabView(selection: destinationBinding) {
|
|
ForEach(AppDestination.allCases) { destination in
|
|
screen(for: destination, windowClass: windowClass)
|
|
.tabItem {
|
|
Label(String(localized: destination.labelKey), systemSymbol: destination.systemSymbol)
|
|
}
|
|
.tag(destination)
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
private var sidebarBinding: Binding<AppDestination?> {
|
|
Binding(
|
|
get: { appModel.destination },
|
|
set: { newValue in
|
|
if let value = newValue {
|
|
Task { @MainActor in appModel.selectDestination(value) }
|
|
}
|
|
}
|
|
)
|
|
}
|
|
|
|
private var destinationBinding: Binding<AppDestination> {
|
|
// Defer the write out of the current view-update cycle: TabView reconciles
|
|
// its selection synchronously during body evaluation on macOS, and mutating
|
|
// the published `destination` there triggers a "publishing within view
|
|
// updates" warning.
|
|
Binding(get: { appModel.destination }, set: { newValue in
|
|
Task { @MainActor in appModel.selectDestination(newValue) }
|
|
})
|
|
}
|
|
|
|
@ViewBuilder
|
|
private func screen(for destination: AppDestination, windowClass: WindowClass) -> some View {
|
|
switch destination {
|
|
case .send: SendScreen(model: sendModel, windowClass: windowClass)
|
|
case .receive: ReceiveScreen(model: receiveModel, windowClass: windowClass)
|
|
case .settings: SettingsScreen(model: settingsModel, windowClass: windowClass)
|
|
}
|
|
}
|
|
|
|
private var systemDark: Bool {
|
|
#if os(iOS)
|
|
return UITraitCollection.current.userInterfaceStyle == .dark
|
|
#else
|
|
return NSApp.effectiveAppearance.bestMatch(from: [.darkAqua, .aqua]) == .darkAqua
|
|
#endif
|
|
}
|
|
|
|
private func consumeExternalInvitations() async {
|
|
for await invitation in graph.dependencies.externalInvitations.invitations {
|
|
appModel.selectDestination(.receive)
|
|
switch invitation {
|
|
case .success(let raw):
|
|
receiveModel.onInvitationResult(.invitationFile, .success(raw))
|
|
case .failure(let error):
|
|
receiveModel.onInvitationResult(.invitationFile, .failure(error))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// A full-window cover with a centered spinner shown while the core is starting.
|
|
private struct CoreStartingOverlay: View {
|
|
var body: some View {
|
|
ZStack {
|
|
backgroundColor.ignoresSafeArea()
|
|
VStack(spacing: 16) {
|
|
ProgressView().controlSize(.large)
|
|
Text(String(localized: L10n.App.starting))
|
|
.font(.headline)
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
}
|
|
.transition(.opacity)
|
|
.accessibilityElement(children: .combine)
|
|
.accessibilityLabel(Text(String(localized: L10n.App.starting)))
|
|
}
|
|
|
|
private var backgroundColor: Color {
|
|
#if os(iOS)
|
|
Color(uiColor: .systemBackground)
|
|
#else
|
|
Color(nsColor: .windowBackgroundColor)
|
|
#endif
|
|
}
|
|
}
|
|
|
|
#if os(iOS)
|
|
import UIKit
|
|
#else
|
|
import AppKit
|
|
#endif
|