Skip to content

Commit

Permalink
Update Default Dashboard Layout
Browse files Browse the repository at this point in the history
  • Loading branch information
donavanbecker committed Oct 29, 2024
1 parent 6a52a64 commit 92b59aa
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 46 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Plugin developers:
- switch from a top menu to a sidebar menu
- show pairing status for bridges around the ui
- refactor status and child bridge widgets
- update default dashboard layout

### Other Changes

Expand Down
108 changes: 62 additions & 46 deletions ui/src/app/modules/status/default-dashboard-layout.json
Original file line number Diff line number Diff line change
@@ -1,84 +1,100 @@
[
{
"component": "HapQrcodeWidgetComponent",
"x": 0,
"y": 0,
"cols": 5,
"rows": 7,
"mobileOrder": 100,
"hideOnMobile": false
},
{
"component": "HomebridgeStatusWidgetComponent",
"x": 0,
"y": 7,
"cols": 5,
"rows": 7,
"y": 6,
"cols": 4,
"rows": 6,
"mobileOrder": 10,
"hidePort": true,
"hideOnMobile": false
},
{
"component": "HomebridgeLogsWidgetComponent",
"x": 5,
"y": 0,
"cols": 10,
"rows": 8,
"mobileOrder": 1000,
"hideOnMobile": true
},
{
"component": "SystemInfoWidgetComponent",
"x": 15,
"y": 0,
"cols": 5,
"rows": 9,
"mobileOrder": 70,
"hideOnMobile": false
"hideOnMobile": false,
"draggable": true
},
{
"component": "ChildBridgeWidgetComponent",
"x": 15,
"y": 9,
"y": 0,
"cols": 5,
"rows": 5,
"rows": 12,
"mobileOrder": 35,
"hideOnMobile": false
"hideOnMobile": false,
"draggable": true
},
{
"component": "CpuWidgetComponent",
"x": 5,
"y": 8,
"x": 4,
"y": 0,
"cols": 5,
"rows": 3,
"mobileOrder": 40,
"hideOnMobile": false
"hideOnMobile": false,
"draggable": true,
"refreshInterval": 10,
"historyItems": 60
},
{
"component": "MemoryWidgetComponent",
"x": 5,
"y": 11,
"x": 4,
"y": 3,
"cols": 5,
"rows": 3,
"mobileOrder": 50,
"hideOnMobile": false
"hideOnMobile": false,
"draggable": true,
"refreshInterval": 10,
"historyItems": 60
},
{
"component": "NetworkWidgetComponent",
"x": 10,
"y": 11,
"x": 4,
"y": 6,
"cols": 5,
"rows": 3,
"mobileOrder": 55,
"hideOnMobile": false
"hideOnMobile": false,
"draggable": true,
"refreshInterval": 10,
"historyItems": 60,
"networkInterface": "en0"
},
{
"component": "UptimeWidgetComponent",
"x": 10,
"y": 8,
"x": 4,
"y": 9,
"cols": 5,
"rows": 3,
"mobileOrder": 60,
"hideOnMobile": false
"hideOnMobile": false,
"draggable": true
},
{
"component": "SystemInfoWidgetComponent",
"x": 9,
"y": 0,
"cols": 6,
"rows": 12,
"mobileOrder": 70,
"hideOnMobile": false,
"draggable": true
},
{
"component": "HapQrcodeWidgetComponent",
"x": 0,
"y": 0,
"cols": 4,
"rows": 6,
"mobileOrder": 100,
"hideOnMobile": false,
"draggable": true
},
{
"component": "HomebridgeLogsWidgetComponent",
"x": 0,
"y": 12,
"cols": 20,
"rows": 7,
"mobileOrder": 1000,
"hideOnMobile": true,
"draggable": true
}
]

0 comments on commit 92b59aa

Please sign in to comment.