Skip to content
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 days across Daylight Saving Time #1271

Open
MarkSFrancis opened this issue Dec 14, 2020 · 14 comments
Open

Add days across Daylight Saving Time #1271

MarkSFrancis opened this issue Dec 14, 2020 · 14 comments

Comments

@MarkSFrancis
Copy link

MarkSFrancis commented Dec 14, 2020

When adding days to a time, it's assuming each day is 24 hours long. This is not a correct assumption when crossing over daylight saving time.

Steps to recreate

import dayjs from 'dayjs';
import utc from 'dayjs/plugin/utc';
import tz from 'dayjs/plugin/timezone';

dayjs.extend(utc);
dayjs.extend(tz);

// 2020-10-25 is when DST starts in Europe/London (clocks go back by one hour). 
// This means that 2020-10-25 is a day that's only 23 hours long
const date1 = dayjs.tz('2020-10-24', 'Europe/London').add(2, 'day').toISOString();
const date2 = dayjs.tz('2020-10-26', 'Europe/London').toISOString();

// Prints
// {
//   date1: '2020-10-25T23:00:00.000Z',
//   date2: '2020-10-26T00:00:00.000Z'
// }
console.log({ date1, date2 });

Expected behavior
date1 and date2 should be the same, as adding the number of "days" to the date should've allowed for the fact that not all days are 24 hours.

Information

  • Day.js Version: v1.9.2
  • OS: Windows 10 20H2
  • Browser: Chromium: 87.0.4280.101
  • Time zone: (UTC -04:00) Santiago
@moulinraphael
Copy link

moulinraphael commented Feb 3, 2021

This is an important issue for us, but there is a workaround possible...

  1. Get the date's TZ
  2. Add days using date method
  3. Use tz method to "reset" TZ (date method doesn't update the offset value)
export const addDaysExtended = (dateWithTZ, days) => {
  const clone = dayjs(dateWithTZ);
  const tz = clone.$x.$timezone;
  return clone.date(clone.date() + days).tz(tz, true);
};

const date1 = dayjs.tz('2020-10-24', 'Europe/London').add(2, 'day').toISOString();
const date2 = dayjs.tz('2020-10-26', 'Europe/London').toISOString();
const date3 = addDaysExtended(dayjs.tz('2020-10-24', 'Europe/London'), 2).toISOString();

console.log({ date1, date2, date3 });
// {
//    date1: '2020-10-25T23:00:00.000Z',
//    date2: '2020-10-26T00:00:00.000Z',
//    date3: '2020-10-26T00:00:00.000Z'
// }

@nemphys
Copy link

nemphys commented Apr 6, 2021

I suppose this is the reason why I get wrong dates using .startOf()/.endOf()
After the daylight saving time changed a few days ago here in Greece ('Athens/Europe' timezone, normally GMT+2, but changes to GMT+3 when daylight saving time is applied).

I am calculating the "this year" time period as follows:

from = dayjs().tz(timeZone, true).startOf('year');
to = from.clone().endOf('year').endOf('day');

This used to work before the daylight saving time was applied, but right now it produces wrong results:
from -> "2020-12-31T21:00:00.000Z"
to -> "2020-12-31T20:59:59.999Z"

naz added a commit to TryGhost/Utils that referenced this issue May 7, 2021
refs https://github.com/TryGhost/Team/issues/588

- date-fns proved to be unable to manipulate dates consistently in UTC timezone. Keeping all calculations and formatting in UTC is key to have consistency in dates when dealing in inter-system dates
- day.js also failed the test for correct UTC manipulation. See iamkun/dayjs#1271 for example bug which prevents from consistent correct calculation
- luxon was the best option which WORKED. It's also a recommended successor for moment.js with really nice docs and active support
@ChristianKlima
Copy link

We completely switched our project to dayjs and at the end noticed that dayjs does not support the daylight saving time. I can only warn against using this library. Operations such as add cause unexpected results. As soon as a calculation goes over the limit of the time change, the result is wrong. We will continue to use moment.js. This library can only be used in countries without daylight saving time. Example:

dayjs('25-10-2020', 'DD-MM-YYYY')
.tz('Europe/Berlin')
.add(1, 'day')
.diff(dayjs('26-10-2020', 'DD-MM-YYYY').tz('Europe/Berlin'), 'days')
.toString()

result = -3600000

@rickpastoor
Copy link

Running into this issue as well, where I'm trying to calculate the start of a given isoWeek. When crossing DST, the calculation starts returning strange results.

@mr-short
Copy link

We are seeing this issue too. Migrating from momentjs, where we already had unit tests for date conversions across daylight savings. Our tests are now showing off by 1 hour errors.

@dgrelaud
Copy link

dgrelaud commented Dec 8, 2021

FYI, I have created a dayjs plugin to solve this issue.
https://www.npmjs.com/package/dayjs-timezone-iana-plugin

The code is quite simple and largely inspired by moment-timezone.
It includes the complete and latest IANA databases 2021e (96KB compressed). It takes more space than the method used by DayJS or Luxon. But it works even if NodeJS is compiled with small-icu.

We will update it regularly and we used it already in production.

Be careful, dayjs.tz() is not implemented (feel free to make a PR), you must use dayjs(...).tz():

const date1 = dayjs('2020-10-24').tz('Europe/London').add(2, 'day').toISOString();
const date2 = dayjs('2020-10-26').tz('Europe/London').toISOString();

@camsteffen
Copy link

Looks like dayjs used to behave this way but was "fixed" in #586.

daniellockyer pushed a commit to TryGhost/SDK that referenced this issue Jul 26, 2022
refs https://github.com/TryGhost/Team/issues/588

- date-fns proved to be unable to manipulate dates consistently in UTC timezone. Keeping all calculations and formatting in UTC is key to have consistency in dates when dealing in inter-system dates
- day.js also failed the test for correct UTC manipulation. See iamkun/dayjs#1271 for example bug which prevents from consistent correct calculation
- luxon was the best option which WORKED. It's also a recommended successor for moment.js with really nice docs and active support
daniellockyer pushed a commit to TryGhost/Ghost that referenced this issue Jul 26, 2022
refs https://github.com/TryGhost/Team/issues/588

- date-fns proved to be unable to manipulate dates consistently in UTC timezone. Keeping all calculations and formatting in UTC is key to have consistency in dates when dealing in inter-system dates
- day.js also failed the test for correct UTC manipulation. See iamkun/dayjs#1271 for example bug which prevents from consistent correct calculation
- luxon was the best option which WORKED. It's also a recommended successor for moment.js with really nice docs and active support
@AngelFHC
Copy link

Still seems to behave this way

@autonomobil
Copy link

autonomobil commented Feb 7, 2023

Any update on this? Still behaving like this:

dayjs('25-10-2020', 'DD-MM-YYYY')
.tz('Europe/Berlin')
.add(1, 'day')
.diff(dayjs('26-10-2020', 'DD-MM-YYYY').tz('Europe/Berlin'), 'days')
.toString()
result = -3600000

#1271 (comment)

@bbecker-te
Copy link

I just opened an issue that looks similar to this.

@Moumouls
Copy link

Moumouls commented Aug 21, 2023

Hello everyone,

I'd like to inform you that my team is currently in the process of transitioning from using "moment" to "dayjs". Our objective is to calculate the addition of days within a specific timezone while ensuring that the hour remains consistent even during daylight saving periods.

We've noticed that the dayjs ".add" function essentially appends a certain amount of time. Although it appears to handle hour changes correctly, we've encountered issues with the accuracy of the returned ISO string and the "date" function.

We ended with a small plugin, to add, substract correctly in a specific timezone.

// @ts-nocheck
import { PluginFunc } from 'dayjs'

const plugin: PluginFunc = (_, dayjsClass, d) => {
	// eslint-disable-next-line no-param-reassign, func-names
	dayjsClass.prototype.addInTz = function (...args) {
		const timezone = this.$x.$timezone
		if (!timezone) {
			throw new Error('No timezone set')
		}
		return d.tz(
			d(this.toDate())
				.tz(timezone)
				.add(...args)
				.format('YYYY-MM-DD HH:mm:ss'),
			timezone,
		)
	}

	// eslint-disable-next-line no-param-reassign, func-names
	dayjsClass.prototype.subtractInTz = function (...args) {
		const timezone = this.$x.$timezone
		if (!timezone) {
			throw new Error('No timezone set')
		}
		return d.tz(
			d(this.toDate())
				.tz(timezone)
				.subtract(...args)
				.format('YYYY-MM-DD HH:mm:ss'),
			timezone,
		)
	}
}

export default plugin

Some tests examples ( all pass)

import dayjs from 'dayjs'
import utc from 'dayjs/plugin/utc'
import timezone from 'dayjs/plugin/timezone'
// eslint-disable-next-line import/no-named-as-default
import dayjsTzCalc from '.'

dayjs.extend(utc)
dayjs.extend(timezone)
dayjs.extend(dayjsTzCalc)

describe('dayjsTzCalc', () => {
	it('should add in the tz taking in count saving day light', () => {
		// Us change their time zone on 2021-03-14
		const originalDate = dayjs('2021-03-12T00:00:00.000Z').tz(
			'America/New_York',
		)

		expect(originalDate.hour()).toEqual(19)

		// We now add 31 days
		const dateToCheck = originalDate.addInTz(31, 'day')

		// We expect to have a shift of 1 hour due to saving day light
		expect(dateToCheck.toISOString()).toEqual('2021-04-11T23:00:00.000Z')
		// We expect the same hour as the original date
		expect(dateToCheck.hour()).toEqual(19)
	})

	it('should subtract in the tz taking in count saving day light', () => {
		// Us change their time zone on 2021-03-14
		const originalDate = dayjs('2021-04-12T23:00:00.000Z').tz(
			'America/New_York',
		)

		expect(originalDate.hour()).toEqual(19)

		// We now add 31 days
		const dateToCheck = originalDate.subtractInTz(31, 'day')

		// We expect to have a shift of 1 hour due to saving day light
		expect(dateToCheck.toISOString()).toEqual('2021-03-13T00:00:00.000Z')
		// We expect the same hour as the original date
		expect(dateToCheck.hour()).toEqual(19)
	})

	it('should work across daylight saving time', () => {
		const originalDate = dayjs('2021-03-12T00:00:00.000Z').tz(
			'America/New_York',
		)

		expect(originalDate.hour()).toEqual(19)

		const dateToCheck = originalDate.addInTz(8, 'month')

		expect(dateToCheck.toISOString()).toEqual('2021-11-12T00:00:00.000Z')
		expect(dateToCheck.hour()).toEqual(19)

		const dateToCheck2 = dateToCheck.subtractInTz(8, 'month')
		expect(dateToCheck2.toISOString()).toEqual('2021-03-12T00:00:00.000Z')
		expect(dateToCheck2.hour()).toEqual(19)
	})
})

Little note, it should be possible to overload the "add" and "substract" original function, and detect a current timezone ( or not) to handle the correct addition, but in my team we prefer to tell clearly that we perform an addition/substraction in a TZ or directly on the UTC ( without daylight savings effects)

@eleandrodosreis
Copy link

eleandrodosreis commented Feb 1, 2024

To solve this issue that @MarkSFrancis posted we should do the manipulation before apply the timezone, for some reason the .tz function from Day.js is not exactly the same as Moment.js so we can have different results.

On Day.js docs they explain how it works:
https://day.js.org/docs/en/plugin/timezone

Try this:

import dayjs from 'dayjs';
import utc from 'dayjs/plugin/utc';
import tz from 'dayjs/plugin/timezone';
 
dayjs.extend(utc);
dayjs.extend(tz);
 
// Do calculation (add) before apply timezone
// The 'true' flag after timezone 'Europe/London' means that I want to treat the current datetime as local time see docs.
const date1 = dayjs('2020-10-24').add(2, 'day').tz('Europe/London', true).toISOString();
const date2 = dayjs.tz('2020-10-26', 'Europe/London').toISOString();
 
// Prints
// {
//   date1: '2020-10-26T00:00:00.000Z',
//   date2: '2020-10-26T00:00:00.000Z'
// }
console.log({ date1, date2 });

Both dates are now correct considering the daylight savings.

@alex996
Copy link

alex996 commented Jun 7, 2024

The original code works if you run it in Europe/London. Here's the fiddle. Open the dev tools, go to Sensors, set Location to London, and click Run - the dates will match. It seems to work with other locations that follow the same DST schedule, like Berlin or Europe/Paris.

@MarkSFrancis tested in Santiago, Chile where DST ends in September. My guess is because DST is timed differently in America/Santiago, the results don't match. Same if you run the code in a TZ that doesn't observe DST.

@Steveb599
Copy link

Still doesn't work for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests