Skip to content
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

Merged
merged 4 commits into from
Oct 31, 2017
Merged

372 - Escape key closes dialog #332

merged 4 commits into from
Oct 31, 2017

Conversation

tomdye
Copy link
Member

@tomdye tomdye commented Oct 25, 2017

Type: bug

The following has been addressed in the PR:

  • There is a related issue
  • All code matches the style guide
  • Unit or Functional tests are included in the PR

Description:

Close Dialog when escape key is pressed

Resolves #327

@dylans dylans added this to the 2017.10 milestone Oct 25, 2017
@tomdye
Copy link
Member Author

tomdye commented Oct 25, 2017

Looks like CI is failing due to textinput functional test failure

Copy link
Member

@bitpshr bitpshr left a 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.

@@ -65,6 +67,24 @@ export default class Dialog extends DialogBase<DialogProperties> {
!this.properties.modal && this._onCloseClick();
}

private _onKeyUp(event: KeyboardEvent) {
const { keyCode } = event;
Copy link
Member

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.

Copy link
Member Author

Choose a reason for hiding this comment

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

happy to do so.

super();

const keyUpFunc = this._onKeyUp.bind(this);
document.addEventListener('onkeyup', keyUpFunc);
Copy link
Member

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?

Copy link
Member Author

@tomdye tomdye Oct 26, 2017

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.

Copy link
Member

Choose a reason for hiding this comment

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

Fair enough.

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 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.

Copy link
Member Author

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.

Copy link
Contributor

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.

Copy link
Member Author

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

codecov bot commented Oct 26, 2017

Codecov Report

Merging #332 into master will increase coverage by <.01%.
The diff coverage is 92.3%.

Impacted file tree graph

@@            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
Impacted Files Coverage Δ
src/dialog/Dialog.ts 97.82% <92.3%> (+0.68%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 96646e4...6870dcb. Read the comment docs.

@codecov
Copy link

codecov bot commented Oct 26, 2017

Codecov Report

Merging #332 into master will decrease coverage by 0.1%.
The diff coverage is 72.72%.

Impacted file tree graph

@@            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
Impacted Files Coverage Δ
src/dialog/Dialog.ts 93.18% <72.72%> (-3.97%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 6f00254...2f70b52. Read the comment docs.

@kitsonk kitsonk removed this from the 2017.10 milestone Oct 30, 2017
@@ -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) {
Copy link
Contributor

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.

Copy link
Member Author

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.

Copy link
Member Author

Choose a reason for hiding this comment

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

raised: #341 to address

Copy link
Contributor

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 😆

Copy link
Contributor

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.

Copy link
Member Author

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

super();

const keyUpFunc = this._onKeyUp.bind(this);
document.addEventListener('onkeyup', keyUpFunc);
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 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.

@@ -78,11 +96,15 @@ export default class Dialog extends DialogBase<DialogProperties> {
underlay
} = this.properties;

document.body.onkeyup = this._onKeyUp.bind(this);
Copy link
Contributor

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?

Copy link
Member Author

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.

@tomdye
Copy link
Member Author

tomdye commented Oct 31, 2017

@smhigley @bitpshr comments addressed

@bitpshr
Copy link
Member

bitpshr commented Oct 31, 2017

Looks good to merge Tom. I added a comment to #309 to remove the document-level handler after focus management is sorted.

@tomdye tomdye merged commit 5780d15 into dojo:master Oct 31, 2017
@dylans dylans added this to the beta.4 milestone Nov 1, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants