Added progress view and unified terminology around urgency vs time

This commit is contained in:
2026-02-17 18:06:34 -06:00
parent 09240e8f89
commit 1a24165975
4 changed files with 54 additions and 4 deletions
+3
View File
@@ -12,6 +12,7 @@ const MatrixView = lazy(() => import('./views/MatrixView').then(m => ({ default:
const SettingsView = lazy(() => import('./views/SettingsView').then(m => ({ default: m.SettingsView })));
const SnowballView = lazy(() => import('./views/SnowballView').then(m => ({ default: m.SnowballView })));
const DigInView = lazy(() => import('./views/DigInView').then(m => ({ default: m.DigInView })));
const ProgressView = lazy(() => import('./views/ProgressView').then(m => ({ default: m.ProgressView })));
const App: Component = () => {
// Basic routing state
@@ -38,6 +39,7 @@ const App: Component = () => {
import('./views/SettingsView');
import('./views/SnowballView');
import('./views/DigInView');
import('./views/ProgressView');
// Remove splash screen after high priority work is done
const splash = document.getElementById('splash');
@@ -58,6 +60,7 @@ const App: Component = () => {
<Show when={currentView() === "matrix"}><MatrixView /></Show>
<Show when={currentView() === "snowball"}><SnowballView /></Show>
<Show when={currentView() === "dig_in"}><DigInView /></Show>
<Show when={currentView() === "progress"}><ProgressView /></Show>
<Show when={currentView() === "settings"}><SettingsView /></Show>
</Suspense>
</Layout>