-
Notifications
You must be signed in to change notification settings - Fork 64
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
372 - Escape key closes dialog #332
Conversation
Looks like CI is failing due to textinput functional test failure |
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.
A few questions / comments / suggestions, but the changes look fine.
src/dialog/Dialog.ts
Outdated
@@ -65,6 +67,24 @@ export default class Dialog extends DialogBase<DialogProperties> { | |||
!this.properties.modal && this._onCloseClick(); | |||
} | |||
|
|||
private _onKeyUp(event: KeyboardEvent) { | |||
const { keyCode } = event; |
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.
You could either destructure the argument itself to save two lines (private _onKeyUp({ keyCode }) {
) or you could really not even destructure at all since you only ever reference a property on event
once, so it's equally as optimal to just use event.keyCode
directly. That'd be my vote, not to over-destructure.
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 do so.
src/dialog/Dialog.ts
Outdated
super(); | ||
|
||
const keyUpFunc = this._onKeyUp.bind(this); | ||
document.addEventListener('onkeyup', keyUpFunc); |
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 really don't like having to use a document-level handler for this. Is it possible instead to use the root node and to trap focus somehow?
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.
This is a similar approach to that used in SlidePane
. I don't believe it's worthwhile adding focus trapping
complications at this point before we have a focus management meta / mixin available.
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.
Fair enough.
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 it's fine to have the handler on the root of the modal. It's not keyboard accessible now anyway without focus trapping, so I don't think it's worth the document-level handler for this.
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.
@smhigley i couldn't get it to trigger the callback on the root of the model, but i will give it another go to make sure i did not mess it up.
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.
@tomdye it's a little unfortunate in that the focus doesn't move into the modal when it opens right now :/. I made my stuff comments rather than requested changes b/c I would totally understand if you decide to continue with the current approach so it just works.
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.
not a problem, i guess that this is something that we can address when focus management becomes a thing.
Codecov Report
@@ Coverage Diff @@
## master #332 +/- ##
==========================================
+ Coverage 99.12% 99.13% +<.01%
==========================================
Files 24 24
Lines 1718 1729 +11
Branches 447 449 +2
==========================================
+ Hits 1703 1714 +11
Partials 15 15
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #332 +/- ##
==========================================
- Coverage 99.14% 99.03% -0.11%
==========================================
Files 25 25
Lines 1748 1757 +9
Branches 451 453 +2
==========================================
+ Hits 1733 1740 +7
- Misses 0 2 +2
Partials 15 15
Continue to review full report at Codecov.
|
src/dialog/Dialog.ts
Outdated
@@ -65,6 +67,22 @@ export default class Dialog extends DialogBase<DialogProperties> { | |||
!this.properties.modal && this._onCloseClick(); | |||
} | |||
|
|||
private _onKeyUp(event: KeyboardEvent) { | |||
if (event.keyCode === Keys.Escape) { |
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.
we generally use event.which
in widgets. There's no difference for the escape key, but it's nice to standardize things.
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 copied this from titlepane
, happy to change as we should encourage consistency.
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.
raised: #341 to address
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.
haha didn't even notice titlepane
still had keyCode 😆
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 was also debating making the switch over to event.key
, since I think the support is pretty much there now.
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.
feel free to add a comment on #341
src/dialog/Dialog.ts
Outdated
super(); | ||
|
||
const keyUpFunc = this._onKeyUp.bind(this); | ||
document.addEventListener('onkeyup', keyUpFunc); |
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 it's fine to have the handler on the root of the modal. It's not keyboard accessible now anyway without focus trapping, so I don't think it's worth the document-level handler for this.
src/dialog/Dialog.ts
Outdated
@@ -78,11 +96,15 @@ export default class Dialog extends DialogBase<DialogProperties> { | |||
underlay | |||
} = this.properties; | |||
|
|||
document.body.onkeyup = this._onKeyUp.bind(this); |
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 this necessary, since you already have the document.addEventListener
?
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.
unlikely, must have been a mistake.
Type: bug
The following has been addressed in the PR:
Description:
Close Dialog when escape key is pressed
Resolves #327