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(js-jods): Propert support for date-only and time-only in mergeDateAndTime method #653

Merged
merged 2 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
20 changes: 20 additions & 0 deletions __tests__/js-joda.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { LocalDate, LocalTime, LocalDateTime } from '@js-joda/core';
import JsJodaUtils from "../packages/js-joda/src";

describe("js-joda", () => {
const jsJodaUtils = new JsJodaUtils();

it("Merges a date with a non-time", () => {
const one = LocalDateTime.of(2022, 12, 5, 9, 30);
const two = LocalDate.of(2022, 12, 6);

expect(jsJodaUtils.mergeDateAndTime(one, two)).toEqual(one);
});

it("Merges a non-date with a time", () => {
const one = LocalTime.of(9, 30);
const two = LocalDateTime.of(2022, 12, 5, 9, 30);

expect(jsJodaUtils.mergeDateAndTime(one, two)).toEqual(two);
});
});
16 changes: 12 additions & 4 deletions packages/js-joda/src/js-joda-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -436,12 +436,20 @@ export default class JsJodaUtils implements IUtils<Temporal> {
}

mergeDateAndTime(date: Temporal, time: Temporal): Temporal {
var qtime = time.query(TemporalQueries.localTime());
if (qtime == null) {
/* istanbul ignore next */
const qdate = date.query(TemporalQueries.localDate());
const qtime = time.query(TemporalQueries.localTime());
if (qdate && qtime) {
return qdate.atTime(qtime);
} else if (!qdate) {
// A time merged with a non-date gives the original time.
return time;
} else if (!qtime) {
// A date merged with a non-time gives the original date.
return date;
} else {
return LocalDate.from(date).atTime(LocalTime.from(time));
// Fallback / error behavior
/* istanbul ignore next */
return date;
}
}

Expand Down
Loading