This repository has been archived on 2023-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
ha_client/lib/ui.dart

71 lines
1.7 KiB
Dart
Raw Normal View History

2019-09-07 18:23:04 +03:00
part of 'main.dart';
2018-10-27 14:27:41 +03:00
class HomeAssistantUI {
List<HAView> views;
2018-11-04 21:02:12 +02:00
String title;
2018-10-27 14:27:41 +03:00
2019-03-21 14:08:07 +02:00
bool get isEmpty => views == null || views.isEmpty;
2020-04-03 00:16:34 +03:00
HomeAssistantUI({rawLovelaceConfig}) {
if (rawLovelaceConfig == null) {
rawLovelaceConfig = _generateLovelaceConfig();
}
2018-10-27 14:27:41 +03:00
views = [];
2020-03-22 01:11:00 +02:00
Logger.d("--Title: ${rawLovelaceConfig["title"]}");
title = rawLovelaceConfig["title"];
int viewCounter = 0;
Logger.d("--Views count: ${rawLovelaceConfig['views'].length}");
rawLovelaceConfig["views"].forEach((rawView){
Logger.d("----view id: ${rawView['id']}");
HAView view = HAView(
count: viewCounter,
rawData: rawView
);
views.add(
view
);
viewCounter += 1;
});
2018-10-27 14:27:41 +03:00
}
2020-04-03 00:16:34 +03:00
Map _generateLovelaceConfig() {
Map result = {};
result['title'] = 'Home';
result['views'] = [
{
'icon': 'mdi:home',
'badges': HomeAssistant().entities.getByDomains(
includeDomains: ['sensor', 'binary_sensor', 'device_tracker', 'person', 'sun']
).map(
(en) => en.entityId
).toList(),
'cards': [{
'type': 'entities',
'entities': HomeAssistant().entities.getByDomains(
excludeDomains: ['sensor','binary_sensor', 'device_tracker', 'person', 'sun']
).map(
(en) => en.entityId
).toList()
}]
}
2020-04-03 00:16:34 +03:00
];
return result;
}
Widget build(BuildContext context, TabController tabController) {
2018-10-27 14:27:41 +03:00
return TabBarView(
controller: tabController,
2018-11-16 14:30:43 +02:00
children: _buildViews(context)
2018-10-27 14:27:41 +03:00
);
}
List<Widget> _buildViews(BuildContext context) {
2020-04-21 12:01:21 +03:00
return views.map((view) => view.build(context)).toList();
2018-10-27 14:27:41 +03:00
}
2019-03-21 14:08:07 +02:00
void clear() {
views.clear();
}
2018-10-27 14:27:41 +03:00
}