From 1c84c1cdb6b36d48fa2ffa1d45616771254f36b8 Mon Sep 17 00:00:00 2001
From: Jeff Korenstein <67333843+jkoren@users.noreply.github.com>
Date: Wed, 3 Jan 2024 02:35:40 -0500
Subject: [PATCH] Created placeholders for input screens. Changed CaseSummary
to HeatLoadAnalysis to reflect UI change. (#128)
---
heat-stack/app/routes/_heat+/CaseSummary.tsx | 18 ------------------
heat-stack/app/routes/_heat+/Inputs1.tsx | 8 ++++++++
.../app/routes/_heat+/heatloadanalysis.tsx | 12 ++++++++++++
heat-stack/app/routes/_heat+/index.tsx | 7 ++++---
heat-stack/app/routes/_heat+/inputs2.tsx | 8 ++++++++
heat-stack/app/routes/_heat+/inputs3.tsx | 8 ++++++++
6 files changed, 40 insertions(+), 21 deletions(-)
delete mode 100644 heat-stack/app/routes/_heat+/CaseSummary.tsx
create mode 100644 heat-stack/app/routes/_heat+/Inputs1.tsx
create mode 100644 heat-stack/app/routes/_heat+/heatloadanalysis.tsx
create mode 100644 heat-stack/app/routes/_heat+/inputs2.tsx
create mode 100644 heat-stack/app/routes/_heat+/inputs3.tsx
diff --git a/heat-stack/app/routes/_heat+/CaseSummary.tsx b/heat-stack/app/routes/_heat+/CaseSummary.tsx
deleted file mode 100644
index 196dedac..00000000
--- a/heat-stack/app/routes/_heat+/CaseSummary.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { CurrentHeatingSystem } from '../../components/ui/heat/CaseSummaryComponents/CurrentHeatingSystem.tsx'
-import { EnergyUseHistory } from '../../components/ui/heat/CaseSummaryComponents/EnergyUseHistory.tsx'
-import { Graphs } from '../../components/ui/heat/CaseSummaryComponents/Graphs.tsx'
-import { HomeInformation } from '../../components/ui/heat/CaseSummaryComponents/HomeInformation.tsx'
-
-export default function CaseSummary() {
- return (
-
-
-
Case Summary
-
-
-
-
-
-
- )
-}
diff --git a/heat-stack/app/routes/_heat+/Inputs1.tsx b/heat-stack/app/routes/_heat+/Inputs1.tsx
new file mode 100644
index 00000000..ee5c26c7
--- /dev/null
+++ b/heat-stack/app/routes/_heat+/Inputs1.tsx
@@ -0,0 +1,8 @@
+import { HomeInformation } from '../../components/ui/heat/CaseSummaryComponents/HomeInformation.tsx'
+export default function Inputs1() {
+ return (
+
+
+
+ )
+}
diff --git a/heat-stack/app/routes/_heat+/heatloadanalysis.tsx b/heat-stack/app/routes/_heat+/heatloadanalysis.tsx
new file mode 100644
index 00000000..22f44803
--- /dev/null
+++ b/heat-stack/app/routes/_heat+/heatloadanalysis.tsx
@@ -0,0 +1,12 @@
+import { Graphs } from '../../components/ui/heat/CaseSummaryComponents/Graphs.tsx'
+
+export default function HeatLoadAnalysis() {
+ return (
+
+
+
Heat Load Analysis
+
+
+
+ )
+}
diff --git a/heat-stack/app/routes/_heat+/index.tsx b/heat-stack/app/routes/_heat+/index.tsx
index 2138d151..76ef8fef 100644
--- a/heat-stack/app/routes/_heat+/index.tsx
+++ b/heat-stack/app/routes/_heat+/index.tsx
@@ -5,11 +5,12 @@ export default function Home() {
This is the Heat Home page - the first page a user will see when
starting the app
-
- Some paths with placeholder pages are:
+
- - /casesummary - see an example case summary
+ Some paths with placeholder pages are:
+ - /heatloadanalysis - see an example heat load analysis
- /cases - see a list of cases
+ - input screens: /inputs1, /inputs2, /inputs3
- /epicstack - information about the Epic Stack
diff --git a/heat-stack/app/routes/_heat+/inputs2.tsx b/heat-stack/app/routes/_heat+/inputs2.tsx
new file mode 100644
index 00000000..735b41a9
--- /dev/null
+++ b/heat-stack/app/routes/_heat+/inputs2.tsx
@@ -0,0 +1,8 @@
+import { CurrentHeatingSystem } from '../../components/ui/heat/CaseSummaryComponents/CurrentHeatingSystem.tsx'
+export default function Inputs2() {
+ return (
+
+
+
+ )
+}
diff --git a/heat-stack/app/routes/_heat+/inputs3.tsx b/heat-stack/app/routes/_heat+/inputs3.tsx
new file mode 100644
index 00000000..fa1f2375
--- /dev/null
+++ b/heat-stack/app/routes/_heat+/inputs3.tsx
@@ -0,0 +1,8 @@
+import { EnergyUseHistory } from '../../components/ui/heat/CaseSummaryComponents/EnergyUseHistory.tsx'
+export default function Inputs3() {
+ return (
+
+
+
+ )
+}