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/pages/entity.page.dart

53 lines
1.5 KiB
Dart
Raw Normal View History

2019-08-24 21:22:32 +03:00
part of '../main.dart';
2018-09-29 16:19:01 +03:00
class EntityViewPage extends StatefulWidget {
2019-09-01 00:12:16 +03:00
EntityViewPage({Key key, @required this.entityId}) : super(key: key);
2018-09-29 16:19:01 +03:00
2018-11-18 13:19:00 +02:00
final String entityId;
2018-09-29 16:19:01 +03:00
@override
_EntityViewPageState createState() => new _EntityViewPageState();
}
class _EntityViewPageState extends State<EntityViewPage> {
2018-11-18 13:19:00 +02:00
StreamSubscription _refreshDataSubscription;
2018-09-29 17:59:38 +03:00
StreamSubscription _stateSubscription;
2019-09-14 18:32:44 +03:00
Entity entity;
2018-09-29 16:19:01 +03:00
@override
void initState() {
super.initState();
2018-09-29 17:59:38 +03:00
_stateSubscription = eventBus.on<StateChangedEvent>().listen((event) {
2018-11-18 13:19:00 +02:00
if (event.entityId == widget.entityId) {
entity = HomeAssistant().entities.get(widget.entityId);
Logger.d("[Entity page] State change event handled: ${event.entityId}");
2018-09-30 01:07:02 +03:00
setState(() {});
}
2018-09-29 17:59:38 +03:00
});
2018-11-18 13:19:00 +02:00
_refreshDataSubscription = eventBus.on<RefreshDataFinishedEvent>().listen((event) {
2019-09-30 20:58:04 +03:00
entity = HomeAssistant().entities.get(widget.entityId);
2018-11-18 13:19:00 +02:00
setState(() {});
});
2019-09-14 18:32:44 +03:00
entity = HomeAssistant().entities.get(widget.entityId);
2018-09-29 16:19:01 +03:00
}
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
leading: IconButton(icon: Icon(Icons.arrow_back), onPressed: (){
Navigator.pop(context);
}),
2019-09-14 18:32:44 +03:00
title: new Text("${entity.displayName}"),
2018-09-29 16:19:01 +03:00
),
2020-04-13 21:15:14 +03:00
body: EntityPageLayout(entity: entity),
2018-09-29 16:19:01 +03:00
);
}
2018-09-29 17:59:38 +03:00
@override
void dispose(){
if (_stateSubscription != null) _stateSubscription.cancel();
2018-11-18 13:19:00 +02:00
if (_refreshDataSubscription != null) _refreshDataSubscription.cancel();
2018-09-29 17:59:38 +03:00
super.dispose();
}
2018-09-29 16:19:01 +03:00
}