Start working on the Stats Viewer application
This commit is contained in:
parent
cb3bc7c86c
commit
91863d85a8
18 changed files with 422 additions and 1 deletions
|
|
@ -9,5 +9,11 @@
|
|||
},
|
||||
"esmodules": [
|
||||
"./module.mjs"
|
||||
],
|
||||
"styles": [
|
||||
{
|
||||
"src": "styles/main.css",
|
||||
"layer": "modules.stats-tracker"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
12
public/styles/Apps/StatsViewer.css
Normal file
12
public/styles/Apps/StatsViewer.css
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
.stat-tracker.StatsViewer {
|
||||
|
||||
.window-content {
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
[data-application-part="tableSelect"] {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 1rem;
|
||||
}
|
||||
}
|
||||
3
public/styles/main.css
Normal file
3
public/styles/main.css
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
@layer resets, elements, components, apps, exceptions;
|
||||
|
||||
@import url("./Apps/StatsViewer.css") layer(apps);
|
||||
3
public/templates/Apps/StatsViewer/dataFilters.hbs
Normal file
3
public/templates/Apps/StatsViewer/dataFilters.hbs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
Data Filters
|
||||
</div>
|
||||
3
public/templates/Apps/StatsViewer/dataOverview.hbs
Normal file
3
public/templates/Apps/StatsViewer/dataOverview.hbs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
Table Overview
|
||||
</div>
|
||||
3
public/templates/Apps/StatsViewer/graph.hbs
Normal file
3
public/templates/Apps/StatsViewer/graph.hbs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
Graph Canvas
|
||||
</div>
|
||||
14
public/templates/Apps/StatsViewer/tableSelect.hbs
Normal file
14
public/templates/Apps/StatsViewer/tableSelect.hbs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<div>
|
||||
<select
|
||||
data-bind="_selectedTable"
|
||||
>
|
||||
{{ st-options table tables }}
|
||||
</select>
|
||||
{{#if subtables}}
|
||||
<select
|
||||
data-bind="_selectedSubtable"
|
||||
>
|
||||
{{ st-options subtable subtables }}
|
||||
</select>
|
||||
{{/if}}
|
||||
</div>
|
||||
3
public/templates/Apps/TestApp/main.hbs
Normal file
3
public/templates/Apps/TestApp/main.hbs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
<canvas></canvas>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue