2018-09-10 00:34:52 +03:00
|
|
|
import 'dart:convert';
|
2018-09-15 01:46:15 +03:00
|
|
|
import 'dart:async';
|
2018-09-15 12:56:42 +03:00
|
|
|
import 'package:flutter/rendering.dart';
|
2018-09-10 00:34:52 +03:00
|
|
|
import 'package:flutter/material.dart';
|
2018-09-10 03:06:35 +03:00
|
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
2018-09-12 00:32:04 +03:00
|
|
|
import 'package:web_socket_channel/io.dart';
|
2018-09-15 01:46:15 +03:00
|
|
|
import 'package:progress_indicators/progress_indicators.dart';
|
2018-09-16 18:02:12 +03:00
|
|
|
import 'package:event_bus/event_bus.dart';
|
2018-09-16 19:24:26 +03:00
|
|
|
import 'package:flutter/widgets.dart';
|
2018-09-23 02:04:44 +03:00
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
2018-09-24 22:12:56 +03:00
|
|
|
import 'package:url_launcher/url_launcher.dart';
|
2018-09-25 22:11:31 +03:00
|
|
|
import 'package:flutter/services.dart';
|
2018-09-29 16:19:01 +03:00
|
|
|
import 'package:date_format/date_format.dart';
|
2018-09-10 03:06:35 +03:00
|
|
|
|
2018-10-01 21:57:54 +03:00
|
|
|
part 'entity_class/entity.class.dart';
|
|
|
|
part 'entity_class/button_entity.class.dart';
|
|
|
|
part 'entity_class/datetime_entity.class.dart';
|
|
|
|
part 'entity_class/select_entity.class.dart';
|
|
|
|
part 'entity_class/slider_entity.class.dart';
|
|
|
|
part 'entity_class/switch_entity.class.dart';
|
|
|
|
part 'entity_class/text_entity.class.dart';
|
2018-10-07 15:03:51 +03:00
|
|
|
part 'entity_class/sun_entity.class.dart';
|
2018-10-01 21:57:54 +03:00
|
|
|
|
2018-09-25 22:47:06 +03:00
|
|
|
part 'settings.page.dart';
|
2018-09-27 14:51:57 +03:00
|
|
|
part 'home_assistant.class.dart';
|
2018-09-25 22:47:06 +03:00
|
|
|
part 'log.page.dart';
|
2018-09-29 16:19:01 +03:00
|
|
|
part 'entity.page.dart';
|
2018-09-25 22:47:06 +03:00
|
|
|
part 'utils.class.dart';
|
|
|
|
part 'mdi.class.dart';
|
2018-09-26 22:16:50 +03:00
|
|
|
part 'entity_collection.class.dart';
|
2018-10-07 02:17:14 +03:00
|
|
|
part 'view_builder.class.dart';
|
2018-09-28 10:15:25 +03:00
|
|
|
part 'view_class.dart';
|
|
|
|
part 'card_class.dart';
|
2018-09-10 00:34:52 +03:00
|
|
|
|
2018-09-16 18:02:12 +03:00
|
|
|
EventBus eventBus = new EventBus();
|
2018-09-18 23:21:05 +03:00
|
|
|
const String appName = "HA Client";
|
2018-10-07 15:08:50 +03:00
|
|
|
const appVersion = "0.2.5";
|
2018-09-16 18:02:12 +03:00
|
|
|
|
2018-09-23 02:04:44 +03:00
|
|
|
String homeAssistantWebHost;
|
|
|
|
|
2018-09-24 20:07:22 +03:00
|
|
|
void main() {
|
|
|
|
FlutterError.onError = (errorDetails) {
|
|
|
|
TheLogger.log("Error", "${errorDetails.exception}");
|
|
|
|
if (TheLogger.isInDebugMode) {
|
|
|
|
FlutterError.dumpErrorToConsole(errorDetails);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
runZoned(() {
|
2018-09-25 22:47:06 +03:00
|
|
|
runApp(new HAClientApp());
|
2018-09-24 20:07:22 +03:00
|
|
|
}, onError: (error, stack) {
|
|
|
|
TheLogger.log("Global error", "$error");
|
2018-09-27 14:51:57 +03:00
|
|
|
if (TheLogger.isInDebugMode) {
|
|
|
|
debugPrint("$stack");
|
|
|
|
}
|
2018-09-24 20:07:22 +03:00
|
|
|
});
|
|
|
|
}
|
2018-09-10 00:34:52 +03:00
|
|
|
|
2018-09-25 22:47:06 +03:00
|
|
|
class HAClientApp extends StatelessWidget {
|
2018-09-10 00:34:52 +03:00
|
|
|
// This widget is the root of your application.
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return new MaterialApp(
|
2018-09-17 01:03:34 +03:00
|
|
|
title: appName,
|
2018-09-10 00:34:52 +03:00
|
|
|
theme: new ThemeData(
|
|
|
|
primarySwatch: Colors.blue,
|
|
|
|
),
|
2018-09-10 03:06:35 +03:00
|
|
|
initialRoute: "/",
|
|
|
|
routes: {
|
2018-10-02 00:41:40 +03:00
|
|
|
"/": (context) => MainPage(title: 'HA Client'),
|
2018-09-24 00:05:57 +03:00
|
|
|
"/connection-settings": (context) => ConnectionSettingsPage(title: "Connection Settings"),
|
|
|
|
"/log-view": (context) => LogViewPage(title: "Log")
|
2018-09-10 03:06:35 +03:00
|
|
|
},
|
2018-09-10 00:34:52 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 03:06:35 +03:00
|
|
|
class MainPage extends StatefulWidget {
|
|
|
|
MainPage({Key key, this.title}) : super(key: key);
|
2018-09-10 00:34:52 +03:00
|
|
|
|
|
|
|
final String title;
|
|
|
|
|
|
|
|
@override
|
2018-09-10 03:06:35 +03:00
|
|
|
_MainPageState createState() => new _MainPageState();
|
2018-09-10 00:34:52 +03:00
|
|
|
}
|
|
|
|
|
2018-09-16 19:24:26 +03:00
|
|
|
class _MainPageState extends State<MainPage> with WidgetsBindingObserver {
|
2018-09-27 14:51:57 +03:00
|
|
|
HomeAssistant _homeAssistant;
|
|
|
|
EntityCollection _entities;
|
|
|
|
//Map _instanceConfig;
|
2018-10-03 14:36:23 +03:00
|
|
|
String _apiEndpoint;
|
|
|
|
String _apiPassword;
|
|
|
|
String _authType;
|
2018-09-16 14:58:21 +03:00
|
|
|
int _uiViewsCount = 0;
|
2018-09-17 00:28:19 +03:00
|
|
|
String _instanceHost;
|
2018-09-20 23:21:03 +03:00
|
|
|
StreamSubscription _stateSubscription;
|
2018-09-21 00:39:49 +03:00
|
|
|
StreamSubscription _settingsSubscription;
|
2018-09-29 13:49:25 +03:00
|
|
|
StreamSubscription _serviceCallSubscription;
|
2018-09-29 16:19:01 +03:00
|
|
|
StreamSubscription _showEntityPageSubscription;
|
2018-10-07 02:17:14 +03:00
|
|
|
StreamSubscription _refreshDataSubscription;
|
2018-10-07 10:28:28 +03:00
|
|
|
StreamSubscription _showErrorSubscription;
|
|
|
|
int _isLoading = 1;
|
2018-10-03 15:25:01 +03:00
|
|
|
bool _settingsLoaded = false;
|
2018-09-29 13:49:25 +03:00
|
|
|
|
2018-09-10 03:06:35 +03:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2018-10-03 15:25:01 +03:00
|
|
|
_settingsLoaded = false;
|
2018-09-16 19:24:26 +03:00
|
|
|
WidgetsBinding.instance.addObserver(this);
|
2018-10-03 14:36:23 +03:00
|
|
|
|
|
|
|
_homeAssistant = HomeAssistant();
|
|
|
|
|
2018-09-21 00:39:49 +03:00
|
|
|
_settingsSubscription = eventBus.on<SettingsChangedEvent>().listen((event) {
|
2018-09-24 00:05:57 +03:00
|
|
|
TheLogger.log("Debug","Settings change event: reconnect=${event.reconnect}");
|
2018-10-03 14:36:23 +03:00
|
|
|
if (event.reconnect) {
|
2018-10-07 18:21:55 +03:00
|
|
|
_homeAssistant.disconnect().then((_){
|
|
|
|
_initialLoad();
|
|
|
|
});
|
2018-10-03 14:36:23 +03:00
|
|
|
}
|
|
|
|
});
|
2018-10-07 17:07:06 +03:00
|
|
|
_initialLoad();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _initialLoad() {
|
2018-10-06 16:01:38 +03:00
|
|
|
_loadConnectionSettings().then((_){
|
2018-10-07 17:07:06 +03:00
|
|
|
_subscribe();
|
|
|
|
_refreshData();
|
2018-10-03 14:36:23 +03:00
|
|
|
}, onError: (_) {
|
2018-09-20 23:21:03 +03:00
|
|
|
setState(() {
|
2018-10-07 10:28:28 +03:00
|
|
|
_isLoading = 2;
|
2018-09-20 23:21:03 +03:00
|
|
|
});
|
2018-10-07 10:28:28 +03:00
|
|
|
_showErrorSnackBar(message: _, errorCode: 5);
|
2018-09-20 23:21:03 +03:00
|
|
|
});
|
2018-09-10 03:06:35 +03:00
|
|
|
}
|
2018-09-10 00:34:52 +03:00
|
|
|
|
2018-09-16 19:24:26 +03:00
|
|
|
@override
|
|
|
|
void didChangeAppLifecycleState(AppLifecycleState state) {
|
2018-09-24 00:05:57 +03:00
|
|
|
TheLogger.log("Debug","$state");
|
2018-10-03 15:25:01 +03:00
|
|
|
if (state == AppLifecycleState.resumed && _settingsLoaded) {
|
2018-09-16 19:24:26 +03:00
|
|
|
_refreshData();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-06 16:01:38 +03:00
|
|
|
_loadConnectionSettings() async {
|
2018-09-10 03:06:35 +03:00
|
|
|
SharedPreferences prefs = await SharedPreferences.getInstance();
|
2018-09-17 00:28:19 +03:00
|
|
|
String domain = prefs.getString('hassio-domain');
|
|
|
|
String port = prefs.getString('hassio-port');
|
2018-09-17 22:20:36 +03:00
|
|
|
_instanceHost = "$domain:$port";
|
2018-10-03 14:36:23 +03:00
|
|
|
_apiEndpoint = "${prefs.getString('hassio-protocol')}://$domain:$port/api/websocket";
|
2018-09-23 02:04:44 +03:00
|
|
|
homeAssistantWebHost = "${prefs.getString('hassio-res-protocol')}://$domain:$port";
|
2018-10-03 14:36:23 +03:00
|
|
|
_apiPassword = prefs.getString('hassio-password');
|
|
|
|
_authType = prefs.getString('hassio-auth-type');
|
|
|
|
if ((domain == null) || (port == null) || (_apiPassword == null) ||
|
|
|
|
(domain.length == 0) || (port.length == 0) || (_apiPassword.length == 0)) {
|
|
|
|
throw("Check connection settings");
|
2018-10-03 15:25:01 +03:00
|
|
|
} else {
|
|
|
|
_settingsLoaded = true;
|
2018-09-20 23:21:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-07 17:07:06 +03:00
|
|
|
_subscribe() {
|
2018-10-03 14:36:23 +03:00
|
|
|
if (_stateSubscription == null) {
|
|
|
|
_stateSubscription = eventBus.on<StateChangedEvent>().listen((event) {
|
|
|
|
setState(() {
|
|
|
|
if (event.localChange) {
|
|
|
|
_entities
|
|
|
|
.get(event.entityId)
|
|
|
|
.state = event.newState;
|
|
|
|
}
|
|
|
|
});
|
2018-09-16 18:02:12 +03:00
|
|
|
});
|
2018-10-03 14:36:23 +03:00
|
|
|
}
|
|
|
|
if (_serviceCallSubscription == null) {
|
|
|
|
_serviceCallSubscription =
|
|
|
|
eventBus.on<ServiceCallEvent>().listen((event) {
|
|
|
|
_callService(event.domain, event.service, event.entityId,
|
|
|
|
event.additionalParams);
|
|
|
|
});
|
|
|
|
}
|
2018-09-29 16:19:01 +03:00
|
|
|
|
2018-10-03 14:36:23 +03:00
|
|
|
if (_showEntityPageSubscription == null) {
|
|
|
|
_showEntityPageSubscription =
|
|
|
|
eventBus.on<ShowEntityPageEvent>().listen((event) {
|
|
|
|
_showEntityPage(event.entity);
|
|
|
|
});
|
|
|
|
}
|
2018-10-07 02:17:14 +03:00
|
|
|
|
|
|
|
if (_refreshDataSubscription == null) {
|
|
|
|
_refreshDataSubscription = eventBus.on<RefreshDataEvent>().listen((event){
|
|
|
|
_refreshData();
|
|
|
|
});
|
|
|
|
}
|
2018-10-07 10:28:28 +03:00
|
|
|
|
|
|
|
if (_showErrorSubscription == null) {
|
|
|
|
_showErrorSubscription = eventBus.on<ShowErrorEvent>().listen((event){
|
|
|
|
_showErrorSnackBar(message: event.text, errorCode: event.errorCode);
|
|
|
|
});
|
|
|
|
}
|
2018-09-12 00:32:04 +03:00
|
|
|
}
|
|
|
|
|
2018-09-15 01:46:15 +03:00
|
|
|
_refreshData() async {
|
2018-10-03 14:36:23 +03:00
|
|
|
_homeAssistant.updateConnectionSettings(_apiEndpoint, _apiPassword, _authType);
|
2018-09-12 00:32:04 +03:00
|
|
|
setState(() {
|
2018-10-07 17:07:06 +03:00
|
|
|
_hideErrorSnackBar();
|
2018-10-07 10:28:28 +03:00
|
|
|
_isLoading = 1;
|
2018-09-12 00:32:04 +03:00
|
|
|
});
|
2018-10-03 14:36:23 +03:00
|
|
|
await _homeAssistant.fetch().then((result) {
|
|
|
|
setState(() {
|
|
|
|
//_instanceConfig = _homeAssistant.instanceConfig;
|
|
|
|
_entities = _homeAssistant.entities;
|
|
|
|
_uiViewsCount = _homeAssistant.viewsCount;
|
2018-10-07 10:28:28 +03:00
|
|
|
_isLoading = 0;
|
2018-09-12 00:32:04 +03:00
|
|
|
});
|
2018-10-03 14:36:23 +03:00
|
|
|
}).catchError((e) {
|
|
|
|
_setErrorState(e);
|
|
|
|
});
|
2018-10-07 02:17:14 +03:00
|
|
|
eventBus.fire(RefreshDataFinishedEvent());
|
2018-09-11 01:09:21 +03:00
|
|
|
}
|
|
|
|
|
2018-09-21 00:01:53 +03:00
|
|
|
_setErrorState(e) {
|
|
|
|
setState(() {
|
2018-10-07 10:28:28 +03:00
|
|
|
_isLoading = 2;
|
2018-09-21 00:01:53 +03:00
|
|
|
});
|
2018-10-07 10:28:28 +03:00
|
|
|
_showErrorSnackBar(
|
|
|
|
message: e != null ? e["errorMessage"] ?? "$e" : "Unknown error",
|
|
|
|
errorCode: e["errorCode"] != null ? e["errorCode"] : 99
|
|
|
|
);
|
2018-09-21 00:01:53 +03:00
|
|
|
}
|
|
|
|
|
2018-09-29 11:52:17 +03:00
|
|
|
void _callService(String domain, String service, String entityId, Map<String, String> additionalParams) {
|
2018-10-02 22:48:47 +03:00
|
|
|
_homeAssistant.callService(domain, service, entityId, additionalParams).catchError((e) => _setErrorState(e));
|
2018-09-21 00:01:53 +03:00
|
|
|
}
|
|
|
|
|
2018-09-29 16:19:01 +03:00
|
|
|
void _showEntityPage(Entity entity) {
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => EntityViewPage(entity: entity),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-10-07 02:17:14 +03:00
|
|
|
List<Tab> buildUIViewTabs() {
|
|
|
|
//TODO move somewhere to ViewBuilder
|
|
|
|
List<Tab> result = [];
|
|
|
|
if (!_entities.isEmpty) {
|
|
|
|
if (!_entities.hasDefaultView) {
|
2018-09-21 23:05:12 +03:00
|
|
|
result.add(
|
2018-10-07 02:17:14 +03:00
|
|
|
Tab(
|
|
|
|
icon:
|
|
|
|
Icon(
|
|
|
|
MaterialDesignIcons.createIconDataFromIconName("mdi:home-assistant"),
|
|
|
|
size: 24.0,
|
|
|
|
)
|
2018-09-21 23:05:12 +03:00
|
|
|
)
|
|
|
|
);
|
2018-09-17 22:20:36 +03:00
|
|
|
}
|
2018-10-07 02:17:14 +03:00
|
|
|
_entities.viewList.forEach((viewId) {
|
2018-09-16 14:58:21 +03:00
|
|
|
result.add(
|
2018-09-17 22:20:36 +03:00
|
|
|
Tab(
|
2018-09-28 13:33:15 +03:00
|
|
|
icon: MaterialDesignIcons.createIconWidgetFromEntityData(_entities.get(viewId), 24.0, null) ??
|
|
|
|
Icon(
|
|
|
|
MaterialDesignIcons.createIconDataFromIconName("mdi:home-assistant"),
|
|
|
|
size: 24.0,
|
|
|
|
)
|
2018-09-17 22:20:36 +03:00
|
|
|
)
|
2018-09-16 14:58:21 +03:00
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return result;
|
2018-09-15 01:46:15 +03:00
|
|
|
}
|
|
|
|
|
2018-09-18 00:12:11 +03:00
|
|
|
Widget _buildAppTitle() {
|
2018-09-15 01:46:15 +03:00
|
|
|
Row titleRow = Row(
|
2018-09-27 14:51:57 +03:00
|
|
|
children: [Text(_homeAssistant != null ? _homeAssistant.locationName : "")],
|
2018-09-15 01:46:15 +03:00
|
|
|
);
|
2018-10-07 10:28:28 +03:00
|
|
|
if (_isLoading == 1) {
|
2018-09-15 01:46:15 +03:00
|
|
|
titleRow.children.add(Padding(
|
|
|
|
child: JumpingDotsProgressIndicator(
|
2018-09-17 00:28:19 +03:00
|
|
|
fontSize: 26.0,
|
2018-09-15 01:46:15 +03:00
|
|
|
color: Colors.white,
|
|
|
|
),
|
2018-09-17 00:28:19 +03:00
|
|
|
padding: const EdgeInsets.fromLTRB(5.0, 0.0, 0.0, 30.0),
|
2018-09-16 00:06:07 +03:00
|
|
|
));
|
2018-10-07 10:28:28 +03:00
|
|
|
} else if (_isLoading == 2) {
|
|
|
|
titleRow.children.add(Padding(
|
|
|
|
child: Icon(
|
|
|
|
Icons.error_outline,
|
|
|
|
size: 20.0,
|
|
|
|
color: Colors.red,
|
|
|
|
),
|
|
|
|
padding: const EdgeInsets.fromLTRB(5.0, 0.0, 0.0, 0.0),
|
|
|
|
));
|
2018-09-15 01:46:15 +03:00
|
|
|
}
|
|
|
|
return titleRow;
|
2018-09-10 00:34:52 +03:00
|
|
|
}
|
|
|
|
|
2018-09-16 14:58:21 +03:00
|
|
|
Drawer _buildAppDrawer() {
|
|
|
|
return new Drawer(
|
|
|
|
child: ListView(
|
|
|
|
children: <Widget>[
|
|
|
|
new UserAccountsDrawerHeader(
|
2018-09-27 14:51:57 +03:00
|
|
|
accountName: Text(_homeAssistant != null ? _homeAssistant.locationName : "Unknown"),
|
2018-09-17 00:28:19 +03:00
|
|
|
accountEmail: Text(_instanceHost ?? "Not configured"),
|
|
|
|
currentAccountPicture: new Image.asset('images/hassio-192x192.png'),
|
2018-09-16 14:58:21 +03:00
|
|
|
),
|
|
|
|
new ListTile(
|
|
|
|
leading: Icon(Icons.settings),
|
2018-09-17 00:28:19 +03:00
|
|
|
title: Text("Connection settings"),
|
2018-09-16 14:58:21 +03:00
|
|
|
onTap: () {
|
2018-09-24 22:23:01 +03:00
|
|
|
Navigator.of(context).pop();
|
|
|
|
Navigator.of(context).pushNamed('/connection-settings');
|
2018-09-16 14:58:21 +03:00
|
|
|
},
|
|
|
|
),
|
2018-10-03 15:55:11 +03:00
|
|
|
Container(
|
|
|
|
height: 16.0,
|
|
|
|
decoration: new BoxDecoration(
|
|
|
|
border: new Border(
|
|
|
|
bottom: BorderSide(
|
|
|
|
width: 1.0,
|
|
|
|
color: Colors.black26,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
)
|
|
|
|
),
|
2018-09-24 00:05:57 +03:00
|
|
|
new ListTile(
|
|
|
|
leading: Icon(Icons.insert_drive_file),
|
|
|
|
title: Text("Log"),
|
|
|
|
onTap: () {
|
2018-09-24 22:23:01 +03:00
|
|
|
Navigator.of(context).pop();
|
|
|
|
Navigator.of(context).pushNamed('/log-view');
|
2018-09-24 00:05:57 +03:00
|
|
|
},
|
|
|
|
),
|
2018-09-24 22:12:56 +03:00
|
|
|
new ListTile(
|
|
|
|
leading: Icon(MaterialDesignIcons.createIconDataFromIconName("mdi:github-circle")),
|
2018-09-29 12:09:01 +03:00
|
|
|
title: Text("Report an issue"),
|
2018-09-24 22:12:56 +03:00
|
|
|
onTap: () {
|
2018-09-24 22:23:01 +03:00
|
|
|
Navigator.of(context).pop();
|
2018-10-02 00:41:40 +03:00
|
|
|
HAUtils.launchURL("https://github.com/estevez-dev/ha_client_pub/issues/new");
|
2018-09-24 22:12:56 +03:00
|
|
|
},
|
|
|
|
),
|
2018-10-03 14:36:23 +03:00
|
|
|
Container(
|
2018-10-03 15:55:11 +03:00
|
|
|
height: 16.0,
|
2018-10-03 14:36:23 +03:00
|
|
|
decoration: new BoxDecoration(
|
|
|
|
border: new Border(
|
2018-10-03 15:55:11 +03:00
|
|
|
bottom: BorderSide(
|
|
|
|
width: 1.0,
|
2018-10-03 14:36:23 +03:00
|
|
|
color: Colors.black26,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
)
|
|
|
|
),
|
2018-10-03 15:55:11 +03:00
|
|
|
new AboutListTile(
|
|
|
|
applicationName: appName,
|
|
|
|
applicationVersion: appVersion,
|
|
|
|
applicationLegalese: "Keyboard Crumbs | www.keyboardcrumbs.io",
|
|
|
|
),
|
2018-10-03 14:36:23 +03:00
|
|
|
new ListTile(
|
|
|
|
leading: Icon(MaterialDesignIcons.createIconDataFromIconName("mdi:coffee")),
|
2018-10-03 15:55:11 +03:00
|
|
|
title: Text("Buy me a coffee"),
|
2018-10-03 14:36:23 +03:00
|
|
|
onTap: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
HAUtils.launchURL("https://www.buymeacoffee.com/estevez");
|
|
|
|
},
|
2018-09-16 14:58:21 +03:00
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-10-07 12:14:48 +03:00
|
|
|
void _hideErrorSnackBar() {
|
|
|
|
_scaffoldKey?.currentState?.hideCurrentSnackBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _showErrorSnackBar({Key key, @required String message, @required int errorCode}) {
|
2018-09-18 00:12:11 +03:00
|
|
|
SnackBarAction action;
|
2018-10-07 10:28:28 +03:00
|
|
|
switch (errorCode) {
|
2018-10-02 16:00:55 +03:00
|
|
|
case 9:
|
2018-10-03 14:36:23 +03:00
|
|
|
case 11:
|
|
|
|
case 7:
|
2018-09-18 00:12:11 +03:00
|
|
|
case 1: {
|
|
|
|
action = SnackBarAction(
|
|
|
|
label: "Retry",
|
2018-09-20 23:21:03 +03:00
|
|
|
onPressed: () {
|
|
|
|
_scaffoldKey?.currentState?.hideCurrentSnackBar();
|
|
|
|
_refreshData();
|
|
|
|
},
|
2018-09-18 00:12:11 +03:00
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
2018-09-20 23:21:03 +03:00
|
|
|
|
|
|
|
case 5: {
|
|
|
|
message = "Check connection settings";
|
|
|
|
action = SnackBarAction(
|
|
|
|
label: "Open",
|
|
|
|
onPressed: () {
|
|
|
|
_scaffoldKey?.currentState?.hideCurrentSnackBar();
|
|
|
|
Navigator.pushNamed(context, '/connection-settings');
|
|
|
|
},
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 6: {
|
|
|
|
action = SnackBarAction(
|
|
|
|
label: "Settings",
|
|
|
|
onPressed: () {
|
|
|
|
_scaffoldKey?.currentState?.hideCurrentSnackBar();
|
|
|
|
Navigator.pushNamed(context, '/connection-settings');
|
|
|
|
},
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-10-03 14:36:23 +03:00
|
|
|
case 10: {
|
2018-09-20 23:21:03 +03:00
|
|
|
action = SnackBarAction(
|
2018-10-03 14:36:23 +03:00
|
|
|
label: "Refresh",
|
2018-09-20 23:21:03 +03:00
|
|
|
onPressed: () {
|
|
|
|
_scaffoldKey?.currentState?.hideCurrentSnackBar();
|
|
|
|
_refreshData();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
2018-09-21 00:01:53 +03:00
|
|
|
|
|
|
|
case 8: {
|
|
|
|
action = SnackBarAction(
|
|
|
|
label: "Reconnect",
|
|
|
|
onPressed: () {
|
|
|
|
_scaffoldKey?.currentState?.hideCurrentSnackBar();
|
|
|
|
_refreshData();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
2018-09-18 00:12:11 +03:00
|
|
|
}
|
2018-10-07 10:28:28 +03:00
|
|
|
_scaffoldKey.currentState.hideCurrentSnackBar();
|
|
|
|
_scaffoldKey.currentState.showSnackBar(
|
|
|
|
SnackBar(
|
|
|
|
content: Text("$message (code: $errorCode)"),
|
|
|
|
action: action,
|
|
|
|
duration: Duration(hours: 1),
|
|
|
|
)
|
|
|
|
);
|
2018-09-18 00:12:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
final GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey<ScaffoldState>();
|
|
|
|
|
2018-09-24 22:54:51 +03:00
|
|
|
Scaffold _buildScaffold(bool empty) {
|
|
|
|
return Scaffold(
|
|
|
|
key: _scaffoldKey,
|
|
|
|
appBar: AppBar(
|
|
|
|
title: _buildAppTitle(),
|
2018-10-07 17:16:24 +03:00
|
|
|
bottom: empty ? null : TabBar(
|
|
|
|
tabs: buildUIViewTabs(),
|
|
|
|
isScrollable: true,
|
|
|
|
),
|
2018-09-24 22:54:51 +03:00
|
|
|
),
|
|
|
|
drawer: _buildAppDrawer(),
|
|
|
|
body: empty ?
|
|
|
|
Center(
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Icon(
|
|
|
|
MaterialDesignIcons.createIconDataFromIconName("mdi:home-assistant"),
|
|
|
|
size: 100.0,
|
2018-10-07 10:28:28 +03:00
|
|
|
color: _isLoading == 2 ? Colors.redAccent : Colors.blue,
|
2018-09-24 22:54:51 +03:00
|
|
|
),
|
|
|
|
]
|
|
|
|
),
|
|
|
|
)
|
|
|
|
:
|
2018-10-07 02:17:14 +03:00
|
|
|
_homeAssistant.buildViews(context)
|
2018-09-24 22:54:51 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-09-10 00:34:52 +03:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2018-09-16 14:58:21 +03:00
|
|
|
// This method is rerun every time setState is called.
|
2018-09-27 14:51:57 +03:00
|
|
|
if (_entities == null) {
|
2018-09-24 22:54:51 +03:00
|
|
|
return _buildScaffold(true);
|
2018-09-16 14:58:21 +03:00
|
|
|
} else {
|
|
|
|
return DefaultTabController(
|
|
|
|
length: _uiViewsCount,
|
2018-09-24 22:54:51 +03:00
|
|
|
child: _buildScaffold(false)
|
2018-09-16 14:58:21 +03:00
|
|
|
);
|
|
|
|
}
|
2018-09-10 00:34:52 +03:00
|
|
|
}
|
2018-09-12 00:32:04 +03:00
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
2018-09-16 19:24:26 +03:00
|
|
|
WidgetsBinding.instance.removeObserver(this);
|
2018-09-21 00:39:49 +03:00
|
|
|
if (_stateSubscription != null) _stateSubscription.cancel();
|
|
|
|
if (_settingsSubscription != null) _settingsSubscription.cancel();
|
2018-09-29 13:49:25 +03:00
|
|
|
if (_serviceCallSubscription != null) _serviceCallSubscription.cancel();
|
2018-09-29 16:19:01 +03:00
|
|
|
if (_showEntityPageSubscription != null) _showEntityPageSubscription.cancel();
|
2018-10-07 02:17:14 +03:00
|
|
|
if (_refreshDataSubscription != null) _refreshDataSubscription.cancel();
|
2018-10-07 10:28:28 +03:00
|
|
|
if (_showErrorSubscription != null) _showErrorSubscription.cancel();
|
2018-10-06 16:01:38 +03:00
|
|
|
_homeAssistant.disconnect();
|
2018-09-12 00:32:04 +03:00
|
|
|
super.dispose();
|
|
|
|
}
|
2018-09-10 00:34:52 +03:00
|
|
|
}
|