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

fix(universal-date-input): fix date validation #1545

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/wet-shirts-punch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@alfalab/core-components-universal-date-input': patch
---

Исправлена валидация вводимого времени, которая раннее могла приводить к выводу неправильной даты в разных таймзонах
11 changes: 7 additions & 4 deletions packages/universal-date-input/src/mask/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,10 +325,13 @@ export function minMaxValidation(segments: Partial<DateSegments>, min: Date, max
}

if (dayFilled && monthFilled && yearFilled) {
const date = clamp(new Date(`${segments.year}-${segments.month}-${segments.day}`), {
start: min,
end: max,
});
const date = clamp(
new Date(`${segments.year}-${segments.month}-${segments.day}T00:00:00`),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

тут просто сбросил время на 00:00:00?

Copy link
Collaborator Author

@fulcanellee fulcanellee Jan 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Добавил временную метку, так как без нее new Date в JS автоматически преобразует её в локальное время пользователя, основываясь на его часовом поясе (это ощутимо при смене часовых поясов с очень большой разницей, например добавляем utc 06.01, а в Гонолулу будет 05.01, что приводит к ошибке которую зарепортили).
При добавлении T00:00:00, мы указаываем время в дополнение к дате. JS интерпретирует такую строку как дату и время локальной временной зоны

Copy link
Contributor

@reme3d2y reme3d2y Jan 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

Какой вариант хотелось получить?
Я к тому, что без Z - это все равно будет локально время. Или так и нужно было?

Copy link
Collaborator Author

@fulcanellee fulcanellee Jan 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Так и нужно было. Без Z будет локальное время, и оно не будет смещаться при смене часового пояса.
На скрине в первом случае одна дата. Во втором, ввели 5ое число, а получили 4ое
image

{
start: min,
end: max,
},
);

segments.day = date.getDate().toString().padStart(2, '0');
segments.month = (date.getMonth() + 1).toString().padStart(2, '0');
Expand Down
Loading