177 lines
3.6 KiB
Plaintext
177 lines
3.6 KiB
Plaintext
def get_structure():
|
|
return [
|
|
{
|
|
"label": "Home",
|
|
"target": "Pages/Dashboard/Home",
|
|
"icon": {"path": "material/home"},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "Spaces",
|
|
"target": "Pages/Dashboard/Spaces",
|
|
"icon": {"path": "material/domain"},
|
|
"items": [
|
|
{
|
|
"label": "Fisrt Floor",
|
|
"target": "",
|
|
"icon": {"path": ".."},
|
|
"items": [
|
|
{
|
|
"label": "DM11",
|
|
"target": "Pages/Spaces/Floor_01/DM11",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "DM12",
|
|
"target": "Pages/Spaces/Floor_01/DM12",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "DM13",
|
|
"target": "Pages/Spaces/Floor_01/DM13",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "DM14",
|
|
"target": "Pages/Spaces/Floor_01/DM14",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
}]
|
|
},
|
|
{
|
|
"label": "Second Floor",
|
|
"target": "",
|
|
"icon": {"path": ".."},
|
|
"items": [
|
|
{
|
|
"label": "DM21",
|
|
"target": "Pages/Spaces/Floor_02/DM21",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "DM22",
|
|
"target": "Pages/Spaces/Floor_02/DM22",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "DM23",
|
|
"target": "Pages/Spaces/Floor_02/DM23",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "DM24",
|
|
"target": "Pages/Spaces/Floor_02/DM24",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
}]
|
|
},
|
|
{
|
|
"label": "Third Floor",
|
|
"target": "",
|
|
"icon": {"path": ".."},
|
|
"items": [
|
|
{
|
|
"label": "DM31",
|
|
"target": "Pages/Spaces/Floor_03/DM31",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "DM32",
|
|
"target": "Pages/Spaces/Floor_03/DM32",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "DM33",
|
|
"target": "Pages/Spaces/Floor_03/DM33",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "DM34",
|
|
"target": "Pages/Spaces/Floor_03/DM34",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
}]
|
|
}]
|
|
},
|
|
{
|
|
"label": "Equipment",
|
|
"target": "Pages/Dashboard/Equipment",
|
|
"icon": {"path": "material/settings_input_component"},
|
|
"items": [
|
|
{
|
|
"label": "CDU",
|
|
"target": "Pages/Systems/CDU",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "RPP",
|
|
"target": "Pages/Systems/RPP",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
}]
|
|
},
|
|
{
|
|
"label": "Analysis",
|
|
"target": "",
|
|
"icon": {"path": "material/analytics"},
|
|
"items": [
|
|
{
|
|
"label": "Trend Builder",
|
|
"target": "Pages/Analysis/Trend_Builder",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
}]
|
|
},
|
|
{
|
|
"label": "Alarms",
|
|
"target": "",
|
|
"icon": {"path": "material/notifications"},
|
|
"items": [
|
|
{
|
|
"label": "Active",
|
|
"target": "Pages/Alarms/Active",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "History",
|
|
"target": "Pages/Alarms/History",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
}]
|
|
},
|
|
{
|
|
"label": "Diagnostics",
|
|
"target": "",
|
|
"icon": {"path": "material/build"},
|
|
"items": [
|
|
{
|
|
"label": "Gateway",
|
|
"target": "",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "Connections",
|
|
"target": "",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
},
|
|
{
|
|
"label": "Panels",
|
|
"target": "",
|
|
"icon": {"path": ".."},
|
|
"items": []
|
|
}]
|
|
}
|
|
] |