@typed-assistant/builder 0.0.61 → 0.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/pullChanges.tsx +2 -9
- package/src/setupWebserver.tsx +18 -0
- package/src/webserver/App.tsx +2 -78
- package/src/webserver/Logs.tsx +2 -2
- package/src/webserver/Stats.tsx +73 -0
- package/src/webserver/Terminal.tsx +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typed-assistant/builder",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.63",
|
|
4
4
|
"exports": {
|
|
5
5
|
"./appProcess": "./src/appProcess.tsx",
|
|
6
6
|
"./bunInstall": "./src/bunInstall.tsx",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"home-assistant-js-websocket": "^8.2.0",
|
|
26
26
|
"ts-toolbelt": "^9.6.0",
|
|
27
27
|
"typescript": "^5.3.3",
|
|
28
|
+
"@typed-assistant/eslint-config": "0.0.9",
|
|
28
29
|
"@typed-assistant/logger": "0.0.17",
|
|
29
|
-
"@typed-assistant/typescript-config": "0.0.9",
|
|
30
30
|
"@typed-assistant/utils": "0.0.15",
|
|
31
|
-
"@typed-assistant/
|
|
31
|
+
"@typed-assistant/typescript-config": "0.0.9"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"home-assistant-js-websocket": "^8.2.0"
|
package/src/pullChanges.tsx
CHANGED
|
@@ -4,15 +4,8 @@ import { bunInstall } from "./bunInstall"
|
|
|
4
4
|
|
|
5
5
|
export const pullChanges = async () => {
|
|
6
6
|
logger.debug({ emoji: "⬇️" }, "Pulling changes...")
|
|
7
|
-
const { stderr, stdout } = await $`git pull`.quiet()
|
|
8
|
-
|
|
9
|
-
{
|
|
10
|
-
additionalDetails: `stderr: ${stderr.length}, stdout: ${stdout.length}`,
|
|
11
|
-
emoji: "XXXXX",
|
|
12
|
-
},
|
|
13
|
-
"LOOK HERE",
|
|
14
|
-
)
|
|
15
|
-
if (stderr.length > 0) {
|
|
7
|
+
const { exitCode, stderr, stdout } = await $`git pull`.quiet()
|
|
8
|
+
if (exitCode) {
|
|
16
9
|
logger.error(
|
|
17
10
|
{ additionalDetails: stderr.toString().trim(), emoji: "⬇️🚨" },
|
|
18
11
|
`Failed to pull changes.`,
|
package/src/setupWebserver.tsx
CHANGED
|
@@ -163,6 +163,24 @@ export const startWebappServer = async ({
|
|
|
163
163
|
restartAddon()
|
|
164
164
|
return { message: "Restarting addon..." }
|
|
165
165
|
})
|
|
166
|
+
.get("/force-sync-with-github", async () => {
|
|
167
|
+
const { exitCode, stderr } =
|
|
168
|
+
await $`git reset --hard origin/${process.env.GITHUB_BRANCH}`.quiet()
|
|
169
|
+
if (exitCode) {
|
|
170
|
+
logger.error(
|
|
171
|
+
{
|
|
172
|
+
additionalDetails: stderr.toString().trim(),
|
|
173
|
+
emoji: "🔄🚨",
|
|
174
|
+
},
|
|
175
|
+
"Failed to reset to origin",
|
|
176
|
+
)
|
|
177
|
+
return {
|
|
178
|
+
message: "Failed to reset to origin",
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
logger.info({ emoji: "🔄" }, "Reset to origin")
|
|
182
|
+
return { message: "Reset to origin" }
|
|
183
|
+
})
|
|
166
184
|
.get(
|
|
167
185
|
"/webhook",
|
|
168
186
|
async ({ query }) => {
|
package/src/webserver/App.tsx
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
import { Terminal } from "./Terminal"
|
|
2
1
|
import { Logs } from "./Logs"
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { Await } from "ts-toolbelt/out/Any/Await"
|
|
6
|
-
import { AppSection } from "./AppSection"
|
|
7
|
-
import { set } from "zod"
|
|
8
|
-
import { ONE_SECOND } from "@typed-assistant/utils/durations"
|
|
2
|
+
import { Stats } from "./Stats"
|
|
3
|
+
import { Terminal } from "./Terminal"
|
|
9
4
|
|
|
10
5
|
const basePath = process.env.BASE_PATH ?? ""
|
|
11
6
|
|
|
@@ -23,75 +18,4 @@ const App = () => {
|
|
|
23
18
|
)
|
|
24
19
|
}
|
|
25
20
|
|
|
26
|
-
const Stats = () => {
|
|
27
|
-
const [counter, setCounter] = useState(0)
|
|
28
|
-
const [error, setError] = useState<string | null>(null)
|
|
29
|
-
const [lastUpdated, setLastUpdated] = useState<number | null>(null)
|
|
30
|
-
const [stats, setStats] =
|
|
31
|
-
useState<Awaited<ReturnType<typeof app.stats.get>>["data"]>(null)
|
|
32
|
-
|
|
33
|
-
useEffect(() => {
|
|
34
|
-
app.stats.get().then((stats) => {
|
|
35
|
-
setLastUpdated(Date.now())
|
|
36
|
-
if (stats.error) {
|
|
37
|
-
setError(stats.error.message)
|
|
38
|
-
return
|
|
39
|
-
}
|
|
40
|
-
setStats(stats.data)
|
|
41
|
-
|
|
42
|
-
const timeout = setTimeout(() => {
|
|
43
|
-
setCounter((c) => c + 1)
|
|
44
|
-
}, 30 * ONE_SECOND)
|
|
45
|
-
return () => clearTimeout(timeout)
|
|
46
|
-
})
|
|
47
|
-
}, [counter])
|
|
48
|
-
|
|
49
|
-
return (
|
|
50
|
-
<AppSection className="pb-0" fullHeight={false} scrollable={false}>
|
|
51
|
-
{error ? (
|
|
52
|
-
<>Error: {error}</>
|
|
53
|
-
) : stats ? (
|
|
54
|
-
<div
|
|
55
|
-
title={`Last updated: ${lastUpdated ? new Date(lastUpdated).toLocaleTimeString() : "Never"}`}
|
|
56
|
-
>
|
|
57
|
-
<div className="mb-2 text-slate-400">
|
|
58
|
-
Last updated:{" "}
|
|
59
|
-
{lastUpdated ? new Date(lastUpdated).toLocaleTimeString() : "Never"}
|
|
60
|
-
, max memory usage: {bytesToMegaBytes(stats.max_memory_usage)}MB
|
|
61
|
-
</div>
|
|
62
|
-
<div className="mb-3">
|
|
63
|
-
<div className="mb-1">
|
|
64
|
-
Memory:{" "}
|
|
65
|
-
{stats.memory_usage
|
|
66
|
-
? `${bytesToMegaBytes(stats.memory_usage ?? 0)} / ${bytesToMegaBytes(stats.memory_limit ?? 0)}MB`
|
|
67
|
-
: "Loading..."}
|
|
68
|
-
</div>
|
|
69
|
-
<ProgressBar value={stats.memory_percent ?? 0} />
|
|
70
|
-
</div>
|
|
71
|
-
<div className="mb-1">
|
|
72
|
-
CPU: {stats.cpu_percent ? `${stats.cpu_percent}%` : "Loading..."}
|
|
73
|
-
</div>
|
|
74
|
-
<ProgressBar value={stats.cpu_percent ?? 0} />
|
|
75
|
-
</div>
|
|
76
|
-
) : (
|
|
77
|
-
<div>Loading...</div>
|
|
78
|
-
)}
|
|
79
|
-
</AppSection>
|
|
80
|
-
)
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
const ProgressBar = ({ value }: { value: number }) => {
|
|
84
|
-
return (
|
|
85
|
-
<div className="relative w-full h-2 bg-slate-800 rounded-md overflow-hidden">
|
|
86
|
-
<div
|
|
87
|
-
className="absolute h-full bg-slate-600"
|
|
88
|
-
style={{ width: `${value}%` }}
|
|
89
|
-
></div>
|
|
90
|
-
</div>
|
|
91
|
-
)
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
const bytesToMegaBytes = (bytes: number) =>
|
|
95
|
-
Math.round((bytes / 1024 / 1024) * 100) / 100
|
|
96
|
-
|
|
97
21
|
export default App
|
package/src/webserver/Logs.tsx
CHANGED
|
@@ -95,9 +95,9 @@ export const Logs = ({ basePath }: { basePath: string }) => {
|
|
|
95
95
|
{logs
|
|
96
96
|
.filter((log) => log.level >= (levels[level] ?? 0))
|
|
97
97
|
.sort((a, b) => b.time - a.time)
|
|
98
|
-
.map((log
|
|
98
|
+
.map((log) => {
|
|
99
99
|
return (
|
|
100
|
-
<li key={
|
|
100
|
+
<li key={JSON.stringify(log)} className="flex gap-1">
|
|
101
101
|
<span className="text-slate-400 mr-2">
|
|
102
102
|
{dateTimeVisibility === "hidden"
|
|
103
103
|
? null
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { useEffect, useState } from "react"
|
|
2
|
+
import { app } from "./api"
|
|
3
|
+
import { AppSection } from "./AppSection"
|
|
4
|
+
import { ONE_SECOND } from "@typed-assistant/utils/durations"
|
|
5
|
+
|
|
6
|
+
export const Stats = () => {
|
|
7
|
+
const [counter, setCounter] = useState(0)
|
|
8
|
+
const [error, setError] = useState<string | null>(null)
|
|
9
|
+
const [lastUpdated, setLastUpdated] = useState<number | null>(null)
|
|
10
|
+
const [stats, setStats] =
|
|
11
|
+
useState<Awaited<ReturnType<typeof app.stats.get>>["data"]>(null)
|
|
12
|
+
|
|
13
|
+
useEffect(() => {
|
|
14
|
+
app.stats.get().then((stats) => {
|
|
15
|
+
setLastUpdated(Date.now())
|
|
16
|
+
if (stats.error) {
|
|
17
|
+
setError(stats.error.message)
|
|
18
|
+
return
|
|
19
|
+
}
|
|
20
|
+
setStats(stats.data)
|
|
21
|
+
|
|
22
|
+
const timeout = setTimeout(() => {
|
|
23
|
+
setCounter((c) => c + 1)
|
|
24
|
+
}, 30 * ONE_SECOND)
|
|
25
|
+
return () => clearTimeout(timeout)
|
|
26
|
+
})
|
|
27
|
+
}, [counter])
|
|
28
|
+
|
|
29
|
+
return (
|
|
30
|
+
<AppSection className="pb-0" fullHeight={false} scrollable={false}>
|
|
31
|
+
{error ? (
|
|
32
|
+
<>Error: {error}</>
|
|
33
|
+
) : stats ? (
|
|
34
|
+
<>
|
|
35
|
+
<div className="mb-3">
|
|
36
|
+
<div className="mb-1">
|
|
37
|
+
Memory:{" "}
|
|
38
|
+
{stats.memory_usage
|
|
39
|
+
? `${bytesToMegaBytes(stats.memory_usage ?? 0)} / ${bytesToMegaBytes(stats.memory_limit ?? 0)}MB`
|
|
40
|
+
: "Loading..."}
|
|
41
|
+
</div>
|
|
42
|
+
<ProgressBar value={stats.memory_percent ?? 0} />
|
|
43
|
+
</div>
|
|
44
|
+
<div className="mb-3">
|
|
45
|
+
<div className="mb-1">
|
|
46
|
+
CPU: {stats.cpu_percent ? `${stats.cpu_percent}%` : "Loading..."}
|
|
47
|
+
</div>
|
|
48
|
+
<ProgressBar value={stats.cpu_percent ?? 0} />
|
|
49
|
+
</div>
|
|
50
|
+
<div className=" text-slate-400">
|
|
51
|
+
Max memory usage: {bytesToMegaBytes(stats.max_memory_usage)}MB. Last
|
|
52
|
+
updated:{" "}
|
|
53
|
+
{lastUpdated ? new Date(lastUpdated).toLocaleTimeString() : "Never"}
|
|
54
|
+
</div>
|
|
55
|
+
</>
|
|
56
|
+
) : (
|
|
57
|
+
<div>Loading...</div>
|
|
58
|
+
)}
|
|
59
|
+
</AppSection>
|
|
60
|
+
)
|
|
61
|
+
}
|
|
62
|
+
const ProgressBar = ({ value }: { value: number }) => {
|
|
63
|
+
return (
|
|
64
|
+
<div className="relative w-full h-2 bg-slate-800 rounded-md overflow-hidden">
|
|
65
|
+
<div
|
|
66
|
+
className="absolute h-full bg-slate-600"
|
|
67
|
+
style={{ width: `${value}%` }}
|
|
68
|
+
></div>
|
|
69
|
+
</div>
|
|
70
|
+
)
|
|
71
|
+
}
|
|
72
|
+
const bytesToMegaBytes = (bytes: number) =>
|
|
73
|
+
Math.round((bytes / 1024 / 1024) * 100) / 100
|
|
@@ -84,6 +84,14 @@ export function Terminal() {
|
|
|
84
84
|
TypedAssistant <WSIndicator ws={ws.ws} />
|
|
85
85
|
</h1>
|
|
86
86
|
<div className="flex flex-wrap gap-2">
|
|
87
|
+
<ButtonAsync
|
|
88
|
+
onClick={() => app["force-sync-with-github"].get()}
|
|
89
|
+
stateLabels={{
|
|
90
|
+
idle: "Force sync with remote",
|
|
91
|
+
loading: "Syncing...",
|
|
92
|
+
success: "Successfully synced with remote",
|
|
93
|
+
}}
|
|
94
|
+
/>
|
|
87
95
|
<ButtonAsync
|
|
88
96
|
onClick={() => app["restart-app"].get()}
|
|
89
97
|
stateLabels={{
|