This repository was archived by the owner on Feb 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMainWindowController.swift
335 lines (273 loc) · 12.2 KB
/
MainWindowController.swift
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
//
// MainWindowController.swift
//
// Copyright © 2020 DuckDuckGo. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
import Cocoa
import Combine
import Common
@MainActor
final class MainWindowController: NSWindowController {
private var fireViewModel: FireViewModel
private static var knownFullScreenMouseDetectionWindows = Set<NSValue>()
var mainViewController: MainViewController {
// swiftlint:disable force_cast
contentViewController as! MainViewController
// swiftlint:enable force_cast
}
var titlebarView: NSView? {
return window?.standardWindowButton(.closeButton)?.superview
}
init(mainViewController: MainViewController, popUp: Bool, fireViewModel: FireViewModel? = nil) {
let size = mainViewController.view.frame.size
let moveToCenter = CGAffineTransform(translationX: ((NSScreen.main?.frame.width ?? 1024) - size.width) / 2,
y: ((NSScreen.main?.frame.height ?? 790) - size.height) / 2)
let frame = NSRect(origin: (NSScreen.main?.frame.origin ?? .zero).applying(moveToCenter),
size: size)
let window = popUp ? PopUpWindow(frame: frame) : MainWindow(frame: frame)
window.contentViewController = mainViewController
self.fireViewModel = fireViewModel ?? FireCoordinator.fireViewModel
super.init(window: window)
setupWindow()
setupToolbar()
subscribeToTrafficLightsAlpha()
subscribeToBurningData()
subscribeToResolutionChange()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
deinit {
NotificationCenter.default.removeObserver(self)
}
private var shouldShowOnboarding: Bool {
#if DEBUG
return false
#else
let onboardingIsComplete = OnboardingViewModel.isOnboardingFinished || LocalStatisticsStore().waitlistUnlocked
return !onboardingIsComplete
#endif
}
private func setupWindow() {
window?.delegate = self
if shouldShowOnboarding {
mainViewController.tabCollectionViewModel.selectedTabViewModel?.tab.startOnboarding()
}
}
private func subscribeToResolutionChange() {
NotificationCenter.default.addObserver(self, selector: #selector(didChangeScreenParameters), name: NSApplication.didChangeScreenParametersNotification, object: NSApp)
}
@objc
private func didChangeScreenParameters(_ notification: NSNotification) {
if let visibleWindowFrame = window?.screen?.visibleFrame,
let windowFrame = window?.frame {
if windowFrame.width > visibleWindowFrame.width || windowFrame.height > visibleWindowFrame.height {
window?.performZoom(nil)
}
}
}
private func setupToolbar() {
// Empty toolbar ensures that window buttons are centered vertically
window?.toolbar = NSToolbar()
window?.toolbar?.showsBaselineSeparator = true
moveTabBarView(toTitlebarView: true)
}
private var trafficLightsAlphaCancellable: AnyCancellable?
private func subscribeToTrafficLightsAlpha() {
let tabBarViewController = mainViewController.tabBarViewController
// slide tabs to the left in full screen
trafficLightsAlphaCancellable = window?.standardWindowButton(.closeButton)?
.publisher(for: \.alphaValue)
.map { alphaValue in TabBarViewController.HorizontalSpace.pinnedTabsScrollViewPadding.rawValue * alphaValue }
.assign(to: \.constant, onWeaklyHeld: tabBarViewController.pinnedTabsViewLeadingConstraint)
}
private var burningDataCancellable: AnyCancellable?
private func subscribeToBurningData() {
burningDataCancellable = fireViewModel.fire.$burningData
.dropFirst()
.removeDuplicates()
.sink(receiveValue: { [weak self] burningData in
guard let self else { return }
self.userInteraction(prevented: burningData != nil)
self.moveTabBarView(toTitlebarView: burningData == nil)
})
}
func userInteraction(prevented: Bool) {
mainViewController.tabCollectionViewModel.changesEnabled = !prevented
mainViewController.tabCollectionViewModel.selectedTabViewModel?.tab.contentChangeEnabled = !prevented
mainViewController.tabBarViewController.fireButton.isEnabled = !prevented
mainViewController.navigationBarViewController.controlsForUserPrevention.forEach { $0?.isEnabled = !prevented }
NSApplication.shared.mainMenuTyped.autoupdatingMenusForUserPrevention.forEach { $0.autoenablesItems = !prevented }
NSApplication.shared.mainMenuTyped.menuItemsForUserPrevention.forEach { $0.isEnabled = !prevented }
if prevented {
window?.styleMask.remove(.closable)
mainViewController.view.makeMeFirstResponder()
} else {
window?.styleMask.update(with: .closable)
mainViewController.adjustFirstResponder()
}
}
private func moveTabBarView(toTitlebarView: Bool) {
guard let newParentView = toTitlebarView ? titlebarView : mainViewController.view else {
assertionFailure("Failed to move tab bar view")
return
}
let tabBarViewController = mainViewController.tabBarViewController
tabBarViewController.view.removeFromSuperview()
if toTitlebarView {
newParentView.addSubview(tabBarViewController.view)
} else {
newParentView.addSubview(tabBarViewController.view, positioned: .below, relativeTo: mainViewController.fireViewController.view)
}
tabBarViewController.view.frame = newParentView.bounds
tabBarViewController.view.translatesAutoresizingMaskIntoConstraints = false
let constraints = tabBarViewController.view.addConstraints(to: newParentView, [
.leading: .leading(),
.trailing: .trailing(),
.top: .top()
])
NSLayoutConstraint.activate(constraints)
}
override func showWindow(_ sender: Any?) {
window?.makeKeyAndOrderFront(sender)
register()
}
func orderWindowBack(_ sender: Any?) {
if let lastKeyWindow = WindowControllersManager.shared.lastKeyMainWindowController?.window {
window?.order(.below, relativeTo: lastKeyWindow.windowNumber)
} else {
window?.orderFront(sender)
}
register()
}
private func register() {
WindowControllersManager.shared.register(self)
}
}
extension MainWindowController: NSWindowDelegate {
func windowDidBecomeKey(_ notification: Notification) {
NotificationCenter.default.post(name: .windowDidBecomeKey, object: nil)
mainViewController.windowDidBecomeMain()
if (notification.object as? NSWindow)?.isPopUpWindow == false {
WindowControllersManager.shared.lastKeyMainWindowController = self
}
}
func windowDidResignKey(_ notification: Notification) {
mainViewController.windowDidResignKey()
}
func windowWillEnterFullScreen(_ notification: Notification) {
mainViewController.tabBarViewController.draggingSpace.isHidden = true
mainViewController.windowWillEnterFullScreen()
}
func windowWillMiniaturize(_ notification: Notification) {
mainViewController.windowWillMiniaturize()
}
func windowDidEnterFullScreen(_ notification: Notification) {
// fix NSToolbarFullScreenWindow occurring beneath the MainWindow
// https://app.asana.com/0/1177771139624306/1203853030672990/f
// NSApp should be active at the moment of window ordering otherwise toolbar would disappear on activation
for window in NSApp.windows {
let windowValue = NSValue(nonretainedObject: window)
guard window.className.contains("NSFullScreenMouseDetectionWindow"),
!Self.knownFullScreenMouseDetectionWindows.contains(windowValue),
window.screen == self.window!.screen else { continue }
// keep record of NSFullScreenMouseDetectionWindow to avoid adding other‘s windows
Self.knownFullScreenMouseDetectionWindows.insert(windowValue)
window.onDeinit {
Self.knownFullScreenMouseDetectionWindows.remove(windowValue)
}
// add NSFullScreenMouseDetectionWindow as a child window to activate the app without revealing all of its windows
let activeApp = NSWorkspace.shared.frontmostApplication
if activeApp != .current {
self.window!.addChildWindow(window, ordered: .above)
}
// remove the child window and reactivate initially active app as soon as current app becomes active
// otherwise the fullscreen will reactivate its Space when switching to window in another Space
var cancellable: AnyCancellable!
cancellable = NSApp.isActivePublisher().dropFirst().sink { [weak self, weak window] _ in
withExtendedLifetime(cancellable) {
if let activeApp, activeApp != .current {
activeApp.activate()
}
if let self, let window, self.window?.childWindows?.contains(window) == true {
self.window?.removeChildWindow(window)
}
cancellable = nil
}
}
break
}
}
func windowWillExitFullScreen(_ notification: Notification) {
mainViewController.tabBarViewController.draggingSpace.isHidden = false
}
func windowWillClose(_ notification: Notification) {
mainViewController.windowWillClose()
window?.resignKey()
window?.resignMain()
// Unregistering triggers deinitialization of this object.
// Because it's also the delegate, deinit within this method caused crash
// Push the Window Controller into current autorelease pool so it‘s released when the event loop pass ends
_=Unmanaged.passRetained(self).autorelease()
WindowControllersManager.shared.unregister(self)
}
func windowShouldClose(_ sender: NSWindow) -> Bool {
// Animate fire for Burner Window when closing
guard mainViewController.tabCollectionViewModel.isBurner && !sender.isPopUpWindow else {
return true
}
Task {
moveTabBarView(toTitlebarView: false)
await mainViewController.fireViewController.animateFireWhenClosing()
sender.close()
}
return false
}
}
fileprivate extension MainMenu {
var menuItemsForUserPrevention: [NSMenuItem] {
return [
newWindowMenuItem,
newTabMenuItem,
openLocationMenuItem,
closeWindowMenuItem,
closeAllWindowsMenuItem,
closeTabMenuItem,
importBrowserDataMenuItem,
manageBookmarksMenuItem,
importBookmarksMenuItem,
preferencesMenuItem
]
}
var autoupdatingMenusForUserPrevention: [NSMenu] {
return [
preferencesMenuItem.menu,
manageBookmarksMenuItem.menu
].compactMap { $0 }
}
}
fileprivate extension NavigationBarViewController {
var controlsForUserPrevention: [NSControl?] {
return [optionsButton,
bookmarkListButton,
passwordManagementButton,
addressBarViewController?.addressBarTextField,
addressBarViewController?.passiveTextField
]
}
}
extension Notification.Name {
static let windowDidBecomeKey = Notification.Name(rawValue: "windowDidBecomeKey")
}