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

✨ Add Bento Date Picker Component #37385

Merged
merged 145 commits into from
Mar 17, 2022
Merged

Conversation

becca-bailey
Copy link
Contributor

@becca-bailey becca-bailey commented Jan 13, 2022

This is Part 1 of two PRs that will be put up for Bento Date Picker. Because this component had a large list of behavior to replicate, I wanted to divide up this work to keep the size of this PR a little more manageable. This set of work includes:

  • Migration from react-dates + moment to react-day-picker + date-fns
  • Unit and e2e test coverage for date picker behavior
  • Basic CSS styles
  • Config changes necessary to use an external React library with bento build tooling.

Part 2 will include:

  • Size props (height, width, day size, fullscreen)
  • Templating
  • Updates to CSS styling
  • First day of week (pending update in react-day-picker)
  • Documentation updates
  • Accessibility audit + accessibility and label updates

Notes on the migration to react-day-picker

I made the decision to migrate away from react-dates and use the beta version of react-day-picker in order to reduce the bundle size and remove the dependency on moment.js. React day picker is under active development, uses modern react patterns, and was generally easier to use than react dates.

Because of this, the new component doesn't replicate the behavior and styling of the original 100%. I would appreciate any feedback on whether there are important parts of the original component that need to be replicated exactly.

Bento date picker 1.0
Screen Shot 2022-02-24 at 10 31 44 AM

Amp date picker 0.1
Screen Shot 2022-02-24 at 10 33 23 AM

Issue: #37771

Becca Bailey added 4 commits February 28, 2022 16:55
In an attempt to share defaults and make it less confusing which props
are coming from the provider and which props are getting passed into the
component, this moves all default props to the provider and creates more
type safety for the date picker components that get data from this
provider.

A potential downside of this change is that it makes it more difficult
to use the SingleDatePicker component and RangeDatePicker in isolation
if that is something we want to do later.
@kvchari
Copy link
Contributor

kvchari commented Mar 1, 2022

Can we obviate the need for some or all of date-fns by using Intl.DateTimeFormat? I believe Intl has good apis for formatting in a wide range of locales, but no facilities for parsing. But if the only date format that we'd need to parse is ISO 8601, that'd be simple to parse and create a Date instance for ourselves

@becca-bailey
Copy link
Contributor Author

becca-bailey commented Mar 2, 2022

@kvchari date-fns is a peer dependency that we need for react-day-picker, so we would need to include it in the bundle anyway unless we swapped out the underlying calendar library. We are using it to parse dates in multiple formats, and using it for comparisons like in iterateDateRange.

https://github.com/becca-bailey/amphtml/blob/3d1508d601ce003472bf71f116e5e2d0e0f8805d/extensions/amp-date-picker/1.0/date-helpers.ts#L39

While it's defintely possible to write this logic on our own, I still think it's worth including the library, especially considering that we're replacing moment.js, which is a much larger library.

@@ -0,0 +1,25 @@
<!DOCTYPE html>
Copy link
Contributor

Choose a reason for hiding this comment

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

Hi, thanks for your contribution.

Seems like the PR is missing a few validation related files, specifically a .protoascii file and a /test/validator-*.out file.

The .protoascii file should describe the validation rules, the .html file is a test sample, and .out is the expected output of validation.

Please add those files. In the .html file consider adding a few blocks that will fail validation in all possible ways worth testing

See https://github.com/ampproject/amphtml/blob/main/docs/component-validator-rules.md for details.

Feel free to browse other extensions for examples of validation rules and tests: https://github.com/ampproject/amphtml/tree/main/extensions.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Hi @MichaelRybak, I just checked in and confirmed with @jridgewell that these changes aren't necessary for this PR. The work in this PR supports Preact and Bento mode, but not AMP mode for right now.

Copy link
Contributor

Choose a reason for hiding this comment

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

@becca-bailey Got it. What about the test/validator*.html file? Is it used in some way in this PR or should it be part of the AMP-related PR?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

At the moment it sounds like there are some open questions about the future of these auto-generated AMP files. The current advice I have received is to leave them alone for now, and they will most likely be removed in a future PR once we know for sure that we will not be supporting AMP mode for bento components.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Any thoughts here @dethstrobe ?

Copy link
Contributor

Choose a reason for hiding this comment

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

Removing it sounds good to me.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

This file was causing some issues in CI. so I just deleted it for now.

Comment on lines +40 to +45
components={{Day: DayButton}}
disabled={[isDisabled]}
formatters={{
formatCaption: formatMonth,
formatWeekdayName: formatWeekday,
}}
Copy link
Contributor

Choose a reason for hiding this comment

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

Something for us to maybe worry about later if performance becomes a slight issue would be to memoize these objects between renders. But I feel like that's an optimization we can make later, if we need it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
No open projects
Status: In Review
Development

Successfully merging this pull request may close these issues.

7 participants