-
-
Notifications
You must be signed in to change notification settings - Fork 314
fix(editor): keep SQL editor focus after dismissing autocomplete with Escape (#1845) #1848
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...r/Sources/CodeEditSourceEditor/CodeSuggestion/Window/TextViewController+Suggestions.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| // | ||
| // TextViewController+Suggestions.swift | ||
| // CodeEditSourceEditor | ||
| // | ||
|
|
||
| import AppKit | ||
|
|
||
| public extension TextViewController { | ||
| /// Whether the completion popup is currently showing for this controller. | ||
| var isShowingCompletions: Bool { | ||
| SuggestionController.shared.isVisible && SuggestionController.shared.model.activeTextView === self | ||
| } | ||
|
|
||
| /// Dismisses the completion popup when it is showing for this controller. | ||
| /// Returns whether a popup was dismissed. | ||
| @discardableResult | ||
| func dismissCompletions() -> Bool { | ||
| guard isShowingCompletions else { return false } | ||
| SuggestionController.shared.close() | ||
| return true | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
...r/Tests/CodeEditSourceEditorTests/CodeSuggestion/TextViewControllerSuggestionsTests.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| import AppKit | ||
| @testable import CodeEditSourceEditor | ||
| import XCTest | ||
|
|
||
| final class TextViewControllerSuggestionsTests: XCTestCase { | ||
| @MainActor | ||
| func test_isShowingCompletions_falseWhenNothingShowing() { | ||
| let controller = Mock.textViewController(theme: Mock.theme()) | ||
| defer { resetSharedSuggestions() } | ||
|
|
||
| XCTAssertFalse(controller.isShowingCompletions) | ||
| } | ||
|
|
||
| @MainActor | ||
| func test_dismissCompletions_returnsFalseWhenNothingShowing() { | ||
| let controller = Mock.textViewController(theme: Mock.theme()) | ||
| defer { resetSharedSuggestions() } | ||
|
|
||
| XCTAssertFalse(controller.dismissCompletions()) | ||
| } | ||
|
|
||
| @MainActor | ||
| func test_isShowingCompletions_trueOnlyForOwningController() { | ||
| let owner = Mock.textViewController(theme: Mock.theme()) | ||
| let other = Mock.textViewController(theme: Mock.theme()) | ||
| defer { resetSharedSuggestions() } | ||
|
|
||
| SuggestionController.shared.model.activeTextView = owner | ||
| SuggestionController.shared.window?.orderFrontRegardless() | ||
|
|
||
| XCTAssertTrue(owner.isShowingCompletions) | ||
| XCTAssertFalse(other.isShowingCompletions) | ||
| } | ||
|
|
||
| @MainActor | ||
| func test_dismissCompletions_closesPopupAndReturnsTrueWhenVisible() { | ||
| let owner = Mock.textViewController(theme: Mock.theme()) | ||
| defer { resetSharedSuggestions() } | ||
|
|
||
| SuggestionController.shared.model.activeTextView = owner | ||
| SuggestionController.shared.window?.orderFrontRegardless() | ||
| XCTAssertTrue(owner.isShowingCompletions) | ||
|
|
||
| let dismissed = owner.dismissCompletions() | ||
|
|
||
| XCTAssertTrue(dismissed) | ||
| XCTAssertFalse(SuggestionController.shared.isVisible) | ||
| XCTAssertFalse(owner.isShowingCompletions) | ||
| } | ||
|
|
||
| @MainActor | ||
| private func resetSharedSuggestions() { | ||
| SuggestionController.shared.close() | ||
| SuggestionController.shared.model.activeTextView = nil | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
TableProTests/Views/Editor/SQLEditorCoordinatorEscapeMenuTests.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| // | ||
| // SQLEditorCoordinatorEscapeMenuTests.swift | ||
| // TableProTests | ||
| // | ||
| // Tests for SQLEditorCoordinator.handleEscapeFromMenu() routing. | ||
| // | ||
|
|
||
| import Foundation | ||
| @testable import TablePro | ||
| import Testing | ||
|
|
||
| @MainActor | ||
| @Suite("SQLEditorCoordinator menu escape") | ||
| struct SQLEditorCoordinatorEscapeMenuTests { | ||
| @Test("handleEscapeFromMenu returns false when no editor is focused") | ||
| func returnsFalseWhenNothingToHandle() { | ||
| let coordinator = SQLEditorCoordinator() | ||
| #expect(coordinator.handleEscapeFromMenu() == false) | ||
| } | ||
|
|
||
| @Test("handleEscapeFromMenu stays false after destroy so the grid keeps Escape") | ||
| func staysFalseAfterDestroy() { | ||
| let coordinator = SQLEditorCoordinator() | ||
| coordinator.destroy() | ||
| #expect(coordinator.handleEscapeFromMenu() == false) | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
When the editor focus cache is stale, this returns
truesolely becausewasEditorFocusedwas previously true, so the Clear Selection menu skips thecancelOperationfallback even if focus has already moved to the data grid.wasEditorFocusedis updated later via the window update observer, so a quick click from the editor into a selected grid followed by Escape can be swallowed here and even reclaim editor focus instead of clearing the grid selection, contradicting the intended grid-focused behavior.Useful? React with 👍 / 👎.