Compare commits

...

8 Commits

Author SHA1 Message Date
Darius
7beb867bd5 1.0.6 2025-11-17 23:52:19 +01:00
Darius
d11d6bf5b1 Generic Commit; Most likely a fix or small feature 2025-11-17 23:52:14 +01:00
Darius
cfb45a03a2 1.0.5 2025-11-17 23:49:52 +01:00
Darius
49bb137388 Generic Commit; Most likely a fix or small feature 2025-11-17 23:49:48 +01:00
Darius
10501bc0a9 1.0.4 2025-11-17 23:48:41 +01:00
Darius
f016d7a01c Generic Commit; Most likely a fix or small feature 2025-11-17 23:48:37 +01:00
Darius
fee4ca327a 1.0.3 2025-11-17 23:47:48 +01:00
Darius
60390fcbdf 1.0.2 2025-11-17 23:47:36 +01:00
12 changed files with 85 additions and 46 deletions

1
dist/index.d.ts vendored
View File

@@ -1,5 +1,6 @@
export * from "./homeassistant"; export * from "./homeassistant";
export * as Logger from "./logger"; export * as Logger from "./logger";
export * from "./tidal"; export * from "./tidal";
export * as TimeSpan from "./timespan";
export * as Utility from "./utility"; export * as Utility from "./utility";
//# sourceMappingURL=index.d.ts.map //# sourceMappingURL=index.d.ts.map

2
dist/index.d.ts.map vendored
View File

@@ -1 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,cAAc,SAAS,CAAC;AACxB,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC"} {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,cAAc,SAAS,CAAC;AACxB,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC"}

3
dist/index.js vendored
View File

@@ -36,8 +36,9 @@ var __importStar = (this && this.__importStar) || (function () {
}; };
})(); })();
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
exports.Utility = exports.Logger = void 0; exports.Utility = exports.TimeSpan = exports.Logger = void 0;
__exportStar(require("./homeassistant"), exports); __exportStar(require("./homeassistant"), exports);
exports.Logger = __importStar(require("./logger")); exports.Logger = __importStar(require("./logger"));
__exportStar(require("./tidal"), exports); __exportStar(require("./tidal"), exports);
exports.TimeSpan = __importStar(require("./timespan"));
exports.Utility = __importStar(require("./utility")); exports.Utility = __importStar(require("./utility"));

8
dist/timespan.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
export declare class TimeSpan {
private start;
private end;
constructor(timeSpanStr: string);
private parseTime;
contains(timestamp?: number): boolean;
}
//# sourceMappingURL=timespan.d.ts.map

1
dist/timespan.d.ts.map vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"timespan.d.ts","sourceRoot":"","sources":["../src/timespan.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"}

29
dist/timespan.js vendored Normal file
View File

@@ -0,0 +1,29 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimeSpan = void 0;
class TimeSpan {
constructor(timeSpanStr) {
const [startStr, endStr] = timeSpanStr.split("-");
this.start = this.parseTime(startStr);
this.end = this.parseTime(endStr);
}
parseTime(timeStr) {
const [hours, minutes] = timeStr.split(":").map(Number);
return { hours, minutes };
}
contains(timestamp = Date.now()) {
const date = new Date(timestamp);
const hours = date.getHours();
const minutes = date.getMinutes();
const currentMinutes = hours * 60 + minutes;
const startMinutes = this.start.hours * 60 + this.start.minutes;
const endMinutes = this.end.hours * 60 + this.end.minutes;
if (startMinutes > endMinutes) {
return currentMinutes >= startMinutes || currentMinutes < endMinutes;
}
else {
return currentMinutes >= startMinutes && currentMinutes < endMinutes;
}
}
}
exports.TimeSpan = TimeSpan;

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@dpu/shared", "name": "@dpu/shared",
"version": "1.0.1", "version": "1.0.6",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@dpu/shared", "name": "@dpu/shared",
"version": "1.0.1", "version": "1.0.6",
"dependencies": { "dependencies": {
"axios": "^1.7.9", "axios": "^1.7.9",
"chalk": "^5.6.2" "chalk": "^5.6.2"

View File

@@ -1,6 +1,6 @@
{ {
"name": "@dpu/shared", "name": "@dpu/shared",
"version": "1.0.1", "version": "1.0.6",
"description": "", "description": "",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View File

@@ -1,4 +1,4 @@
export * from "./homeassistant"; export * from "./homeassistant";
export * as Logger from "./logger"; export * as Logger from "./logger";
export * from "./tidal"; export * from "./tidal";
export * as Utility from "./utility"; export * as TimeHelper from "./timehelper";

View File

@@ -1,3 +1,4 @@
import axios from "axios";
import chalk from "chalk"; import chalk from "chalk";
export function logError(...args: unknown[]) { export function logError(...args: unknown[]) {
@@ -15,3 +16,17 @@ export function logSuccess(...args: unknown[]) {
export function logInfo(...args: unknown[]) { export function logInfo(...args: unknown[]) {
console.info(chalk.cyan("INFO:"), ...args); console.info(chalk.cyan("INFO:"), ...args);
} }
export function printNetworkError(error: unknown) {
if (axios.isAxiosError(error)) {
logError("Axios error details:", {
message: error.message,
status: error.response?.status,
statusText: error.response?.statusText,
data: error.response?.data,
url: error.config?.url,
});
} else {
logError("Unexpected error:", error);
}
}

View File

@@ -30,3 +30,27 @@ export class TimeSpan {
} }
} }
} }
export function secondsToReadable(
secs: number,
roundToMinutes: boolean = false,
): string {
const totalSeconds = roundToMinutes ? Math.round(secs / 60) * 60 : secs;
var days = Math.floor(totalSeconds / (3600 * 24));
var hours = Math.floor((totalSeconds % (3600 * 24)) / 3600);
var minutes = Math.floor((totalSeconds % 3600) / 60);
var seconds = Math.floor(totalSeconds % 60);
var dayDisplay = days > 0 ? days + (days === 1 ? " day, " : " days, ") : "";
var hourDisplay =
hours > 0 ? hours + (hours === 1 ? " hour, " : " hours, ") : "";
var minuteDisplay =
minutes > 0 ? minutes + (minutes === 1 ? " minute, " : " minutes, ") : "";
var secondDisplay =
seconds > 0 ? seconds + (seconds === 1 ? " second" : " seconds") : "";
return (dayDisplay + hourDisplay + minuteDisplay + secondDisplay).replace(
/,\s*$/,
"",
);
}

View File

@@ -1,40 +0,0 @@
import axios from "axios";
import { logError } from "./logger";
export function secondsToReadable(
secs: number,
roundToMinutes: boolean = false,
): string {
const totalSeconds = roundToMinutes ? Math.round(secs / 60) * 60 : secs;
var days = Math.floor(totalSeconds / (3600 * 24));
var hours = Math.floor((totalSeconds % (3600 * 24)) / 3600);
var minutes = Math.floor((totalSeconds % 3600) / 60);
var seconds = Math.floor(totalSeconds % 60);
var dayDisplay = days > 0 ? days + (days === 1 ? " day, " : " days, ") : "";
var hourDisplay =
hours > 0 ? hours + (hours === 1 ? " hour, " : " hours, ") : "";
var minuteDisplay =
minutes > 0 ? minutes + (minutes === 1 ? " minute, " : " minutes, ") : "";
var secondDisplay =
seconds > 0 ? seconds + (seconds === 1 ? " second" : " seconds") : "";
return (dayDisplay + hourDisplay + minuteDisplay + secondDisplay).replace(
/,\s*$/,
"",
);
}
export function printNetworkError(error: unknown) {
if (axios.isAxiosError(error)) {
logError("Axios error details:", {
message: error.message,
status: error.response?.status,
statusText: error.response?.statusText,
data: error.response?.data,
url: error.config?.url,
});
} else {
logError("Unexpected error:", error);
}
}