Skip to content

Commit

Permalink
Created placeholders for input screens. Changed CaseSummary to HeatLo…
Browse files Browse the repository at this point in the history
…adAnalysis to reflect UI change. (#128)
  • Loading branch information
jkoren authored Jan 3, 2024
1 parent be3a5e3 commit 1c84c1c
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 21 deletions.
18 changes: 0 additions & 18 deletions heat-stack/app/routes/_heat+/CaseSummary.tsx

This file was deleted.

8 changes: 8 additions & 0 deletions heat-stack/app/routes/_heat+/Inputs1.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { HomeInformation } from '../../components/ui/heat/CaseSummaryComponents/HomeInformation.tsx'
export default function Inputs1() {
return (
<div>
<HomeInformation />
</div>
)
}
12 changes: 12 additions & 0 deletions heat-stack/app/routes/_heat+/heatloadanalysis.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Graphs } from '../../components/ui/heat/CaseSummaryComponents/Graphs.tsx'

export default function HeatLoadAnalysis() {
return (
<main className="main-container">
<div>
<h1 className="page-title">Heat Load Analysis</h1>
<Graphs />
</div>
</main>
)
}
7 changes: 4 additions & 3 deletions heat-stack/app/routes/_heat+/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
</h1>

<h1>Some paths with placeholder pages are:</h1>
<br />
<ul>
<li>/casesummary - see an example case summary</li>
Some paths with placeholder pages are:
<li>/heatloadanalysis - see an example heat load analysis</li>
<li>/cases - see a list of cases</li>
<li>input screens: /inputs1, /inputs2, /inputs3</li>
<li>/epicstack - information about the Epic Stack</li>
</ul>
</div>
Expand Down
8 changes: 8 additions & 0 deletions heat-stack/app/routes/_heat+/inputs2.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { CurrentHeatingSystem } from '../../components/ui/heat/CaseSummaryComponents/CurrentHeatingSystem.tsx'
export default function Inputs2() {
return (
<div>
<CurrentHeatingSystem />
</div>
)
}
8 changes: 8 additions & 0 deletions heat-stack/app/routes/_heat+/inputs3.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { EnergyUseHistory } from '../../components/ui/heat/CaseSummaryComponents/EnergyUseHistory.tsx'
export default function Inputs3() {
return (
<div>
<EnergyUseHistory />
</div>
)
}

0 comments on commit 1c84c1c

Please sign in to comment.