-
Notifications
You must be signed in to change notification settings - Fork 16
Conversation
# Conflicts: # DuckDuckGo/Main/View/Base.lproj/Main.storyboard # DuckDuckGo/NavigationBar/View/AddressBarViewController.swift
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brindy looks good! I've only asked a few questions, but these are just details. The architecture is great 👍
AA585DB02490E6FA00E9A3E2 /* Main */, | ||
AA97BF4425135CB60014931A /* Menus */, | ||
AA86491524D83384001BABEE /* NavigationBar */, | ||
4B677422255DBEB800025BD8 /* Smarter Encryption */, | ||
4B677447255DBF1400025BD8 /* Submodules */, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree on ordering the full list. What about having standalone files as Bridging.h, Info.plist and DuckDuckGo.entitlements near the bottom of the list also in alphabetical order? It's too distracting to have them between groups. What do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @brindy 👍
tab.findInPage = findInPage | ||
} | ||
|
||
func closeFindInPage() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just checking: This is called from tabDidStartNavigation. Does it makes sense to check whether the find in page is displayed to avoid unnecessary execution of findDone()?
|
||
@IBAction func findInPage(_ sender: Any?) { | ||
tabCollectionViewModel.selectedTabViewModel?.startFindInPage() | ||
findInPageContainerView.isHidden = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to bind hiding/showing of the view to model/viewmodel instead of setting it manually?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it already was - had a bit of duplication going on there. Good spot.
Made some updates based on demo / PFR and your comments @tomasstrba - good for a final review, I think. |
@brindy thanks, I'll take a look at it this evening 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice work @brindy! I only found a few very minor details and one bug, but other than that it's perfect. Also thank you for fixing address bar and removing the VerticallyCenteredTextFieldCell class 👍 🥇
AA585DB02490E6FA00E9A3E2 /* Main */, | ||
AA97BF4425135CB60014931A /* Menus */, | ||
AA86491524D83384001BABEE /* NavigationBar */, | ||
4B677422255DBEB800025BD8 /* Smarter Encryption */, | ||
4B677447255DBF1400025BD8 /* Submodules */, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @brindy 👍
@@ -466,6 +475,25 @@ | |||
path = Model; | |||
sourceTree = "<group>"; | |||
}; | |||
85A0115D25AF1C4700FA6A0C /* FindInPage */ = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love how nicely organized things are so far :)
DuckDuckGo.xcodeproj/project.pbxproj
Outdated
@@ -1486,7 +1518,7 @@ | |||
"$(inherited)", | |||
"@executable_path/../Frameworks", | |||
); | |||
MARKETING_VERSION = 0.6.5; | |||
MARKETING_VERSION = 0.6.5.findinpage; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be the .findinpage removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can do, I forgot to remove it before committing. 😨 Figured it would get removed by someone else's commit or during a release.
@@ -40,4 +40,11 @@ extension NSView { | |||
window.makeFirstResponder(self) | |||
} | |||
|
|||
func applyDropShadow() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
|
||
import Cocoa | ||
|
||
class VerticallyCenteredTextFieldCell: NSTextFieldCell { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Happy to see this going! 🥇
} | ||
|
||
private func listenForTextFieldResponderNotifications() { | ||
NotificationCenter.default.addObserver(self, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would rather see the calling of removeObserver(:)_ too, but I know, we don't need to :)
import Cocoa | ||
import os.log | ||
|
||
class FindInPageWindowController: NSWindowController { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this class is not used anywhere and can be removed but I may be wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, from my first attempt to do this as a window rather than view - will remove.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Xcode hadn't deleted it from disk. I definitely selected "move to trash" - need to keep an eye on that!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Happend to me to :) I just can't believe source code editor can have this issue for almost a year
@@ -112,6 +134,21 @@ class MainViewController: NSViewController { | |||
} | |||
} | |||
|
|||
private func updateFindInPage() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
} | ||
|
||
override func mouseEntered(with event: NSEvent) { | ||
NSCursor.iBeam.set() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Much nicer and cleaner 👍
@@ -135,18 +135,23 @@ class MainViewController: NSViewController { | |||
} | |||
|
|||
private func updateFindInPage() { | |||
print("***", #function) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🖨️ :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! :)
Task/Issue URL: https://app.asana.com/0/1203512625915051/1203969517643013/f and https://app.asana.com/0/1203512625915051/1203971625280790/f Tech Design URL: BSK PR: more-duckduckgo-org/browserserviceskit-network-protection#17
Task/Issue URL: https://app.asana.com/0/392891325557410/1193938023398111
Tech Design URL:
CC:
Description:
Adds Find in Page support
Steps to test this PR:
Internal references:
Software Engineering Expectations
Technical Design Template