GithubHelp home page GithubHelp logo

Comments (4)

jquense avatar jquense commented on July 19, 2024

Hey there,

Good question, the datepicker doesn't make any assumptions about timezones, all it expects is a valid Date object as input in the value prop. Mutating the value, once set, will probably not work as all date operations done internally by the widget return a new date instance.

The one place it may not give you what you want is when typing a date into the input and you need to parse that string into a date. I am not sure if the picker will maintain the UTC Offset (my assumption is it will but i am not sure). Luckily if it does not you can easily hook into the picker to make it behave however you want with Moment.js, either through the parse and onChange props. You may want to wrap the widget to encapsulate the behavior more generally like:

var TZDateTimePicker = React.createClass({
  render(){
    return <DateTimePicker {...props}  parse={this._parse} onChange={this._change}/>
  },

  _parse(str){
    var formats = this.props.parse // the user inputed format strings
    return MyTzAwareParseFormat(str, formats) // such as using Moment.js 
  },

  _change(date, dateStr){
    date = EnsureCorrectTz(date) // Moment.js here as well probably?
    this.props.onChange(date)
  }
})

http://jquense.github.io/react-widgets/docs/#/datetime-picker

from react-widgets.

uberllama avatar uberllama commented on July 19, 2024

Thanks for your response. I'll give it a whirl!

from react-widgets.

jquense avatar jquense commented on July 19, 2024

Hope ya found a good answer, feel free to bring anything back up if ya still need some input

from react-widgets.

truclk avatar truclk commented on July 19, 2024

I found in the Git repo that using MomentDateTimePicker is suitable for your request.
https://github.com/jquense/react-widgets/blob/9f954b968d0715853f5c7446c498bd9cea07f48b/docs/components/examples/advanced/defaultDatePicker.js

from react-widgets.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.