You are reading a single comment by @Velocio and its replies. Click here to read the full conversation.
  • OK, so when someone creates an event, you instantiate a JS Date object with the date and time they fill in, their browser does the UTC conversion, and you store that along with a duration in minutes. Their browser does that conversion based on the timezone they are in and the DST state that the event will occur in. You should get the correct UTC datetime.

    I come along and look at the event in London, and the server sends the UTC datetime, yes?
    My browser displays the date and time of the event in my local time, which it will calculate according to my timezone, and the DST state at the time of the event. I should get the correct time.

    So where is this edge case? Why do you think that you need to store timezone info or event location? I think you're overcomplicating it. Why don't you just come out and tell me what you think I have missed?

  • OK, so when someone creates an event, you instantiate a JS Date object with the date and time they fill in, their browser does the UTC conversion, and you store that along with a duration in minutes. Their browser does that conversion based on the timezone they are in and the DST state that the event will occur in.

    The bolded bit is the assumption.

    That does NOT happen.

    It could only happen if we either:
    a. Ask what timezone the event occurs in.
    b. Know where the event occurs.

    (b) isn't always true, and we don't ask (a).

    Why u no understand?

About

Avatar for Velocio @Velocio started