Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

find in page #24

Merged
merged 19 commits into from
Jan 21, 2021
Merged

find in page #24

merged 19 commits into from
Jan 21, 2021

Conversation

brindy
Copy link
Contributor

@brindy brindy commented Jan 18, 2021

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:

  1. Try open find in page on new tab - shouldn't be able to
  2. Navigate to a page and find something that exists, should show current selection and total matches and allow navigation
  3. Navigate to a page and "find" something that doesn't exist - should show 0 of 0 and not allow navigation

Internal references:

Software Engineering Expectations
Technical Design Template

Copy link
Contributor

@tomasstrba tomasstrba left a 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 */,
Copy link
Contributor

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?

Copy link
Contributor

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() {
Copy link
Contributor

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
Copy link
Contributor

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?

Copy link
Contributor Author

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.

@brindy brindy changed the title [WIP] find in page find in page Jan 20, 2021
@brindy
Copy link
Contributor Author

brindy commented Jan 20, 2021

Made some updates based on demo / PFR and your comments @tomasstrba - good for a final review, I think.

@tomasstrba
Copy link
Contributor

@brindy thanks, I'll take a look at it this evening 👍

Copy link
Contributor

@tomasstrba tomasstrba left a 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 */,
Copy link
Contributor

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 */ = {
Copy link
Contributor

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 :)

@@ -1486,7 +1518,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 0.6.5;
MARKETING_VERSION = 0.6.5.findinpage;
Copy link
Contributor

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?

Copy link
Contributor Author

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() {
Copy link
Contributor

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 {
Copy link
Contributor

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,
Copy link
Contributor

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 {
Copy link
Contributor

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.

Copy link
Contributor Author

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.

Copy link
Contributor Author

@brindy brindy Jan 21, 2021

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!

Copy link
Contributor

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() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This method is probably responsible for a few problems with the first responder. It's not happening all the time, but sometimes opening a new tab doesn't make the text field first responder. Opening a new window helps to reproduce the issue.

first-responder-problem

}

override func mouseEntered(with event: NSEvent) {
NSCursor.iBeam.set()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Much nicer and cleaner 👍

@brindy brindy requested a review from tomasstrba January 21, 2021 13:14
@@ -135,18 +135,23 @@ class MainViewController: NSViewController {
}

private func updateFindInPage() {
print("***", #function)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🖨️ :)

Copy link
Contributor

@tomasstrba tomasstrba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! :)

@tomasstrba tomasstrba merged commit 3ea4418 into develop Jan 21, 2021
@tomasstrba tomasstrba deleted the feature/brindy/find-in-page branch January 21, 2021 13:32
samsymons pushed a commit that referenced this pull request May 23, 2023
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
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants