How to use the date-fns-tz.utcToZonedTime function in date-fns-tz

To help you get started, we’ve selected a few date-fns-tz examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github joelshepherd / tabliss / src / views / shared / timeZone / TimeZoneInput.tsx View on Github external
cachedSupportedTimeZones = timeZones.filter(timeZone => {
        try {
          utcToZonedTime(new Date(), timeZone);
        } catch {
          return false;
        }
        return true;
      });
github eventespresso / event-espresso-core / assets / prototype / application / hooks / useTimeZoneTime.ts View on Github external
const utcToLocalTime: DateFn = (isoDate: Date | string | number): Date => {
		return utcToZonedTime(isoDate, config.timezone.name);
	};
github birkir / kvikmyndr-app / src / store / models / Showtime.ts View on Github external
get disabled() {
    const timeInIceland = utcToZonedTime(Date.now(), 'GMT');
    if (self.playingAt) {
      return self.playingAt.getTime() < timeInIceland.getTime();
    }
    return false;
  },
}));
github theia-ide / extension-registry / webui / src / pages / extension-detail / extension-detail-reviews.tsx View on Github external
{this.state.reviewList.reviews.map((r: ExtensionReview) => {
                    let zonedDate;
                    if (r.timestamp) {
                        const date = new Date(r.timestamp);
                        const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
                        zonedDate = utcToZonedTime(date, timeZone);
                    }
                    return 
                        
                            
                                {zonedDate ? zonedDate.toLocaleString() : '-'}
                                
                                {r.user}
                            
                            
                                {r.title}
                                
                                    
                                
                            
                            
                                {r.comment}
github stone-payments / pos-mamba-sdk / packages / utils / date.js View on Github external
area: "São Paulo"
      id: "404"
      isDst: false
      location: "América"
      offsetHour: "-03"
      offsetMin: "00"
    */

    const { offsetHour, offsetMin } = window.Clock.getCurrentTimeZone();
    if (dateFormat) {
      return format(
        utcToZonedTime(dateString, `${offsetHour}${offsetMin}`),
        dateFormat,
      );
    }
    return utcToZonedTime(dateString, `${offsetHour}${offsetMin}`);
  }

  if (dateFormat) return format(parseDateISO(dateString), dateFormat);
  return parseDateISO(dateString);
}
github joelshepherd / tabliss / src / context / time.tsx View on Github external
function getTime(timeZone?: string) {
  if (timeZone) {
    return utcToZonedTime(new Date(), timeZone);
  }

  return new Date();
}
github birkir / kvikmyndr-app / src / store / models / Showtime.ts View on Github external
.preProcessSnapshot((snapshot) => {
  const date = utcToZonedTime(snapshot.playingAt || 0, 'UTC');
  return {
    ...snapshot,
    playingAt: new Date(date),
  };
})
.views(self => ({
github theia-ide / extension-registry / webui / src / pages / extension-detail / extension-detail-overview.tsx View on Github external
render() {
        if (!this.state.readme) {
            return '';
        }
        const { classes, extension } = this.props;
        let zonedDate;
        if (extension.timestamp) {
            const date = new Date(extension.timestamp);
            const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
            zonedDate = utcToZonedTime(date, timeZone);
        }
        return 
            
                
                    {this.renderMarkdown(this.state.readme)}
                
                
                    
                        {this.renderButtonList('category', 'Categories', extension.categories)}
                        
                            {this.renderButtonList('search', 'Tags', extension.tags)}
                        
                        
                            Resources
                            {this.renderResourceLink('Homepage', extension.homepage)}
                            {this.renderResourceLink('Repository', extension.repository)}

date-fns-tz

Time zone support for date-fns v3 with the Intl API

MIT
Latest version published 9 days ago

Package Health Score

85 / 100
Full package analysis