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 pathMainViewController.swift
585 lines (484 loc) · 24 KB
/
MainViewController.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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
//
// MainViewController.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 Carbon.HIToolbox
import Combine
import Common
import NetworkProtection
import NetworkProtectionIPC
final class MainViewController: NSViewController {
private lazy var mainView = MainView(frame: NSRect(x: 0, y: 0, width: 600, height: 660))
let tabBarViewController: TabBarViewController
let navigationBarViewController: NavigationBarViewController
let browserTabViewController: BrowserTabViewController
let findInPageViewController: FindInPageViewController
let fireViewController: FireViewController
let bookmarksBarViewController: BookmarksBarViewController
private let bookmarksBarVisibilityManager: BookmarksBarVisibilityManager
let tabCollectionViewModel: TabCollectionViewModel
let isBurner: Bool
private var addressBarBookmarkIconVisibilityCancellable: AnyCancellable?
private var selectedTabViewModelCancellable: AnyCancellable?
private var tabViewModelCancellables = Set<AnyCancellable>()
private var bookmarksBarVisibilityChangedCancellable: AnyCancellable?
private var eventMonitorCancellables = Set<AnyCancellable>()
private var bookmarksBarIsVisible: Bool {
return bookmarksBarViewController.parent != nil
}
private var isInPopUpWindow: Bool {
view.window?.isPopUpWindow == true
}
required init?(coder: NSCoder) {
fatalError("MainViewController: Bad initializer")
}
init(tabCollectionViewModel: TabCollectionViewModel? = nil, bookmarkManager: BookmarkManager = LocalBookmarkManager.shared, autofillPopoverPresenter: AutofillPopoverPresenter) {
let tabCollectionViewModel = tabCollectionViewModel ?? TabCollectionViewModel()
self.tabCollectionViewModel = tabCollectionViewModel
self.isBurner = tabCollectionViewModel.isBurner
tabBarViewController = TabBarViewController.create(tabCollectionViewModel: tabCollectionViewModel)
bookmarksBarVisibilityManager = BookmarksBarVisibilityManager(selectedTabPublisher: tabCollectionViewModel.$selectedTabViewModel.eraseToAnyPublisher())
let networkProtectionPopoverManager: NetPPopoverManager = {
#if DEBUG
guard case .normal = NSApp.runType else {
return NetPPopoverManagerMock()
}
#endif
let ipcClient = TunnelControllerIPCClient()
ipcClient.register()
return NetworkProtectionNavBarPopoverManager(ipcClient: ipcClient, networkProtectionFeatureDisabler: NetworkProtectionFeatureDisabler())
}()
let networkProtectionStatusReporter: NetworkProtectionStatusReporter = {
var connectivityIssuesObserver: ConnectivityIssueObserver!
var controllerErrorMessageObserver: ControllerErrorMesssageObserver!
#if DEBUG
if ![.normal, .integrationTests].contains(NSApp.runType) {
connectivityIssuesObserver = ConnectivityIssueObserverMock()
controllerErrorMessageObserver = ControllerErrorMesssageObserverMock()
}
#endif
connectivityIssuesObserver = connectivityIssuesObserver ?? DisabledConnectivityIssueObserver()
controllerErrorMessageObserver = controllerErrorMessageObserver ?? ControllerErrorMesssageObserverThroughDistributedNotifications()
let ipcClient = networkProtectionPopoverManager.ipcClient
return DefaultNetworkProtectionStatusReporter(
statusObserver: ipcClient.ipcStatusObserver,
serverInfoObserver: ipcClient.ipcServerInfoObserver,
connectionErrorObserver: ipcClient.ipcConnectionErrorObserver,
connectivityIssuesObserver: connectivityIssuesObserver,
controllerErrorMessageObserver: controllerErrorMessageObserver
)
}()
navigationBarViewController = NavigationBarViewController.create(tabCollectionViewModel: tabCollectionViewModel, isBurner: isBurner, networkProtectionPopoverManager: networkProtectionPopoverManager, networkProtectionStatusReporter: networkProtectionStatusReporter, autofillPopoverPresenter: autofillPopoverPresenter)
browserTabViewController = BrowserTabViewController(tabCollectionViewModel: tabCollectionViewModel, bookmarkManager: bookmarkManager)
findInPageViewController = FindInPageViewController.create()
fireViewController = FireViewController.create(tabCollectionViewModel: tabCollectionViewModel)
bookmarksBarViewController = BookmarksBarViewController.create(tabCollectionViewModel: tabCollectionViewModel, bookmarkManager: bookmarkManager)
super.init(nibName: nil, bundle: nil)
findInPageViewController.delegate = self
}
override func loadView() {
view = mainView
addAndLayoutChild(tabBarViewController, into: mainView.tabBarContainerView)
addAndLayoutChild(bookmarksBarViewController, into: mainView.bookmarksBarContainerView)
addAndLayoutChild(navigationBarViewController, into: mainView.navigationBarContainerView)
addAndLayoutChild(browserTabViewController, into: mainView.webContainerView)
addAndLayoutChild(findInPageViewController, into: mainView.findInPageContainerView)
addAndLayoutChild(fireViewController, into: mainView.fireContainerView)
}
override func viewDidLoad() {
super.viewDidLoad()
listenToKeyDownEvents()
subscribeToMouseTrackingArea()
subscribeToSelectedTabViewModel()
subscribeToBookmarkBarVisibility()
subscribeToFirstResponder()
mainView.findInPageContainerView.applyDropShadow()
view.registerForDraggedTypes([.URL, .fileURL])
}
override func viewDidAppear() {
super.viewDidAppear()
mainView.setMouseAboveWebViewTrackingAreaEnabled(true)
registerForBookmarkBarPromptNotifications()
adjustFirstResponder(force: true)
}
var bookmarkBarPromptObserver: Any?
func registerForBookmarkBarPromptNotifications() {
guard !bookmarksBarViewController.bookmarksBarPromptShown else { return }
bookmarkBarPromptObserver = NotificationCenter.default.addObserver(
forName: .bookmarkPromptShouldShow,
object: nil,
queue: .main) { [weak self] _ in
self?.showBookmarkPromptIfNeeded()
}
}
override func viewDidDisappear() {
super.viewDidDisappear()
mainView.setMouseAboveWebViewTrackingAreaEnabled(false)
if let bookmarkBarPromptObserver {
NotificationCenter.default.removeObserver(bookmarkBarPromptObserver)
}
}
override func viewWillAppear() {
if isInPopUpWindow {
tabBarViewController.view.isHidden = true
mainView.tabBarContainerView.isHidden = true
mainView.navigationBarTopConstraint.constant = 0.0
resizeNavigationBar(isHomePage: false, animated: false)
updateBookmarksBarViewVisibility(visible: false)
} else {
mainView.navigationBarContainerView.wantsLayer = true
mainView.navigationBarContainerView.layer?.masksToBounds = false
resizeNavigationBar(isHomePage: tabCollectionViewModel.selectedTabViewModel?.tab.content == .newtab,
animated: false)
}
updateDividerColor(isShowingHomePage: tabCollectionViewModel.selectedTabViewModel?.tab.content == .newtab)
}
override func viewDidLayout() {
mainView.findInPageContainerView.applyDropShadow()
}
func windowDidBecomeMain() {
updateBackMenuItem()
updateForwardMenuItem()
updateReloadMenuItem()
updateStopMenuItem()
browserTabViewController.windowDidBecomeKey()
refreshNetworkProtectionMessages()
#if DBP
DataBrokerProtectionAppEvents().windowDidBecomeMain()
refreshDataBrokerProtectionMessages()
#endif
}
func windowDidResignKey() {
browserTabViewController.windowDidResignKey()
}
func showBookmarkPromptIfNeeded() {
guard !bookmarksBarViewController.bookmarksBarPromptShown else { return }
if bookmarksBarIsVisible {
// Don't show this to users who obviously know about the bookmarks bar already
bookmarksBarViewController.bookmarksBarPromptShown = true
return
}
updateBookmarksBarViewVisibility(visible: true)
// This won't work until the bookmarks bar is actually visible which it isn't until the next ui cycle
DispatchQueue.main.async {
self.bookmarksBarViewController.showBookmarksBarPrompt()
}
}
private let networkProtectionMessaging = DefaultNetworkProtectionRemoteMessaging()
func refreshNetworkProtectionMessages() {
networkProtectionMessaging.fetchRemoteMessages()
}
#if DBP
private let dataBrokerProtectionMessaging = DefaultDataBrokerProtectionRemoteMessaging()
func refreshDataBrokerProtectionMessages() {
dataBrokerProtectionMessaging.fetchRemoteMessages()
}
#endif
override func encodeRestorableState(with coder: NSCoder) {
fatalError("Default AppKit State Restoration should not be used")
}
func windowWillClose() {
eventMonitorCancellables.removeAll()
tabBarViewController.hideTabPreview()
}
func windowWillMiniaturize() {
tabBarViewController.hideTabPreview()
}
func windowWillEnterFullScreen() {
tabBarViewController.hideTabPreview()
}
func toggleBookmarksBarVisibility() {
updateBookmarksBarViewVisibility(visible: !(mainView.bookmarksBarHeightConstraint.constant > 0))
}
// Can be updated via keyboard shortcut so needs to be internal visibility
private func updateBookmarksBarViewVisibility(visible: Bool) {
let showBookmarksBar = isInPopUpWindow ? false : visible
if showBookmarksBar {
if bookmarksBarViewController.parent == nil {
addChild(bookmarksBarViewController)
bookmarksBarViewController.view.frame = mainView.bookmarksBarContainerView.bounds
mainView.bookmarksBarContainerView.addSubview(bookmarksBarViewController.view)
}
} else {
bookmarksBarViewController.removeFromParent()
bookmarksBarViewController.view.removeFromSuperview()
}
mainView.bookmarksBarHeightConstraint?.constant = showBookmarksBar ? 34 : 0
mainView.layoutSubtreeIfNeeded()
mainView.updateTrackingAreas()
updateDividerColor(isShowingHomePage: tabCollectionViewModel.selectedTabViewModel?.tab.content == .newtab)
}
private func updateDividerColor(isShowingHomePage isHomePage: Bool) {
NSAppearance.withAppAppearance {
let backgroundColor: NSColor = (bookmarksBarIsVisible || isHomePage) ? .bookmarkBarBackground : .addressBarSolidSeparator
mainView.divider.backgroundColor = backgroundColor
}
}
private func subscribeToMouseTrackingArea() {
addressBarBookmarkIconVisibilityCancellable = mainView.$isMouseAboveWebView
.sink { [weak self] isMouseAboveWebView in
self?.navigationBarViewController.addressBarViewController?
.addressBarButtonsViewController?.isMouseOverNavigationBar = isMouseAboveWebView
}
}
private func subscribeToSelectedTabViewModel() {
selectedTabViewModelCancellable = tabCollectionViewModel.$selectedTabViewModel.sink { [weak self] tabViewModel in
guard let self, let tabViewModel else { return }
tabViewModelCancellables.removeAll(keepingCapacity: true)
subscribeToCanGoBackForward(of: tabViewModel)
subscribeToFindInPage(of: tabViewModel)
subscribeToTitleChange(of: tabViewModel)
subscribeToTabContent(of: tabViewModel)
}
}
private func subscribeToTitleChange(of selectedTabViewModel: TabViewModel?) {
guard let window = self.view.window else { return }
selectedTabViewModel?.$title
.map {
$0.truncated(length: MainMenu.Constants.maxTitleLength)
}
.receive(on: DispatchQueue.main)
.assign(to: \.title, onWeaklyHeld: window)
.store(in: &tabViewModelCancellables)
}
private func subscribeToBookmarkBarVisibility() {
bookmarksBarVisibilityChangedCancellable = bookmarksBarVisibilityManager
.$isBookmarksBarVisible
.removeDuplicates()
.receive(on: DispatchQueue.main)
.sink { [weak self] isBookmarksBarVisible in
self?.updateBookmarksBarViewVisibility(visible: isBookmarksBarVisible)
}
}
private func resizeNavigationBar(isHomePage homePage: Bool, animated: Bool) {
updateDividerColor(isShowingHomePage: homePage)
navigationBarViewController.resizeAddressBar(for: homePage ? .homePage : (isInPopUpWindow ? .popUpWindow : .default), animated: animated)
}
private var lastTabContent = Tab.TabContent.none
private func subscribeToTabContent(of selectedTabViewModel: TabViewModel?) {
selectedTabViewModel?.tab.$content
.sink { [weak self, weak selectedTabViewModel] content in
guard let self, let selectedTabViewModel else { return }
defer { lastTabContent = content }
resizeNavigationBar(isHomePage: content == .newtab, animated: content == .newtab && lastTabContent != .newtab)
adjustFirstResponder(selectedTabViewModel: selectedTabViewModel, tabContent: content)
}
.store(in: &self.tabViewModelCancellables)
}
private func subscribeToFirstResponder() {
NotificationCenter.default.addObserver(self,
selector: #selector(firstReponderDidChange(_:)),
name: .firstResponder,
object: nil)
}
@objc private func firstReponderDidChange(_ notification: Notification) {
// when window first responder is reset (to the window): activate Tab Content View
if view.window?.firstResponder === view.window {
browserTabViewController.adjustFirstResponder()
}
}
private func subscribeToFindInPage(of selectedTabViewModel: TabViewModel?) {
selectedTabViewModel?.findInPage?
.$isVisible
.receive(on: DispatchQueue.main)
.sink { [weak self] _ in
self?.updateFindInPage()
}
.store(in: &self.tabViewModelCancellables)
}
private func subscribeToCanGoBackForward(of selectedTabViewModel: TabViewModel) {
selectedTabViewModel.$canGoBack.receive(on: DispatchQueue.main).sink { [weak self] _ in
self?.updateBackMenuItem()
}.store(in: &self.tabViewModelCancellables)
selectedTabViewModel.$canGoForward.receive(on: DispatchQueue.main).sink { [weak self] _ in
self?.updateForwardMenuItem()
}.store(in: &self.tabViewModelCancellables)
selectedTabViewModel.$canReload.receive(on: DispatchQueue.main).sink { [weak self] _ in
self?.updateReloadMenuItem()
}.store(in: &self.tabViewModelCancellables)
selectedTabViewModel.$isLoading.receive(on: DispatchQueue.main).sink { [weak self] _ in
self?.updateStopMenuItem()
}.store(in: &self.tabViewModelCancellables)
}
private func updateFindInPage() {
guard let model = tabCollectionViewModel.selectedTabViewModel?.findInPage else {
findInPageViewController.makeMeFirstResponder()
os_log("MainViewController: Failed to get find in page model", type: .error)
return
}
mainView.findInPageContainerView.isHidden = !model.isVisible
findInPageViewController.model = model
if model.isVisible {
findInPageViewController.makeMeFirstResponder()
}
}
private func updateBackMenuItem() {
guard self.view.window?.isMainWindow == true else { return }
guard let selectedTabViewModel = tabCollectionViewModel.selectedTabViewModel else {
os_log("MainViewController: No tab view model selected", type: .error)
return
}
NSApp.mainMenuTyped.backMenuItem.isEnabled = selectedTabViewModel.canGoBack
}
private func updateForwardMenuItem() {
guard self.view.window?.isMainWindow == true else { return }
guard let selectedTabViewModel = tabCollectionViewModel.selectedTabViewModel else {
os_log("MainViewController: No tab view model selected", type: .error)
return
}
NSApp.mainMenuTyped.forwardMenuItem.isEnabled = selectedTabViewModel.canGoForward
}
private func updateReloadMenuItem() {
guard self.view.window?.isMainWindow == true else { return }
guard let selectedTabViewModel = tabCollectionViewModel.selectedTabViewModel else {
os_log("MainViewController: No tab view model selected", type: .error)
return
}
NSApp.mainMenuTyped.reloadMenuItem.isEnabled = selectedTabViewModel.canReload
}
private func updateStopMenuItem() {
guard self.view.window?.isMainWindow == true else { return }
guard let selectedTabViewModel = tabCollectionViewModel.selectedTabViewModel else {
os_log("MainViewController: No tab view model selected", type: .error)
return
}
NSApp.mainMenuTyped.stopMenuItem.isEnabled = selectedTabViewModel.isLoading
}
// MARK: - First responder
func adjustFirstResponder(selectedTabViewModel: TabViewModel? = nil, tabContent: Tab.TabContent? = nil, force: Bool = false) {
guard let selectedTabViewModel = selectedTabViewModel ?? tabCollectionViewModel.selectedTabViewModel else {
return
}
let tabContent = tabContent ?? selectedTabViewModel.tab.content
if case .newtab = tabContent {
navigationBarViewController.addressBarViewController?.addressBarTextField.makeMeFirstResponder()
} else {
// ignore published tab switch: BrowserTabViewController
// adjusts first responder itself
guard selectedTabViewModel === tabCollectionViewModel.selectedTabViewModel || force else { return }
browserTabViewController.adjustFirstResponder(force: force, tabContent: tabContent)
}
}
}
extension MainViewController: NSDraggingDestination {
func draggingEntered(_ draggingInfo: NSDraggingInfo) -> NSDragOperation {
return .copy
}
func draggingUpdated(_ draggingInfo: NSDraggingInfo) -> NSDragOperation {
guard draggingInfo.draggingPasteboard.url != nil else { return .none }
return .copy
}
func performDragOperation(_ draggingInfo: NSDraggingInfo) -> Bool {
guard let url = draggingInfo.draggingPasteboard.url else { return false }
browserTabViewController.openNewTab(with: .url(url, source: .appOpenUrl))
return true
}
}
// MARK: - Mouse & Keyboard Events
// This needs to be handled here or else there will be a "beep" even if handled in a different view controller. This now
// matches Safari behaviour.
extension MainViewController {
func listenToKeyDownEvents() {
NSEvent.addLocalCancellableMonitor(forEventsMatching: .keyDown) { [weak self] event in
guard let self else { return event }
return self.customKeyDown(with: event) ? nil : event
}.store(in: &eventMonitorCancellables)
NSEvent.addLocalCancellableMonitor(forEventsMatching: .otherMouseUp) { [weak self] event in
guard let self else { return event }
return self.otherMouseUp(with: event)
}.store(in: &eventMonitorCancellables)
}
func customKeyDown(with event: NSEvent) -> Bool {
guard let locWindow = self.view.window,
NSApplication.shared.keyWindow === locWindow else { return false }
let flags = event.modifierFlags.intersection(.deviceIndependentFlagsMask)
.subtracting(.capsLock)
switch Int(event.keyCode) {
case kVK_Return where navigationBarViewController.addressBarViewController?
.addressBarTextField.isFirstResponder == true:
navigationBarViewController.addressBarViewController?.addressBarTextField.addressBarEnterPressed()
return true
case kVK_Escape:
var isHandled = false
if !mainView.findInPageContainerView.isHidden {
findInPageViewController.findInPageDone(self)
isHandled = true
}
if let addressBarVC = navigationBarViewController.addressBarViewController {
isHandled = isHandled || addressBarVC.escapeKeyDown()
}
return isHandled
// Handle critical Main Menu actions before WebView
case kVK_ANSI_1, kVK_ANSI_2, kVK_ANSI_3, kVK_ANSI_4, kVK_ANSI_5, kVK_ANSI_6,
kVK_ANSI_7, kVK_ANSI_8, kVK_ANSI_9,
kVK_ANSI_Keypad1, kVK_ANSI_Keypad2, kVK_ANSI_Keypad3, kVK_ANSI_Keypad4,
kVK_ANSI_Keypad5, kVK_ANSI_Keypad6, kVK_ANSI_Keypad7, kVK_ANSI_Keypad8,
kVK_ANSI_Keypad9:
guard flags == .command else { return false }
fallthrough
case kVK_Tab where [[.control], [.control, .shift]].contains(flags),
kVK_ANSI_N where flags == .command,
kVK_ANSI_W where flags.contains(.command),
kVK_ANSI_T where [[.command], [.command, .shift]].contains(flags),
kVK_ANSI_Q where flags == .command,
kVK_ANSI_R where flags == .command:
guard view.window?.firstResponder is WebView else { return false }
NSApp.menu?.performKeyEquivalent(with: event)
return true
case kVK_ANSI_Y where flags == .command:
(NSApp.mainMenuTyped.historyMenu.accessibilityParent() as? NSMenuItem)?.accessibilityPerformPress()
return true
default:
return false
}
}
func otherMouseUp(with event: NSEvent) -> NSEvent? {
guard event.window === self.view.window,
mainView.webContainerView.isMouseLocationInsideBounds(event.locationInWindow)
else { return event }
if event.buttonNumber == 3,
tabCollectionViewModel.selectedTabViewModel?.canGoBack == true {
tabCollectionViewModel.selectedTabViewModel?.tab.goBack()
return nil
} else if event.buttonNumber == 4,
tabCollectionViewModel.selectedTabViewModel?.canGoForward == true {
tabCollectionViewModel.selectedTabViewModel?.tab.goForward()
return nil
}
return event
}
}
#if DEBUG
@available(macOS 14.0, *)
#Preview(traits: .fixedLayout(width: 700, height: 660)) {
let bkman = LocalBookmarkManager(bookmarkStore: BookmarkStoreMock(bookmarks: [
BookmarkFolder(id: "1", title: "Folder", children: [
Bookmark(id: "2", url: URL.duckDuckGo.absoluteString, title: "DuckDuckGo", isFavorite: true)
]),
Bookmark(id: "3", url: URL.duckDuckGo.absoluteString, title: "DuckDuckGo", isFavorite: true, parentFolderUUID: "1")
]))
bkman.loadBookmarks()
let vc = MainViewController(bookmarkManager: bkman, autofillPopoverPresenter: DefaultAutofillPopoverPresenter())
var c: AnyCancellable!
c = vc.publisher(for: \.view.window).sink { window in
window?.titlebarAppearsTransparent = true
window?.titleVisibility = .hidden
withExtendedLifetime(c) {}
}
return vc
}
#endif