Use LACONIC_HOSTED_CONFIG (#1)

Reviewed-on: telackey/webapp-deployment-status-ui#1
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
This commit is contained in:
Thomas E Lackey 2024-02-16 03:59:09 +00:00 committed by Thomas E Lackey
parent a40bb93abb
commit 64782a4134
4 changed files with 14 additions and 6 deletions

View File

@ -2,6 +2,7 @@
"name": "webapp-deployment-status-ui",
"version": "0.1.0",
"private": true,
"homepage": "LACONIC_HOSTED_CONFIG_homepage",
"dependencies": {
"@tanstack/react-query": "^5.17.15",
"@testing-library/jest-dom": "^5.14.1",

View File

@ -19,8 +19,10 @@ function StatusTable() {
const [logId, setLogId] = useState("");
// Queries
const query = useQuery({queryKey: ['allStatus'], queryFn: fetchAllStatuses})
const query = useQuery({queryKey: ['allStatus'], queryFn: fetchAllStatuses, refetchInterval: 10000});
const queryLog = useQuery({queryKey: ['log', logId], queryFn: () => fetchLogs(logId)});
const consoleLink = "LACONIC_HOSTED_CONFIG_app_console_link";
return (<div>
{logId && (<Modal open={true}>
@ -33,7 +35,7 @@ function StatusTable() {
{query.data?.map((status: any) => <div className={status.lastState.toLowerCase() + " status-row"}>
<div className="status-line">
<span className="status-key">Request ID:</span>
<span className="status-value">{status.id}</span>
<span className="status-value"><a href={consoleLink.replace("#RQID#", status.id)}>{status.id}</a></span>
</div>
<div className="status-line">
<span className="status-key">Application:</span>

View File

@ -17,6 +17,10 @@ button {
cursor: pointer;
}
a {
color: #444;
}
#all-status {
margin: auto;
min-width: 50%;

View File

@ -1,6 +1,7 @@
const apiUrl = "LACONIC_HOSTED_CONFIG_app_api_url";
export const fetchAllStatuses = async () => {
let url = "http://localhost:9555"
const res = await fetch(url);
const res = await fetch(apiUrl);
if (!res.ok) {
throw new Error('Network response was not ok')
}
@ -12,10 +13,10 @@ export const fetchLogs = async (id: string) => {
if (!id) {
return "";
}
let url = `http://localhost:9555/log/${id}`
let url = `${apiUrl}/log/${id}`
const res = await fetch(url);
if (!res.ok) {
throw new Error('Network response was not ok')
}
return await res.text();
}
}