Compare commits

...

10 Commits

Author SHA1 Message Date
Darius
8daeed6b5f 1.5.4 2026-02-05 01:00:05 +01:00
Darius
6d05233a6e fix logger import 2026-02-05 00:59:56 +01:00
Darius
3dd61ab4e8 1.5.3 2026-02-05 00:47:31 +01:00
Darius
b7ea7bc552 dont need volume 2026-02-05 00:47:23 +01:00
Darius
d23c89c3c9 1.5.2 2026-02-05 00:31:13 +01:00
Darius
fd766a822c add homepage information type pt2 2026-02-05 00:31:08 +01:00
Darius
bf580c8a84 1.5.1 2026-02-05 00:27:11 +01:00
Darius
12fc98c925 add homepage information type 2026-02-05 00:26:47 +01:00
Darius
3b7ef0f3ee 1.5.0 2026-02-04 21:52:35 +01:00
Darius
ada7268062 sse typing 2026-02-04 21:52:32 +01:00
14 changed files with 113 additions and 4 deletions

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

@@ -0,0 +1,8 @@
import { API_HA_DeskPosition } from "./homeassistant";
import { TidalGetCurrent } from "./tidal";
export type FullInformation = {
ha_desk_position: API_HA_DeskPosition | null;
ha_temp: string | null;
tidal_current: TidalGetCurrent | null;
};
//# sourceMappingURL=homepage.d.ts.map

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

@@ -0,0 +1 @@
{"version":3,"file":"homepage.d.ts","sourceRoot":"","sources":["../src/homepage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE1C,MAAM,MAAM,eAAe,GAAG;IAC7B,gBAAgB,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAC7C,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,aAAa,EAAE,eAAe,GAAG,IAAI,CAAC;CACtC,CAAA"}

1
dist/homepage.js vendored Normal file
View File

@@ -0,0 +1 @@
export {};

2
dist/index.d.ts vendored
View File

@@ -1,6 +1,8 @@
export * from "./fastify.js";
export * from "./homeassistant.js";
export * from "./homepage.js";
export * from "./logger.js";
export * from "./sse.js";
export * from "./tidal.js";
export * from "./timehelper.js";
//# 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,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC"}
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC"}

2
dist/index.js vendored
View File

@@ -1,5 +1,7 @@
export * from "./fastify.js";
export * from "./homeassistant.js";
export * from "./homepage.js";
export * from "./logger.js";
export * from "./sse.js";
export * from "./tidal.js";
export * from "./timehelper.js";

17
dist/sse.d.ts vendored Normal file
View File

@@ -0,0 +1,17 @@
export type SseClient = {
id: number;
send: (data: SseEvent) => void;
};
export type SseEvent = {
type: string;
data?: unknown;
message?: string;
};
export declare class SseService {
private clients;
addClient(client: SseClient): void;
removeClient(clientId: number): void;
notifyClients(event: SseEvent): void;
getClientCount(): number;
}
//# sourceMappingURL=sse.d.ts.map

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

@@ -0,0 +1 @@
{"version":3,"file":"sse.d.ts","sourceRoot":"","sources":["../src/sse.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,SAAS,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,IAAI,EAAE,QAAQ,KAAK,IAAI,CAAC;CAC/B,CAAA;AAED,MAAM,MAAM,QAAQ,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;CACjB,CAAA;AAED,qBAAa,UAAU;IACtB,OAAO,CAAC,OAAO,CAAwB;IAEvC,SAAS,CAAC,MAAM,EAAE,SAAS,GAAG,IAAI;IAOlC,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAUpC,aAAa,CAAC,KAAK,EAAE,QAAQ,GAAG,IAAI;IAMpC,cAAc,IAAI,MAAM;CAGxB"}

23
dist/sse.js vendored Normal file
View File

@@ -0,0 +1,23 @@
import { logInfo } from "./logger.js";
export class SseService {
clients = new Set();
addClient(client) {
this.clients.add(client);
logInfo(`SSE client connected: ${client.id}. Total clients: ${this.clients.size}`);
}
removeClient(clientId) {
const client = [...this.clients].find((c) => c.id === clientId);
if (client) {
this.clients.delete(client);
logInfo(`SSE client disconnected: ${clientId}. Total clients: ${this.clients.size}`);
}
}
notifyClients(event) {
this.clients.forEach((client) => {
client.send(event);
});
}
getClientCount() {
return this.clients.size;
}
}

4
package-lock.json generated
View File

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

View File

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

8
src/homepage.ts Normal file
View File

@@ -0,0 +1,8 @@
import { API_HA_DeskPosition } from "./homeassistant";
import { TidalGetCurrent } from "./tidal";
export type FullInformation = {
ha_desk_position: API_HA_DeskPosition | null;
ha_temp: string | null;
tidal_current: TidalGetCurrent | null;
}

View File

@@ -1,5 +1,8 @@
export * from "./fastify.js";
export * from "./homeassistant.js";
export * from "./homepage.js";
export * from "./logger.js";
export * from "./sse.js";
export * from "./tidal.js";
export * from "./timehelper.js";

43
src/sse.ts Normal file
View File

@@ -0,0 +1,43 @@
import { logInfo } from "./logger.js";
export type SseClient = {
id: number;
send: (data: SseEvent) => void;
}
export type SseEvent = {
type: string;
data?: unknown;
message?: string;
}
export class SseService {
private clients = new Set<SseClient>();
addClient(client: SseClient): void {
this.clients.add(client);
logInfo(
`SSE client connected: ${client.id}. Total clients: ${this.clients.size}`,
);
}
removeClient(clientId: number): void {
const client = [...this.clients].find((c) => c.id === clientId);
if (client) {
this.clients.delete(client);
logInfo(
`SSE client disconnected: ${clientId}. Total clients: ${this.clients.size}`,
);
}
}
notifyClients(event: SseEvent): void {
this.clients.forEach((client) => {
client.send(event);
});
}
getClientCount(): number {
return this.clients.size;
}
}