diff --git a/Pulsar/WebApp/package.json b/Pulsar/WebApp/package.json
index ffbcad3..3fc862d 100644
--- a/Pulsar/WebApp/package.json
+++ b/Pulsar/WebApp/package.json
@@ -13,12 +13,12 @@
},
"devDependencies": {
"@biomejs/biome": "1.6.4",
+ "@microsoft/signalr": "^8.0.0",
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/eslint": "^8.56.7",
- "@microsoft/signalr": "^8.0.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"sass": "^1.75.0",
@@ -29,5 +29,9 @@
"typescript-eslint": "^7.5.0",
"vite": "^5.0.3"
},
- "type": "module"
+ "type": "module",
+ "dependencies": {
+ "@sveltestack/svelte-query": "^1.6.0",
+ "axios": "^1.6.8"
+ }
}
diff --git a/Pulsar/WebApp/src/lib/Debug.svelte b/Pulsar/WebApp/src/lib/Debug.svelte
new file mode 100644
index 0000000..68a9973
--- /dev/null
+++ b/Pulsar/WebApp/src/lib/Debug.svelte
@@ -0,0 +1,69 @@
+
+
+
Debug
+
+{#if $query.isLoading}
+ Loading...
+{:else if $query.error}
+ An error has occurred: {$query.error}
+{:else}
+
+ {#each $query.data as row}
+ {#if row.event == 'FSSDiscoveryScan'}
+
+ {/if}
+ {/each}
+{/if}
+
+
+
diff --git a/Pulsar/WebApp/src/lib/MissionStack.svelte b/Pulsar/WebApp/src/lib/MissionStack.svelte
new file mode 100644
index 0000000..1918463
--- /dev/null
+++ b/Pulsar/WebApp/src/lib/MissionStack.svelte
@@ -0,0 +1,68 @@
+
+
+Mission Stack
+
+{#if $query.isLoading}
+ Loading...
+{:else if $query.error}
+ An error has occurred: {$query.error}
+{:else}
+ {#each $query.data as row}
+ {#if row.event == "FSSDiscoveryScan"}
+
+
+
+ {/if}
+ {/each}
+{/if}
+
+
diff --git a/Pulsar/WebApp/src/lib/Ship.svelte b/Pulsar/WebApp/src/lib/Ship.svelte
new file mode 100644
index 0000000..280055f
--- /dev/null
+++ b/Pulsar/WebApp/src/lib/Ship.svelte
@@ -0,0 +1,38 @@
+
+
+Ship
+
+{#if $query.isLoading}
+ Loading...
+{:else if $query.error}
+ An error has occurred: {$query.error}
+{:else}
+ {#each $query.data.modules as row}
+
+
{row.slot}
+
{row.power}
+
{row.priority}
+
+ {/each}
+{/if}
+
+
diff --git a/Pulsar/WebApp/src/lib/Status.svelte b/Pulsar/WebApp/src/lib/Status.svelte
new file mode 100644
index 0000000..a2e22ba
--- /dev/null
+++ b/Pulsar/WebApp/src/lib/Status.svelte
@@ -0,0 +1,90 @@
+
+
+Status
+
+
+
+
+
+ {#if status}
+ {status.event}
+ {status.pips.join(',')}
+ {status.destination.name}
+ {status.guiFocus}
+ {status.cargo}
+ {:else}
+ No data :(
+ {/if}
+
+
+
diff --git a/Pulsar/WebApp/src/routes/+layout.svelte b/Pulsar/WebApp/src/routes/+layout.svelte
index 616b03b..20882bc 100644
--- a/Pulsar/WebApp/src/routes/+layout.svelte
+++ b/Pulsar/WebApp/src/routes/+layout.svelte
@@ -1,32 +1,104 @@
-
+
-
+
+
+
+
+
+
+
\ No newline at end of file
+
+ :global(h1) {
+ margin: 0;
+ }
+
+ header {
+ margin-top: 10px;
+ margin-bottom: 20px;
+ }
+
+ nav {
+ border-bottom: 3px solid #d66325;
+ border-top: 3px solid #d66325;
+ max-width: 1600px;
+ margin: 0 auto;
+ }
+
+ ul {
+ display: flex;
+ list-style-type: none;
+ margin: 0px;
+ padding: 0px;
+ gap: 10px;
+ }
+
+ li {
+ margin-top: 5px;
+ margin-bottom: 5px;
+ width: 200px;
+ padding-left: 10px;
+ padding-right: 10px;
+ padding-top: 4px;
+ padding-bottom: 4px;
+ background-color: #3c1e05;
+ font-weight: bold;
+ font-size: 1.125rem;
+ text-align: center;
+ }
+
+ li:hover {
+ background-color: #ef7d15;
+ }
+
+ li:hover a {
+ color: var(--link-color-hover);
+ }
+
+ a {
+ display: block;
+ width: 100%;
+ color: var(--link-color);
+ text-decoration: none;
+ }
+
+ main {
+ max-width: 1600px;
+ margin: 0 auto;
+ }
+
diff --git a/Pulsar/WebApp/src/routes/+page.svelte b/Pulsar/WebApp/src/routes/+page.svelte
index 63c6147..574ff08 100644
--- a/Pulsar/WebApp/src/routes/+page.svelte
+++ b/Pulsar/WebApp/src/routes/+page.svelte
@@ -1,56 +1,44 @@
-Welcome to Pulsar
+
-
+
diff --git a/Pulsar/WebApp/src/routes/botany/+page.svelte b/Pulsar/WebApp/src/routes/botany/+page.svelte
deleted file mode 100644
index e69de29..0000000
diff --git a/Pulsar/WebApp/src/routes/explorer/+page.svelte b/Pulsar/WebApp/src/routes/explorer/+page.svelte
deleted file mode 100644
index e69de29..0000000
diff --git a/Pulsar/WebApp/src/routes/options/+page.svelte b/Pulsar/WebApp/src/routes/options/+page.svelte
deleted file mode 100644
index e69de29..0000000
diff --git a/Pulsar/WebApp/src/routes/ship/+page.svelte b/Pulsar/WebApp/src/routes/ship/+page.svelte
deleted file mode 100644
index e69de29..0000000