Skip to content

Commit

Permalink
Merge pull request #194 from ymaheshwari1/#118
Browse files Browse the repository at this point in the history
Fixed: the 12-hour format issue when using specific formatting options from luxon(#188)
  • Loading branch information
ymaheshwari1 authored Apr 18, 2024
2 parents a355935 + 2e2781c commit 3c6c958
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
13 changes: 8 additions & 5 deletions src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,23 @@ const sortSequence = (sequence: Array<Group | Route | Rule>, sortOnField = "sequ
}

const getTime = (time: any) => {
return time ? DateTime.fromMillis(time).toLocaleString(DateTime.TIME_SIMPLE) : "-";
// Directly using TIME_SIMPLE for formatting the time results the time always in 24-hour format, as the Intl is set in that way. So, using hourCycle to always get the time in 12-hour format
// https://github.com/moment/luxon/issues/998
return time ? DateTime.fromMillis(time).toLocaleString({ ...DateTime.TIME_SIMPLE, hourCycle: "h12" }) : "-";
}

function getDate(runTime: any) {
return DateTime.fromMillis(runTime).toLocaleString(DateTime.DATE_MED);
return DateTime.fromMillis(runTime).toLocaleString({ ...DateTime.DATE_MED, hourCycle: "h12" });
}

function getDateAndTime(time: any) {
return time ? DateTime.fromMillis(time).toLocaleString(DateTime.DATETIME_MED) : "-";
return time ? DateTime.fromMillis(time).toLocaleString({ ...DateTime.DATETIME_MED, hourCycle: "h12" }) : "-";
}

function getDateAndTimeShort(time: any) {
// format: hh:mm(localized 24-hour time) date/month
return time ? DateTime.fromMillis(time).toFormat("T dd/LL") : "-";
// format: hh:mm(localized 12-hour time) date/month
// Using toLocaleString as toFormat is not converting the time in 12-hour format
return time ? DateTime.fromMillis(time).toLocaleString({ hour: "numeric", minute: "numeric", day: "numeric", month: "numeric", hourCycle: "h12" }) : "-";
}

function timeTillRun(endTime: any) {
Expand Down
4 changes: 4 additions & 0 deletions src/views/BrokeringRuns.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ onIonViewWillEnter(async () => {
})
function timeTillRun(time: any) {
if(!time) {
return;
}
const timeDiff = DateTime.fromMillis(time).diff(DateTime.local());
return DateTime.local().plus(timeDiff).toRelative();
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function logout() {
}
function getDateTime(time: any) {
return time ? DateTime.fromMillis(time).toLocaleString(DateTime.DATETIME_MED) : "";
return time ? DateTime.fromMillis(time).toLocaleString({ ...DateTime.DATETIME_MED, hourCycle: "h12" }) : "";
}
function goToOms() {
Expand Down

0 comments on commit 3c6c958

Please sign in to comment.