1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/ui/routes/conversation_route.dart

126 lines
3.4 KiB
Dart
Raw Normal View History

2019-04-24 15:46:25 +00:00
import 'package:comunic/helpers/conversations_helper.dart';
import 'package:comunic/models/conversation.dart';
2020-05-05 11:21:37 +00:00
import 'package:comunic/ui/routes/main_route/main_route.dart';
2019-05-01 07:24:50 +00:00
import 'package:comunic/ui/routes/update_conversation_route.dart';
2019-04-25 06:56:16 +00:00
import 'package:comunic/ui/screens/conversation_screen.dart';
import 'package:comunic/ui/widgets/comunic_back_button_widget.dart';
2019-04-24 15:46:25 +00:00
import 'package:comunic/utils/intl_utils.dart';
import 'package:comunic/utils/ui_utils.dart';
import 'package:flutter/material.dart';
/// Single conversation route
///
/// @author Pierre HUBERT
class ConversationRoute extends StatefulWidget {
final int conversationID;
const ConversationRoute({
Key key,
@required this.conversationID,
}) : assert(conversationID != null),
super(key: key);
@override
State<StatefulWidget> createState() => _ConversationRouteState();
}
class _ConversationRouteState extends State<ConversationRoute> {
final ConversationsHelper _conversationsHelper = ConversationsHelper();
Conversation _conversation;
String _conversationName;
bool _error = false;
setError(bool err) => setState(() => _error = err);
@override
void didChangeDependencies() {
super.didChangeDependencies();
_loadConversation();
}
Future<void> _loadConversation() async {
setError(false);
2020-04-20 08:37:59 +00:00
_conversation = await _conversationsHelper.getSingle(widget.conversationID,
force: true);
2019-04-24 15:46:25 +00:00
if (_conversation == null) return setError(true);
final conversationName =
await ConversationsHelper.getConversationNameAsync(_conversation);
if (!this.mounted) return null;
2019-05-01 15:10:23 +00:00
2019-04-25 06:56:16 +00:00
if (conversationName == null) return setError(true);
2019-04-24 15:46:25 +00:00
setState(() {
_conversationName = conversationName;
});
}
2019-05-01 07:24:50 +00:00
void _openSettings() {
2020-04-17 13:26:37 +00:00
MainController.of(context).push(
UpdateConversationRoute(
conversationID: widget.conversationID,
),
hideNavBar: true);
2019-05-01 07:24:50 +00:00
}
2019-04-24 15:46:25 +00:00
Widget _buildRouteBody() {
//Handle errors
if (_error != null && _error)
return buildErrorCard(
tr("Could not get conversation information!"),
actions: <Widget>[
FlatButton(
onPressed: _loadConversation,
child: Text(
tr("Try again").toUpperCase(),
style: TextStyle(
color: Colors.white,
),
),
),
],
);
2019-04-25 06:56:16 +00:00
if (_conversationName == null || _conversation == null)
2019-04-24 15:46:25 +00:00
return buildCenteredProgressBar();
2019-04-25 06:56:16 +00:00
return ConversationScreen(
conversationID: widget.conversationID,
);
2019-04-24 15:46:25 +00:00
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
leading: ComunicBackButton(),
2019-04-24 15:46:25 +00:00
title: Text(
_conversationName == null ? tr("Loading") : _conversationName,
),
2019-05-01 07:24:50 +00:00
actions: <Widget>[
2020-04-20 08:53:25 +00:00
// Start call (if possible)
_conversation == null ||
_conversation.callCapabilities == CallCapabilities.NONE
? Container()
: IconButton(
icon: Icon(Icons.phone),
onPressed: () => MainController.of(context)
.startCall(widget.conversationID),
),
// Edit conversation settings
2019-05-01 07:24:50 +00:00
IconButton(
icon: Icon(Icons.settings),
onPressed: _openSettings,
)
],
2019-04-24 15:46:25 +00:00
),
body: _buildRouteBody(),
);
}
}