-
Notifications
You must be signed in to change notification settings - Fork 867
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 onViewDateChange callback when the user changes the currently viewed date #403
Conversation
The localMoment variable is mutating the viewDate state value when the month function is called. I fixed it by cloning the viewDate value.
@@ -82,7 +82,7 @@ var DateTimePickerMonths = onClickOutside( createClass({ | |||
}, | |||
|
|||
renderMonth: function( props, month ) { | |||
var localMoment = this.props.viewDate; | |||
var localMoment = this.props.viewDate.clone(); |
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.
Nice catch. This might be the source of some test problems we've been having.
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 tried it and unfortunately no :(
Hi @InvisibleBacon, and thanks for contributing. Sorry for the delay. I tried to get it to a mergable state, then I remembered that this functionality has already been implemented in an upstream PR. See |
Thanks @simeg. So are you saying that I am also seeing |
Oh, no I think I misunderstood your PR then. Sorry, will look into this PR ASAP. You would need to make this PR mergable though. |
Sorry for getting late into this PR but thanks! Many changes happened since it was created and now we have the |
|
I was incorrect. Neither can do it. It is still not possible to respond to the the viewDate changing. |
Description
I added a callback that is triggered whenever the internal
viewDate
state value changes.Motivation and Context
This is useful if you need to fetch data from the server in response to the user changing their view. In our application we wanted to color-code the days in the month view, and we wanted to know when the month was changed so we could fetch the coloring data from the server for the newly displayed month.
Checklist
NOTES: