mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-23 05:19:22 +00:00
113 lines
2.6 KiB
Dart
113 lines
2.6 KiB
Dart
import 'package:comunic/helpers/events_helper.dart';
|
|
import 'package:comunic/helpers/websocket_helper.dart';
|
|
import 'package:comunic/ui/routes/main_route.dart';
|
|
import 'package:comunic/ui/widgets/safe_state.dart';
|
|
import 'package:comunic/utils/intl_utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
/// Comunic account initialization widget
|
|
///
|
|
/// Application screens should only appears as children of this widget
|
|
///
|
|
/// This widget ensures that the application is correctly initialized before
|
|
/// starting it
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class InitializeWidget extends StatefulWidget {
|
|
@override
|
|
_InitializeWidgetState createState() => _InitializeWidgetState();
|
|
}
|
|
|
|
class _InitializeWidgetState extends SafeState<InitializeWidget> {
|
|
bool _error = false;
|
|
|
|
@override
|
|
void initState() {
|
|
_tryConnect();
|
|
|
|
super.initState();
|
|
|
|
// Listen to WebSocket close event
|
|
super.listen<WSClosedEvent>((e) => _tryConnect());
|
|
}
|
|
|
|
/// Try to connect to server
|
|
void _tryConnect() async {
|
|
try {
|
|
setState(() {
|
|
_error = false;
|
|
});
|
|
|
|
await WebSocketHelper.connect();
|
|
|
|
setState(() {});
|
|
} catch (e, stack) {
|
|
print("Could not connect to server! $e");
|
|
print(stack);
|
|
|
|
setState(() {
|
|
_error = true;
|
|
});
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return !_error && WebSocketHelper.isConnected()
|
|
? MainRoute()
|
|
: _buildNonReadyWidget();
|
|
}
|
|
|
|
/// Build loading widget
|
|
Widget _buildNonReadyWidget() {
|
|
return Scaffold(
|
|
backgroundColor: Colors.indigo.shade900,
|
|
body: Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: <Widget>[
|
|
Spacer(
|
|
flex: 4,
|
|
),
|
|
Text(
|
|
tr("Comunic"),
|
|
style: TextStyle(fontSize: 50),
|
|
),
|
|
Spacer(
|
|
flex: 2,
|
|
),
|
|
_error ? _buildErrorWidget() : _buildConnectingWidget(),
|
|
Spacer(
|
|
flex: 2,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildConnectingWidget() {
|
|
return CircularProgressIndicator();
|
|
}
|
|
|
|
Widget _buildErrorWidget() {
|
|
return Column(
|
|
children: <Widget>[
|
|
Icon(Icons.error),
|
|
SizedBox(height: 30),
|
|
Text(tr("Could not connect to server!")),
|
|
SizedBox(
|
|
height: 30,
|
|
),
|
|
RaisedButton(
|
|
color: Colors.indigo,
|
|
onPressed: () => _tryConnect(),
|
|
child: Text(tr("Try again")),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|