-
Notifications
You must be signed in to change notification settings - Fork 344
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
Combobox Date Picker Example: Change previous and next month and year behavior for dates near end of month #2618
Conversation
Would you like to update the keyboard documentation table, or would you like me to do that? I am surprised we are not testing this behavior. I don't see any changes to |
The ARIA Authoring Practices (APG) Task Force just discussed The full IRC log of that discussion<Jem> Topic:Pull Request Review<Jem> https://github.com//pull/2618 <jugglinmike> github: https://github.com//pull/2618 <jugglinmike> jongund: I'll update the language as Matt_King has requested <jugglinmike> Matt_King: Are there missing regression tests here? <jugglinmike> jongund: We didn't have any tests for the condition where the previous or next date was not the current date. Should we add tests for that? <jugglinmike> Matt_King: Are there any "page up"/"page down" tests at all? <jugglinmike> jongund: There are a ton of unimplemented tests for certain keystrokes [lists specific keyboard keys] <jugglinmike> Matt_King: We don't necessarily have to fix that gap with this pull request (though it is a great opportunity to do so) <jugglinmike> jongund: I'm going to try to integrate some other test files in, along with their documentation |
The ARIA Authoring Practices (APG) Task Force just discussed The full IRC log of that discussion<jugglinmike> Subtopic: Combobox Date Picker Example: Change previous and next month and year behavior for dates near end of month by jongund<jugglinmike> github: https://github.com//pull/2618 <jugglinmike> jongund: All the test cases finished; I'll check them in later today <jugglinmike> jongund: I've updated the documentation as well <jugglinmike> Matt_King: We need a review checklist <jugglinmike> Jem: I'll add that <jugglinmike> Matt_King: We only need to verify the functionality and the editorical review, but there's no changes to CSS. Only two files changed, just the JavaScript and HTML files. <jugglinmike> Matt_King: We should have at least one reviewer besides myself <jugglinmike> Siri: I will perform the functional review |
The ARIA Authoring Practices (APG) Task Force just discussed The full IRC log of that discussion<jugglinmike> Subtopic: Combobox Date Picker Example: Change previous and next month and year behavior for dates near end of month by jongund · Pull Request #2618 · w3c/aria-practices<jugglinmike> github: https://github.com//pull/2618 <jugglinmike> Matt_King: Do we have reviewers assigned? <jugglinmike> Jem: Yup: shirsha, Matt_King, and James <jugglinmike> Matt_King: I don't remember James agreeing to that, so we should remove them <jugglinmike> Jem: done <jugglinmike> Matt_King: shirsha will be reviewing for functionality, and I think I asked AlexFlennikan to perform code review <jugglinmike> jongund: It also updates tests <jugglinmike> jongund: there's a file that was changed that shouldn't have been changed, so I'll fix that <jugglinmike> Matt_King: I'll do editorial and functional review |
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 reviewed the functionality of the widget and I was happy to find that it worked super reliably with both a mouse and keyboard, even with lots of code changes.
One thing I did was to build the APG website and try the widget in that context. While everything works, I did notice that the table has some styling which makes it less aesthetically pleasing than the non-website version. I do think this is a preexisting issue, but in any case below are some changes that would make the styling consistent in both contexts:
.combobox-datepicker .dates {
width: 320px;
padding-left: 1em;
padding-right: 1em;
padding-top: 1em;
+ border-collapse: separate; /* Needed for website */
}
.combobox-datepicker .dates th, #myDatepicker .dates th {
padding: 0;
+ /* Needed for website */
+ color: black;
+ background: transparent;
+ border: none;
}
One thing I noticed is that hovering the mouse over the active date results in poor contrast, so I would suggest a change like this:
.combobox-datepicker .dates td:hover {
background-color: rgb(218, 231, 251);
+ color: black;
}
I ran the tests and they passed. One minor issue is the fact that there is a lot of logging output coming from line 323 of the test file. I think that's a preexisting issue but it might be nice to take this opportunity to remove the noise from the test output.
@alflennik |
The ARIA Authoring Practices (APG) Task Force just discussed The full IRC log of that discussion<jugglinmike> Subtopic: Combobox Date Picker Example: Change previous and next month and year behavior for dates near end of month<jugglinmike> github: https://github.com//pull/2618 <jugglinmike> Matt_King: AlexFlenniken left some review comments <jugglinmike> Matt_King: Did you address those, jongund? <jugglinmike> jongund: Yup. I adjusted the stylesheet to override the default styles <jugglinmike> Matt_King: I'm re-requesting review from you, AlexFlenniken <jugglinmike> Matt_King: It's also awaiting review from Siri and me <jugglinmike> Matt_King: We should probably ping Siri |
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.
Looks great, thanks Jon!
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.
@jongund All good!
I made some minor changes to the wording of the page up and down documentation that we'll want to carry forward into the date picker dialog documentation as well.
…nce with APG code style guide (pull #2643) This PR complements PR #2618 to provide the remaining changes to resolve issue #2581. This PR changes behavior of commands for next and previous month and year In the date picker dialog when the currently focused date does not exist in the previous or next month or year. With these changes, if the same day number does not exist in the newly displayed month, the last day of the newly displayed month receives focus. In addition to the above enhancement, this PR also includes the following changes: * Updates coding practices to use `class` constructor and pointer events * Updates documentation of page up and page down commands * Updates regression tests for page up and page down commands --------- Co-authored-by: Matt King <a11yThinker@gmail.com>
Provides partial resolution of #2581.
The remainder of the resolution is provided by #2643.
This PR changes behavior of commands for next and previous month and year In the combobox date picker when the currently focused date does not exist in the previous or next month or year. With these changes, if the same day number does not exist in the newly displayed month, the last day of the newly displayed month receives focus.
Preview of revised combobox date picker example in Netlify.
WAI Preview Link (Last built on Tue, 04 Apr 2023 01:43:50 GMT).