2018-09-29 16:19:01 +03:00
|
|
|
part of 'main.dart';
|
|
|
|
|
|
|
|
class EntityViewPage extends StatefulWidget {
|
2018-11-18 13:19:00 +02:00
|
|
|
EntityViewPage({Key key, @required this.entityId, @required this.homeAssistant }) : super(key: key);
|
2018-09-29 16:19:01 +03:00
|
|
|
|
2018-11-18 13:19:00 +02:00
|
|
|
final String entityId;
|
2018-10-07 23:06:06 +03:00
|
|
|
final HomeAssistant homeAssistant;
|
2018-09-29 16:19:01 +03:00
|
|
|
|
|
|
|
@override
|
|
|
|
_EntityViewPageState createState() => new _EntityViewPageState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _EntityViewPageState extends State<EntityViewPage> {
|
|
|
|
String _title;
|
2018-11-18 13:19:00 +02:00
|
|
|
StreamSubscription _refreshDataSubscription;
|
2018-09-29 17:59:38 +03:00
|
|
|
StreamSubscription _stateSubscription;
|
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
|
|
|
TheLogger.debug("State change event handled by entity page: ${event.entityId}");
|
|
|
|
if (event.entityId == widget.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) {
|
|
|
|
setState(() {});
|
|
|
|
});
|
2018-09-29 16:19:01 +03:00
|
|
|
_prepareData();
|
|
|
|
}
|
|
|
|
|
2018-10-07 23:06:06 +03:00
|
|
|
void _prepareData() async {
|
2018-11-18 13:19:00 +02:00
|
|
|
_title = widget.homeAssistant.entities.get(widget.entityId).displayName;
|
2018-09-29 16:19:01 +03:00
|
|
|
}
|
|
|
|
|
2018-10-07 23:06:06 +03:00
|
|
|
|
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);
|
|
|
|
}),
|
|
|
|
// Here we take the value from the MyHomePage object that was created by
|
|
|
|
// the App.build method, and use it to set our appbar title.
|
|
|
|
title: new Text(_title),
|
|
|
|
),
|
|
|
|
body: Padding(
|
|
|
|
padding: EdgeInsets.all(10.0),
|
2018-10-28 14:56:23 +02:00
|
|
|
child: HomeAssistantModel(
|
|
|
|
homeAssistant: widget.homeAssistant,
|
2018-11-18 13:19:00 +02:00
|
|
|
child: widget.homeAssistant.entities.get(widget.entityId).buildEntityPageWidget(context)
|
2018-10-28 14:56:23 +02:00
|
|
|
)
|
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
|
|
|
}
|