1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
import SwiftUI
private enum RootTab: Hashable, CaseIterable {
case dashboard
case audit
case history
case inspect
case settings
var title: String {
switch self {
case .dashboard: return "Dashboard"
case .audit: return "Audit"
case .history: return "History"
case .inspect: return "Inspect"
case .settings: return "Settings"
}
}
var systemImage: String {
switch self {
case .dashboard: return "square.grid.2x2"
case .audit: return "checklist"
case .history: return "clock.arrow.trianglehead.counterclockwise.rotate.90"
case .inspect: return "magnifyingglass"
case .settings: return "gearshape"
}
}
}
struct RootTabView: View {
@Bindable var viewModel: DomainViewModel
@Environment(\.horizontalSizeClass) private var horizontalSizeClass
@State private var purchaseService = PurchaseService.shared
@State private var intentRouter = DomainDigIntentRouter.shared
@State private var detailDomain: TrackedDomain?
@State private var selectedTab: RootTab = FeatureAccessService.currentTier == .free ? .inspect : .dashboard
var body: some View {
let _ = purchaseService.currentTier
Group {
if horizontalSizeClass == .regular {
splitLayout
} else {
tabLayout
}
}
.sheet(isPresented: Binding(
get: { viewModel.isPaywallPresented },
set: { viewModel.isPaywallPresented = $0 }
)) {
PaywallView()
}
.alert(item: Binding(
get: { viewModel.upgradePrompt },
set: { viewModel.upgradePrompt = $0 }
)) { prompt in
Alert(
title: Text(prompt.title),
message: Text(prompt.message),
primaryButton: .default(Text("Open Paywall")) {
viewModel.upgradePrompt = nil
viewModel.isPaywallPresented = true
},
secondaryButton: .cancel(Text("Continue")) {
viewModel.upgradePrompt = nil
}
)
}
.sheet(item: $detailDomain) { trackedDomain in
NavigationStack {
TrackedDomainDetailView(viewModel: viewModel, trackedDomain: trackedDomain)
}
}
.onChange(of: purchaseService.currentTier) { _, newValue in
if newValue != .free, selectedTab == .inspect, viewModel.trackedDomains.isEmpty == false {
selectedTab = .dashboard
}
}
.onOpenURL { url in
guard let action = DomainDigDeepLink.action(from: url) else { return }
perform(action)
}
.onChange(of: intentRouter.pendingAction) { _, action in
consume(action)
}
.task {
consume(intentRouter.pendingAction)
}
}
// MARK: Layouts
/// Compact (iPhone, iPad slide-over): the classic tab bar.
private var tabLayout: some View {
TabView(selection: $selectedTab) {
ForEach(RootTab.allCases, id: \.self) { tab in
section(for: tab)
.tabItem {
Label(tab.title, systemImage: tab.systemImage)
}
.tag(tab)
}
}
}
/// Regular width (iPad, large iPhone landscape): two-column split view.
private var splitLayout: some View {
NavigationSplitView {
List(RootTab.allCases, id: \.self, selection: sidebarSelection) { tab in
Label(tab.title, systemImage: tab.systemImage)
.tag(tab)
}
.navigationTitle("DomainDig")
} detail: {
section(for: selectedTab)
}
}
private var sidebarSelection: Binding<RootTab?> {
Binding(
get: { selectedTab },
set: { selectedTab = $0 ?? selectedTab }
)
}
@ViewBuilder
private func section(for tab: RootTab) -> some View {
switch tab {
case .dashboard:
NavigationStack {
DashboardView(viewModel: viewModel)
}
case .audit:
NavigationStack {
AuditListView(viewModel: viewModel)
}
case .history:
NavigationStack {
HistoryView(viewModel: viewModel)
}
case .inspect:
ContentView(viewModel: viewModel)
case .settings:
NavigationStack {
SettingsView(viewModel: viewModel)
}
}
}
// MARK: Intent / deep-link routing
private func consume(_ action: DomainDigDeepLink.Action?) {
guard let action else { return }
intentRouter.pendingAction = nil
perform(action)
}
private func perform(_ action: DomainDigDeepLink.Action) {
switch action {
case let .inspect(domain):
viewModel.domain = domain
selectedTab = .inspect
viewModel.run()
case let .watch(domain):
// On success show the dashboard (where tracked domains live); on
// failure stay put so the upgrade/paywall alert surfaces in place.
if viewModel.trackDomain(domain: domain, availabilityStatus: nil) {
selectedTab = .dashboard
}
case let .detail(domain):
// Open the tracked domain's detail (e.g. from a widget tap). If it is
// no longer tracked, fall back to inspecting it.
if let tracked = viewModel.trackedDomains.first(
where: { $0.domain.caseInsensitiveCompare(domain) == .orderedSame }
) {
detailDomain = tracked
} else {
perform(.inspect(domain))
}
case .sweep:
selectedTab = .dashboard
viewModel.refreshAllTrackedDomains()
}
}
}
|