Giter Site home page Giter Site logo

Comments (2)

marnusw avatar marnusw commented on May 18, 2024

It's an interesting one. These are the steps currently required:

  1. toDate parses the string taking the offset into account and giving the correct timestamp, i.e. the UTC time you're looking for.
  2. Use utcToZoneTime(dateWithTz, timeZone) to effectively indicate for which time zone you want to format.
  3. format(dateWithTz, ' hh:mm a - eeee, MMMM d, yyyy') to display for that time zone.

Whenever I've used this / thought about it the time zone to display for was available as an IANA time zone string. In your case it's not, because it's contained in the original date string.

I think utcToZoneTime might work with offsets as well as IANA time zones, so you could try slicing it off the date in order to call this (can't quite remember and didn't check the code now). Granted it's a bit messy though.

I won't have time to think about this right now, but if you can figure it out and if necessary propose a PR I'll find time to consider it.

from date-fns-tz.

bringking avatar bringking commented on May 18, 2024

@marnusw so using the offset worked as intended, but I had to extract it from the ISO String like so

import { toDate, format, utcToZonedTime } from 'date-fns-tz';

const isoDateString = '2020-01-09T20:00-05:00';
const dateWithTz = toDate(isoDateString);
const [offset] = isoDateString.match(/(-|\+)([0-9][0-9]):([0-9][0-9])$/);
const timeZonedDate = utcToZonedTime(dateWithTz, offset);
format(timeZonedStartDate, 'eeee, MMMM d, yyyy', { timeZone: offset })

I will close this since it's technically possible, but have to jump through hoops. If there is a better way, would be interested to know it.

from date-fns-tz.

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.