Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Placeholders for input screens. Changed CaseSummary to HeatLoadAnalysis to reflect UI change. #128

Merged
merged 1 commit into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
)
}
Loading