add timezone to timespan

This commit is contained in:
Darius
2025-11-24 01:36:55 +01:00
parent 3dfa3007bf
commit 36f2535cf8
4 changed files with 24 additions and 9 deletions

View File

@@ -1,7 +1,8 @@
export declare class TimeSpan { export declare class TimeSpan {
private start; private start;
private end; private end;
constructor(timeSpanStr: string); private timeZone;
constructor(timeSpanStr: string, timeZone: string);
private parseTime; private parseTime;
contains(timestamp?: number): boolean; contains(timestamp?: number): boolean;
} }

View File

@@ -1 +1 @@
{"version":3,"file":"timehelper.d.ts","sourceRoot":"","sources":["../src/timehelper.ts"],"names":[],"mappings":"AAAA,qBAAa,QAAQ;IACnB,OAAO,CAAC,KAAK,CAAqC;IAClD,OAAO,CAAC,GAAG,CAAqC;gBAEpC,WAAW,EAAE,MAAM;IAM/B,OAAO,CAAC,SAAS;IAKjB,QAAQ,CAAC,SAAS,GAAE,MAAmB,GAAG,OAAO;CAgBlD;AAED,MAAM,WAAW,WAAW;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,CAAC,cAAc,CAAC,EAAE,OAAO,KAAK,MAAM,CAAC;CAClD;AAED,wBAAgB,uBAAuB,CACrC,KAAK,EAAE,MAAM,EACb,GAAG,EAAE,MAAM,GACV,WAAW,CAOb;AAED,wBAAgB,iBAAiB,CAC/B,IAAI,EAAE,MAAM,EACZ,cAAc,GAAE,OAAe,GAC9B,MAAM,CAmBR"} {"version":3,"file":"timehelper.d.ts","sourceRoot":"","sources":["../src/timehelper.ts"],"names":[],"mappings":"AAAA,qBAAa,QAAQ;IACnB,OAAO,CAAC,KAAK,CAAqC;IAClD,OAAO,CAAC,GAAG,CAAqC;IAChD,OAAO,CAAC,QAAQ,CAAC;gBAEL,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAOjD,OAAO,CAAC,SAAS;IAKjB,QAAQ,CAAC,SAAS,GAAE,MAAmB,GAAG,OAAO;CAqBlD;AAED,MAAM,WAAW,WAAW;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,CAAC,cAAc,CAAC,EAAE,OAAO,KAAK,MAAM,CAAC;CAClD;AAED,wBAAgB,uBAAuB,CACrC,KAAK,EAAE,MAAM,EACb,GAAG,EAAE,MAAM,GACV,WAAW,CAOb;AAED,wBAAgB,iBAAiB,CAC/B,IAAI,EAAE,MAAM,EACZ,cAAc,GAAE,OAAe,GAC9B,MAAM,CAmBR"}

13
dist/timehelper.js vendored
View File

@@ -1,10 +1,12 @@
export class TimeSpan { export class TimeSpan {
start; start;
end; end;
constructor(timeSpanStr) { timeZone;
constructor(timeSpanStr, timeZone) {
const [startStr, endStr] = timeSpanStr.split("-"); const [startStr, endStr] = timeSpanStr.split("-");
this.start = this.parseTime(startStr); this.start = this.parseTime(startStr);
this.end = this.parseTime(endStr); this.end = this.parseTime(endStr);
this.timeZone = timeZone;
} }
parseTime(timeStr) { parseTime(timeStr) {
const [hours, minutes] = timeStr.split(":").map(Number); const [hours, minutes] = timeStr.split(":").map(Number);
@@ -12,8 +14,13 @@ export class TimeSpan {
} }
contains(timestamp = Date.now()) { contains(timestamp = Date.now()) {
const date = new Date(timestamp); const date = new Date(timestamp);
const hours = date.getHours(); const berlinTimeStr = date.toLocaleString("de-DE", {
const minutes = date.getMinutes(); timeZone: this.timeZone, // "Europe/Berlin"
hour12: false,
hour: "2-digit",
minute: "2-digit",
});
const [hours, minutes] = berlinTimeStr.split(":").map(Number);
const currentMinutes = hours * 60 + minutes; const currentMinutes = hours * 60 + minutes;
const startMinutes = this.start.hours * 60 + this.start.minutes; const startMinutes = this.start.hours * 60 + this.start.minutes;
const endMinutes = this.end.hours * 60 + this.end.minutes; const endMinutes = this.end.hours * 60 + this.end.minutes;

View File

@@ -1,11 +1,13 @@
export class TimeSpan { export class TimeSpan {
private start: { hours: number; minutes: number }; private start: { hours: number; minutes: number };
private end: { hours: number; minutes: number }; private end: { hours: number; minutes: number };
private timeZone;
constructor(timeSpanStr: string) { constructor(timeSpanStr: string, timeZone: string) {
const [startStr, endStr] = timeSpanStr.split("-"); const [startStr, endStr] = timeSpanStr.split("-");
this.start = this.parseTime(startStr); this.start = this.parseTime(startStr);
this.end = this.parseTime(endStr); this.end = this.parseTime(endStr);
this.timeZone = timeZone;
} }
private parseTime(timeStr: string) { private parseTime(timeStr: string) {
@@ -16,10 +18,15 @@ export class TimeSpan {
contains(timestamp: number = Date.now()): boolean { contains(timestamp: number = Date.now()): boolean {
const date = new Date(timestamp); const date = new Date(timestamp);
const hours = date.getHours(); const berlinTimeStr = date.toLocaleString("de-DE", {
const minutes = date.getMinutes(); timeZone: this.timeZone, // "Europe/Berlin"
const currentMinutes = hours * 60 + minutes; hour12: false,
hour: "2-digit",
minute: "2-digit",
});
const [hours, minutes] = berlinTimeStr.split(":").map(Number);
const currentMinutes = hours * 60 + minutes;
const startMinutes = this.start.hours * 60 + this.start.minutes; const startMinutes = this.start.hours * 60 + this.start.minutes;
const endMinutes = this.end.hours * 60 + this.end.minutes; const endMinutes = this.end.hours * 60 + this.end.minutes;