2020-01-05 11:27:03 +00:00
|
|
|
import 'dart:async';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'dart:io';
|
2020-05-15 17:57:53 +00:00
|
|
|
import 'dart:math';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
2020-09-20 18:13:42 +00:00
|
|
|
import 'package:fluffychat/config/app_emojis.dart';
|
2020-09-19 17:21:33 +00:00
|
|
|
import 'package:flutter/scheduler.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:fluffychat/components/adaptive_page_layout.dart';
|
2020-05-15 17:57:53 +00:00
|
|
|
import 'package:fluffychat/components/avatar.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:fluffychat/components/chat_settings_popup_menu.dart';
|
2020-07-04 08:22:51 +00:00
|
|
|
import 'package:fluffychat/components/connection_status_header.dart';
|
2020-05-15 17:57:53 +00:00
|
|
|
import 'package:fluffychat/components/dialogs/presence_dialog.dart';
|
2020-03-15 10:27:51 +00:00
|
|
|
import 'package:fluffychat/components/dialogs/recording_dialog.dart';
|
2020-02-16 10:36:18 +00:00
|
|
|
import 'package:fluffychat/components/dialogs/simple_dialogs.dart';
|
2020-02-22 08:03:44 +00:00
|
|
|
import 'package:fluffychat/components/encryption_button.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:fluffychat/components/list_items/message.dart';
|
|
|
|
import 'package:fluffychat/components/matrix.dart';
|
2020-02-11 11:49:39 +00:00
|
|
|
import 'package:fluffychat/components/reply_content.dart';
|
2020-05-07 05:52:40 +00:00
|
|
|
import 'package:fluffychat/l10n/l10n.dart';
|
2020-05-15 17:57:53 +00:00
|
|
|
import 'package:fluffychat/utils/app_route.dart';
|
|
|
|
import 'package:fluffychat/utils/room_status_extension.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2020-02-09 14:15:29 +00:00
|
|
|
import 'package:flutter/services.dart';
|
2020-06-20 09:32:49 +00:00
|
|
|
import 'package:memoryfilepicker/memoryfilepicker.dart';
|
2020-01-24 11:10:35 +00:00
|
|
|
import 'package:pedantic/pedantic.dart';
|
2020-06-20 09:32:49 +00:00
|
|
|
import 'package:image_picker/image_picker.dart';
|
2020-09-04 10:56:25 +00:00
|
|
|
import 'package:file_picker_platform_interface/file_picker_platform_interface.dart';
|
2020-09-19 17:21:33 +00:00
|
|
|
import 'package:scroll_to_index/scroll_to_index.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
|
2020-05-15 17:57:53 +00:00
|
|
|
import 'chat_details.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'chat_list.dart';
|
2020-05-15 13:28:23 +00:00
|
|
|
import '../components/input_bar.dart';
|
2020-09-04 10:56:25 +00:00
|
|
|
import '../components/dialogs/send_file_dialog.dart';
|
|
|
|
import '../utils/matrix_file_extension.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
|
2020-01-27 09:14:38 +00:00
|
|
|
class ChatView extends StatelessWidget {
|
2020-01-01 18:10:13 +00:00
|
|
|
final String id;
|
2020-09-19 17:21:33 +00:00
|
|
|
final String scrollToEventId;
|
2020-01-01 18:10:13 +00:00
|
|
|
|
2020-09-19 17:21:33 +00:00
|
|
|
const ChatView(this.id, {Key key, this.scrollToEventId}) : super(key: key);
|
2020-01-27 09:14:38 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
// TODO: implement build
|
|
|
|
return AdaptivePageLayout(
|
|
|
|
primaryPage: FocusPage.SECOND,
|
|
|
|
firstScaffold: ChatList(
|
|
|
|
activeChat: id,
|
|
|
|
),
|
2020-09-19 17:21:33 +00:00
|
|
|
secondScaffold: _Chat(id, scrollToEventId: scrollToEventId),
|
2020-01-27 09:14:38 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _Chat extends StatefulWidget {
|
|
|
|
final String id;
|
2020-09-19 17:21:33 +00:00
|
|
|
final String scrollToEventId;
|
2020-01-27 09:14:38 +00:00
|
|
|
|
2020-09-19 17:21:33 +00:00
|
|
|
const _Chat(this.id, {Key key, this.scrollToEventId}) : super(key: key);
|
2020-01-23 11:11:57 +00:00
|
|
|
|
2020-01-01 18:10:13 +00:00
|
|
|
@override
|
|
|
|
_ChatState createState() => _ChatState();
|
|
|
|
}
|
|
|
|
|
2020-01-27 09:14:38 +00:00
|
|
|
class _ChatState extends State<_Chat> {
|
2020-01-01 18:10:13 +00:00
|
|
|
Room room;
|
|
|
|
|
|
|
|
Timeline timeline;
|
|
|
|
|
2020-01-08 13:19:15 +00:00
|
|
|
MatrixState matrix;
|
|
|
|
|
2020-05-13 13:58:59 +00:00
|
|
|
String seenByText = '';
|
2020-01-05 11:27:03 +00:00
|
|
|
|
2020-09-19 17:21:33 +00:00
|
|
|
final AutoScrollController _scrollController = AutoScrollController();
|
2020-01-01 18:10:13 +00:00
|
|
|
|
2020-01-24 10:51:23 +00:00
|
|
|
FocusNode inputFocus = FocusNode();
|
|
|
|
|
2020-01-05 11:27:03 +00:00
|
|
|
Timer typingCoolDown;
|
|
|
|
Timer typingTimeout;
|
|
|
|
bool currentlyTyping = false;
|
|
|
|
|
2020-04-02 11:14:39 +00:00
|
|
|
List<Event> selectedEvents = [];
|
2020-02-09 14:15:29 +00:00
|
|
|
|
|
|
|
Event replyEvent;
|
|
|
|
|
2020-08-12 09:30:31 +00:00
|
|
|
Event editEvent;
|
|
|
|
|
2020-02-09 15:58:49 +00:00
|
|
|
bool showScrollDownButton = false;
|
|
|
|
|
2020-02-09 14:15:29 +00:00
|
|
|
bool get selectMode => selectedEvents.isNotEmpty;
|
|
|
|
|
2020-02-14 13:34:28 +00:00
|
|
|
bool _loadingHistory = false;
|
|
|
|
|
|
|
|
final int _loadHistoryCount = 100;
|
|
|
|
|
2020-05-13 13:58:59 +00:00
|
|
|
String inputText = '';
|
2020-02-22 08:03:44 +00:00
|
|
|
|
2020-05-09 07:30:03 +00:00
|
|
|
bool get _canLoadMore => timeline.events.last.type != EventTypes.RoomCreate;
|
|
|
|
|
2020-02-14 13:34:28 +00:00
|
|
|
void requestHistory() async {
|
2020-05-09 07:30:03 +00:00
|
|
|
if (_canLoadMore) {
|
2020-05-13 13:58:59 +00:00
|
|
|
setState(() => _loadingHistory = true);
|
2020-07-04 08:22:51 +00:00
|
|
|
|
|
|
|
await SimpleDialogs(context).tryRequestWithErrorToast(
|
|
|
|
timeline.requestHistory(historyCount: _loadHistoryCount),
|
|
|
|
);
|
|
|
|
|
2020-09-19 17:21:33 +00:00
|
|
|
// we do NOT setState() here as then the event order will be wrong.
|
|
|
|
// instead, we just set our variable to false, and rely on timeline update to set the
|
|
|
|
// new state, thus triggering a re-render, for us
|
|
|
|
_loadingHistory = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _updateScrollController() {
|
|
|
|
if (_scrollController.position.pixels ==
|
|
|
|
_scrollController.position.maxScrollExtent &&
|
|
|
|
timeline.events.isNotEmpty &&
|
|
|
|
timeline.events[timeline.events.length - 1].type !=
|
|
|
|
EventTypes.RoomCreate) {
|
|
|
|
requestHistory();
|
|
|
|
}
|
|
|
|
if (_scrollController.position.pixels > 0 &&
|
|
|
|
showScrollDownButton == false) {
|
|
|
|
setState(() => showScrollDownButton = true);
|
|
|
|
} else if (_scrollController.position.pixels == 0 &&
|
|
|
|
showScrollDownButton == true) {
|
|
|
|
setState(() => showScrollDownButton = false);
|
2020-02-14 13:37:31 +00:00
|
|
|
}
|
2020-02-14 13:34:28 +00:00
|
|
|
}
|
|
|
|
|
2020-01-01 18:10:13 +00:00
|
|
|
@override
|
|
|
|
void initState() {
|
2020-09-20 12:36:53 +00:00
|
|
|
_scrollController.addListener(_updateScrollController);
|
2020-01-01 18:10:13 +00:00
|
|
|
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
2020-01-05 11:27:03 +00:00
|
|
|
void updateView() {
|
2020-01-23 11:11:57 +00:00
|
|
|
if (!mounted) return;
|
|
|
|
|
2020-05-13 13:58:59 +00:00
|
|
|
var seenByText = '';
|
2020-01-05 11:27:03 +00:00
|
|
|
if (timeline.events.isNotEmpty) {
|
2020-05-13 13:58:59 +00:00
|
|
|
var lastReceipts = List.from(timeline.events.first.receipts);
|
2020-01-05 11:27:03 +00:00
|
|
|
lastReceipts.removeWhere((r) =>
|
|
|
|
r.user.id == room.client.userID ||
|
|
|
|
r.user.id == timeline.events.first.senderId);
|
|
|
|
if (lastReceipts.length == 1) {
|
2020-05-07 05:52:40 +00:00
|
|
|
seenByText = L10n.of(context)
|
2020-01-20 12:46:39 +00:00
|
|
|
.seenByUser(lastReceipts.first.user.calcDisplayname());
|
2020-01-05 11:27:03 +00:00
|
|
|
} else if (lastReceipts.length == 2) {
|
2020-05-07 05:52:40 +00:00
|
|
|
seenByText = seenByText = L10n.of(context).seenByUserAndUser(
|
2020-01-20 12:46:39 +00:00
|
|
|
lastReceipts.first.user.calcDisplayname(),
|
|
|
|
lastReceipts[1].user.calcDisplayname());
|
2020-01-05 11:27:03 +00:00
|
|
|
} else if (lastReceipts.length > 2) {
|
2020-05-07 05:52:40 +00:00
|
|
|
seenByText = L10n.of(context).seenByUserAndCountOthers(
|
2020-01-20 12:46:39 +00:00
|
|
|
lastReceipts.first.user.calcDisplayname(),
|
|
|
|
(lastReceipts.length - 1).toString());
|
2020-01-05 11:27:03 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-23 11:11:57 +00:00
|
|
|
if (timeline != null) {
|
|
|
|
setState(() {
|
|
|
|
this.seenByText = seenByText;
|
|
|
|
});
|
|
|
|
}
|
2020-01-05 11:27:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-19 17:21:33 +00:00
|
|
|
Future<bool> getTimeline(BuildContext context) async {
|
2020-01-24 11:05:37 +00:00
|
|
|
if (timeline == null) {
|
|
|
|
timeline = await room.getTimeline(onUpdate: updateView);
|
|
|
|
if (timeline.events.isNotEmpty) {
|
2020-01-24 11:10:35 +00:00
|
|
|
unawaited(room.sendReadReceipt(timeline.events.first.eventId));
|
2020-01-24 11:05:37 +00:00
|
|
|
}
|
2020-09-19 17:21:33 +00:00
|
|
|
|
|
|
|
// when the scroll controller is attached we want to scroll to an event id, if specified
|
|
|
|
// and update the scroll controller...which will trigger a request history, if the
|
|
|
|
// "load more" button is visible on the screen
|
|
|
|
SchedulerBinding.instance.addPostFrameCallback((_) async {
|
|
|
|
if (widget.scrollToEventId != null) {
|
|
|
|
_scrollToEventId(widget.scrollToEventId, context: context);
|
|
|
|
}
|
|
|
|
_updateScrollController();
|
|
|
|
});
|
2020-01-24 11:05:37 +00:00
|
|
|
}
|
2020-01-05 11:27:03 +00:00
|
|
|
updateView();
|
2020-01-01 18:10:13 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
2020-02-22 07:27:08 +00:00
|
|
|
timeline?.cancelSubscriptions();
|
2020-01-23 11:11:57 +00:00
|
|
|
timeline = null;
|
2020-05-13 13:58:59 +00:00
|
|
|
matrix.activeRoomId = '';
|
2020-01-01 18:10:13 +00:00
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
2020-01-17 09:41:28 +00:00
|
|
|
TextEditingController sendController = TextEditingController();
|
2020-01-01 18:10:13 +00:00
|
|
|
|
|
|
|
void send() {
|
|
|
|
if (sendController.text.isEmpty) return;
|
2020-08-12 09:30:31 +00:00
|
|
|
room.sendTextEvent(sendController.text,
|
|
|
|
inReplyTo: replyEvent, editEventId: editEvent?.eventId);
|
2020-05-13 13:58:59 +00:00
|
|
|
sendController.text = '';
|
2020-02-23 07:52:28 +00:00
|
|
|
|
2020-08-12 09:30:31 +00:00
|
|
|
setState(() {
|
|
|
|
inputText = '';
|
|
|
|
replyEvent = null;
|
|
|
|
editEvent = null;
|
|
|
|
});
|
2020-01-01 18:10:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sendFileAction(BuildContext context) async {
|
2020-06-20 09:32:49 +00:00
|
|
|
var file = await MemoryFilePicker.getFile();
|
2020-01-01 18:10:13 +00:00
|
|
|
if (file == null) return;
|
2020-09-04 10:56:25 +00:00
|
|
|
await showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (context) => SendFileDialog(
|
|
|
|
file:
|
|
|
|
MatrixFile(bytes: file.bytes, name: file.path).detectFileType,
|
|
|
|
room: room,
|
|
|
|
));
|
2020-01-01 18:10:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void sendImageAction(BuildContext context) async {
|
2020-09-04 10:56:25 +00:00
|
|
|
var file = await MemoryFilePicker.getFile(type: FileType.image);
|
2020-01-01 18:10:13 +00:00
|
|
|
if (file == null) return;
|
2020-09-04 10:56:25 +00:00
|
|
|
final bytes = await file.bytes;
|
|
|
|
await showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (context) => SendFileDialog(
|
|
|
|
file: MatrixImageFile(bytes: bytes, name: file.path),
|
|
|
|
room: room,
|
|
|
|
));
|
2020-01-01 18:10:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void openCameraAction(BuildContext context) async {
|
2020-09-04 10:56:25 +00:00
|
|
|
var file = await MemoryFilePicker.getImage(source: ImageSource.camera);
|
2020-01-01 18:10:13 +00:00
|
|
|
if (file == null) return;
|
2020-09-04 10:56:25 +00:00
|
|
|
await showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (context) => SendFileDialog(
|
|
|
|
file: MatrixImageFile(bytes: file.bytes, name: file.path),
|
|
|
|
room: room,
|
|
|
|
));
|
2020-01-01 18:10:13 +00:00
|
|
|
}
|
|
|
|
|
2020-03-15 10:27:51 +00:00
|
|
|
void voiceMessageAction(BuildContext context) async {
|
|
|
|
String result;
|
|
|
|
await showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (context) => RecordingDialog(
|
|
|
|
onFinished: (r) => result = r,
|
|
|
|
));
|
|
|
|
if (result == null) return;
|
2020-05-13 13:58:59 +00:00
|
|
|
final audioFile = File(result);
|
2020-09-20 08:35:19 +00:00
|
|
|
// as we already explicitly say send in the recording dialog,
|
|
|
|
// we do not need the send file dialog anymore. We can just send this straight away.
|
|
|
|
await SimpleDialogs(context).tryRequestWithLoadingDialog(
|
|
|
|
room.sendFileEvent(
|
|
|
|
MatrixAudioFile(
|
|
|
|
bytes: audioFile.readAsBytesSync(), name: audioFile.path),
|
|
|
|
),
|
|
|
|
);
|
2020-03-15 10:27:51 +00:00
|
|
|
}
|
|
|
|
|
2020-02-09 14:15:29 +00:00
|
|
|
String _getSelectedEventString(BuildContext context) {
|
2020-05-13 13:58:59 +00:00
|
|
|
var copyString = '';
|
2020-04-02 11:14:39 +00:00
|
|
|
if (selectedEvents.length == 1) {
|
2020-05-07 05:52:40 +00:00
|
|
|
return selectedEvents.first.getLocalizedBody(L10n.of(context));
|
2020-04-02 11:14:39 +00:00
|
|
|
}
|
2020-05-13 13:58:59 +00:00
|
|
|
for (var event in selectedEvents) {
|
|
|
|
if (copyString.isNotEmpty) copyString += '\n\n';
|
2020-05-05 12:55:19 +00:00
|
|
|
copyString +=
|
2020-05-07 05:52:40 +00:00
|
|
|
event.getLocalizedBody(L10n.of(context), withSenderNamePrefix: true);
|
2020-02-09 14:15:29 +00:00
|
|
|
}
|
|
|
|
return copyString;
|
|
|
|
}
|
|
|
|
|
|
|
|
void copyEventsAction(BuildContext context) {
|
|
|
|
Clipboard.setData(ClipboardData(text: _getSelectedEventString(context)));
|
|
|
|
setState(() => selectedEvents.clear());
|
|
|
|
}
|
|
|
|
|
|
|
|
void redactEventsAction(BuildContext context) async {
|
2020-05-13 13:58:59 +00:00
|
|
|
var confirmed = await SimpleDialogs(context).askConfirmation(
|
2020-05-07 05:52:40 +00:00
|
|
|
titleText: L10n.of(context).messageWillBeRemovedWarning,
|
|
|
|
confirmText: L10n.of(context).remove,
|
2020-02-09 14:15:29 +00:00
|
|
|
);
|
|
|
|
if (!confirmed) return;
|
2020-05-13 13:58:59 +00:00
|
|
|
for (var event in selectedEvents) {
|
2020-04-27 11:36:39 +00:00
|
|
|
await SimpleDialogs(context).tryRequestWithLoadingDialog(
|
2020-02-09 14:15:29 +00:00
|
|
|
event.status > 0 ? event.redact() : event.remove());
|
|
|
|
}
|
|
|
|
setState(() => selectedEvents.clear());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool get canRedactSelectedEvents {
|
2020-05-13 13:58:59 +00:00
|
|
|
for (var event in selectedEvents) {
|
2020-02-09 14:15:29 +00:00
|
|
|
if (event.canRedact == false) return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void forwardEventsAction(BuildContext context) async {
|
|
|
|
if (selectedEvents.length == 1) {
|
|
|
|
Matrix.of(context).shareContent = selectedEvents.first.content;
|
|
|
|
} else {
|
|
|
|
Matrix.of(context).shareContent = {
|
2020-05-13 13:58:59 +00:00
|
|
|
'msgtype': 'm.text',
|
|
|
|
'body': _getSelectedEventString(context),
|
2020-02-09 14:15:29 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
setState(() => selectedEvents.clear());
|
|
|
|
Navigator.of(context).popUntil((r) => r.isFirst);
|
|
|
|
}
|
|
|
|
|
2020-08-12 09:30:31 +00:00
|
|
|
void sendAgainAction(Timeline timeline) {
|
|
|
|
final event = selectedEvents.first;
|
|
|
|
if (event.status == -1) {
|
|
|
|
event.sendAgain();
|
|
|
|
}
|
|
|
|
final allEditEvents = event
|
|
|
|
.aggregatedEvents(timeline, RelationshipTypes.Edit)
|
|
|
|
.where((e) => e.status == -1);
|
|
|
|
for (final e in allEditEvents) {
|
|
|
|
e.sendAgain();
|
|
|
|
}
|
2020-02-09 14:15:29 +00:00
|
|
|
setState(() => selectedEvents.clear());
|
|
|
|
}
|
|
|
|
|
|
|
|
void replyAction() {
|
|
|
|
setState(() {
|
|
|
|
replyEvent = selectedEvents.first;
|
|
|
|
selectedEvents.clear();
|
|
|
|
});
|
2020-02-16 10:36:18 +00:00
|
|
|
inputFocus.requestFocus();
|
2020-02-09 14:15:29 +00:00
|
|
|
}
|
|
|
|
|
2020-09-19 17:21:33 +00:00
|
|
|
void _scrollToEventId(String eventId, {BuildContext context}) async {
|
|
|
|
var eventIndex =
|
|
|
|
getFilteredEvents().indexWhere((e) => e.eventId == eventId);
|
|
|
|
if (eventIndex == -1) {
|
|
|
|
// event id not found...maybe we can fetch it?
|
|
|
|
// the try...finally is here to start and close the loading dialog reliably
|
|
|
|
try {
|
|
|
|
if (context != null) {
|
|
|
|
SimpleDialogs(context).showLoadingDialog(context);
|
|
|
|
}
|
|
|
|
// okay, we first have to fetch if the event is in the room
|
|
|
|
try {
|
|
|
|
final event = await timeline.getEventById(eventId);
|
|
|
|
if (event == null) {
|
|
|
|
// event is null...meaning something is off
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
if (err is MatrixException && err.errcode == 'M_NOT_FOUND') {
|
|
|
|
// event wasn't found, as the server gave a 404 or something
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
// okay, we know that the event *is* in the room
|
|
|
|
while (eventIndex == -1) {
|
|
|
|
if (!_canLoadMore) {
|
|
|
|
// we can't load any more events but still haven't found ours yet...better stop here
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
await timeline.requestHistory(historyCount: _loadHistoryCount);
|
|
|
|
} catch (err) {
|
|
|
|
if (err is TimeoutException) {
|
|
|
|
// loading the history timed out...so let's do nothing
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
eventIndex =
|
|
|
|
getFilteredEvents().indexWhere((e) => e.eventId == eventId);
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
if (context != null) {
|
|
|
|
Navigator.of(context)?.pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
await _scrollController.scrollToIndex(eventIndex,
|
|
|
|
preferPosition: AutoScrollPosition.middle);
|
|
|
|
_updateScrollController();
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Event> getFilteredEvents() => timeline.events
|
|
|
|
.where((e) =>
|
|
|
|
![RelationshipTypes.Edit, RelationshipTypes.Reaction]
|
|
|
|
.contains(e.relationshipType) &&
|
|
|
|
e.type != 'm.reaction')
|
|
|
|
.toList();
|
|
|
|
|
2020-01-01 18:10:13 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-01-08 13:19:15 +00:00
|
|
|
matrix = Matrix.of(context);
|
2020-05-13 13:58:59 +00:00
|
|
|
var client = matrix.client;
|
2020-01-01 18:10:13 +00:00
|
|
|
room ??= client.getRoomById(widget.id);
|
2020-01-05 11:27:03 +00:00
|
|
|
if (room == null) {
|
2020-01-20 12:46:39 +00:00
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2020-05-07 05:52:40 +00:00
|
|
|
title: Text(L10n.of(context).oopsSomethingWentWrong),
|
2020-01-20 12:46:39 +00:00
|
|
|
),
|
|
|
|
body: Center(
|
2020-05-07 05:52:40 +00:00
|
|
|
child: Text(L10n.of(context).youAreNoLongerParticipatingInThisChat),
|
2020-01-20 12:46:39 +00:00
|
|
|
),
|
2020-01-05 11:27:03 +00:00
|
|
|
);
|
|
|
|
}
|
2020-01-08 13:19:15 +00:00
|
|
|
matrix.activeRoomId = widget.id;
|
2020-01-05 11:27:03 +00:00
|
|
|
|
|
|
|
if (room.membership == Membership.invite) {
|
2020-04-27 11:36:39 +00:00
|
|
|
SimpleDialogs(context).tryRequestWithLoadingDialog(room.join());
|
2020-01-05 11:27:03 +00:00
|
|
|
}
|
2020-01-01 18:10:13 +00:00
|
|
|
|
2020-05-13 13:58:59 +00:00
|
|
|
var typingText = '';
|
|
|
|
var typingUsers = room.typingUsers;
|
2020-01-05 11:27:03 +00:00
|
|
|
typingUsers.removeWhere((User u) => u.id == client.userID);
|
|
|
|
|
|
|
|
if (typingUsers.length == 1) {
|
2020-05-07 05:52:40 +00:00
|
|
|
typingText = L10n.of(context).isTyping;
|
2020-01-18 12:27:36 +00:00
|
|
|
if (typingUsers.first.id != room.directChatMatrixID) {
|
2020-01-20 12:46:39 +00:00
|
|
|
typingText =
|
2020-05-07 05:52:40 +00:00
|
|
|
L10n.of(context).userIsTyping(typingUsers.first.calcDisplayname());
|
2020-01-18 12:27:36 +00:00
|
|
|
}
|
2020-01-05 11:27:03 +00:00
|
|
|
} else if (typingUsers.length == 2) {
|
2020-05-07 05:52:40 +00:00
|
|
|
typingText = L10n.of(context).userAndUserAreTyping(
|
2020-01-20 12:46:39 +00:00
|
|
|
typingUsers.first.calcDisplayname(),
|
|
|
|
typingUsers[1].calcDisplayname());
|
2020-01-05 11:27:03 +00:00
|
|
|
} else if (typingUsers.length > 2) {
|
2020-05-07 05:52:40 +00:00
|
|
|
typingText = L10n.of(context).userAndOthersAreTyping(
|
2020-01-20 12:46:39 +00:00
|
|
|
typingUsers.first.calcDisplayname(),
|
|
|
|
(typingUsers.length - 1).toString());
|
2020-01-05 11:27:03 +00:00
|
|
|
}
|
2020-01-01 18:10:13 +00:00
|
|
|
|
2020-01-27 09:14:38 +00:00
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2020-02-09 14:15:29 +00:00
|
|
|
leading: selectMode
|
|
|
|
? IconButton(
|
|
|
|
icon: Icon(Icons.close),
|
|
|
|
onPressed: () => setState(() => selectedEvents.clear()),
|
|
|
|
)
|
|
|
|
: null,
|
2020-05-15 17:57:53 +00:00
|
|
|
titleSpacing: 0,
|
2020-02-09 14:15:29 +00:00
|
|
|
title: selectedEvents.isEmpty
|
2020-05-15 17:57:53 +00:00
|
|
|
? StreamBuilder<Object>(
|
|
|
|
stream: Matrix.of(context)
|
|
|
|
.client
|
|
|
|
.onPresence
|
|
|
|
.stream
|
2020-06-10 08:07:01 +00:00
|
|
|
.where((p) => p.senderId == room.directChatMatrixID),
|
2020-05-15 17:57:53 +00:00
|
|
|
builder: (context, snapshot) {
|
|
|
|
return ListTile(
|
|
|
|
leading: Avatar(room.avatar, room.displayname),
|
|
|
|
contentPadding: EdgeInsets.zero,
|
|
|
|
onTap: () =>
|
|
|
|
room.isDirectChat && room.directChatPresence == null
|
|
|
|
? null
|
|
|
|
: room.isDirectChat
|
|
|
|
? showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (c) => PresenceDialog(
|
|
|
|
room.directChatPresence,
|
|
|
|
avatarUrl: room.avatar,
|
|
|
|
displayname: room.displayname,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Navigator.of(context).push(
|
|
|
|
AppRoute.defaultRoute(
|
|
|
|
context,
|
|
|
|
ChatDetails(room),
|
|
|
|
),
|
|
|
|
),
|
2020-05-16 06:43:27 +00:00
|
|
|
title: Text(room.getLocalizedDisplayname(L10n.of(context)),
|
|
|
|
maxLines: 1),
|
2020-05-15 17:57:53 +00:00
|
|
|
subtitle: typingText.isEmpty
|
|
|
|
? Text(
|
2020-05-16 06:43:27 +00:00
|
|
|
room.getLocalizedStatus(context),
|
|
|
|
maxLines: 1,
|
2020-05-15 17:57:53 +00:00
|
|
|
)
|
|
|
|
: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Icon(Icons.edit,
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
size: 13),
|
|
|
|
SizedBox(width: 4),
|
|
|
|
Text(
|
2020-05-16 06:43:27 +00:00
|
|
|
typingText,
|
|
|
|
maxLines: 1,
|
2020-05-15 17:57:53 +00:00
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
fontStyle: FontStyle.italic,
|
|
|
|
fontSize: 16,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2020-02-09 14:15:29 +00:00
|
|
|
),
|
2020-05-15 17:57:53 +00:00
|
|
|
);
|
|
|
|
})
|
2020-05-07 05:52:40 +00:00
|
|
|
: Text(L10n.of(context)
|
2020-02-09 14:15:29 +00:00
|
|
|
.numberSelected(selectedEvents.length.toString())),
|
|
|
|
actions: selectMode
|
|
|
|
? <Widget>[
|
2020-08-12 09:30:31 +00:00
|
|
|
if (selectedEvents.length == 1 &&
|
|
|
|
selectedEvents.first.status > 0 &&
|
|
|
|
selectedEvents.first.senderId == client.userID)
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.edit),
|
|
|
|
onPressed: () {
|
|
|
|
setState(() {
|
|
|
|
editEvent = selectedEvents.first;
|
|
|
|
sendController.text = editEvent
|
|
|
|
.getDisplayEvent(timeline)
|
|
|
|
.getLocalizedBody(L10n.of(context),
|
|
|
|
withSenderNamePrefix: false, hideReply: true);
|
|
|
|
selectedEvents.clear();
|
|
|
|
});
|
|
|
|
inputFocus.requestFocus();
|
|
|
|
},
|
|
|
|
),
|
2020-02-09 14:15:29 +00:00
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.content_copy),
|
|
|
|
onPressed: () => copyEventsAction(context),
|
|
|
|
),
|
|
|
|
if (canRedactSelectedEvents)
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.delete),
|
|
|
|
onPressed: () => redactEventsAction(context),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
: <Widget>[ChatSettingsPopupMenu(room, !room.isDirectChat)],
|
2020-01-27 09:14:38 +00:00
|
|
|
),
|
2020-02-09 15:58:49 +00:00
|
|
|
floatingActionButton: showScrollDownButton
|
|
|
|
? Padding(
|
|
|
|
padding: const EdgeInsets.only(bottom: 56.0),
|
|
|
|
child: FloatingActionButton(
|
|
|
|
child: Icon(Icons.arrow_downward,
|
|
|
|
color: Theme.of(context).primaryColor),
|
|
|
|
onPressed: () => _scrollController.jumpTo(0),
|
2020-05-06 16:43:30 +00:00
|
|
|
foregroundColor: Theme.of(context).textTheme.bodyText2.color,
|
2020-02-09 15:58:49 +00:00
|
|
|
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
|
|
|
|
mini: true,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: null,
|
2020-02-14 13:34:28 +00:00
|
|
|
body: Stack(
|
|
|
|
children: <Widget>[
|
2020-04-03 18:24:25 +00:00
|
|
|
if (Matrix.of(context).wallpaper != null)
|
|
|
|
Opacity(
|
|
|
|
opacity: 0.66,
|
|
|
|
child: Image.file(
|
|
|
|
Matrix.of(context).wallpaper,
|
|
|
|
height: double.infinity,
|
|
|
|
width: double.infinity,
|
|
|
|
fit: BoxFit.cover,
|
|
|
|
),
|
2020-01-27 09:14:38 +00:00
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
Column(
|
|
|
|
children: <Widget>[
|
2020-08-22 09:02:08 +00:00
|
|
|
ConnectionStatusHeader(),
|
2020-06-18 11:39:24 +00:00
|
|
|
Expanded(
|
|
|
|
child: FutureBuilder<bool>(
|
2020-09-19 17:21:33 +00:00
|
|
|
future: getTimeline(context),
|
2020-06-18 11:39:24 +00:00
|
|
|
builder: (BuildContext context, snapshot) {
|
|
|
|
if (!snapshot.hasData) {
|
|
|
|
return Center(
|
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (room.notificationCount != null &&
|
|
|
|
room.notificationCount > 0 &&
|
|
|
|
timeline != null &&
|
2020-08-22 14:09:15 +00:00
|
|
|
timeline.events.isNotEmpty &&
|
|
|
|
Matrix.of(context).webHasFocus) {
|
2020-06-18 11:39:24 +00:00
|
|
|
room.sendReadReceipt(timeline.events.first.eventId);
|
|
|
|
}
|
|
|
|
|
2020-09-19 17:21:33 +00:00
|
|
|
final filteredEvents = getFilteredEvents();
|
2020-08-12 09:30:31 +00:00
|
|
|
|
2020-06-18 11:39:24 +00:00
|
|
|
return ListView.builder(
|
|
|
|
padding: EdgeInsets.symmetric(
|
|
|
|
horizontal: max(
|
|
|
|
0,
|
|
|
|
(MediaQuery.of(context).size.width -
|
|
|
|
AdaptivePageLayout.defaultMinWidth *
|
|
|
|
3.5) /
|
|
|
|
2),
|
|
|
|
),
|
|
|
|
reverse: true,
|
2020-08-12 09:30:31 +00:00
|
|
|
itemCount: filteredEvents.length + 2,
|
2020-06-18 11:39:24 +00:00
|
|
|
controller: _scrollController,
|
|
|
|
itemBuilder: (BuildContext context, int i) {
|
2020-08-12 09:30:31 +00:00
|
|
|
return i == filteredEvents.length + 1
|
2020-07-04 08:22:51 +00:00
|
|
|
? _loadingHistory
|
|
|
|
? Container(
|
|
|
|
height: 50,
|
|
|
|
alignment: Alignment.center,
|
|
|
|
padding: EdgeInsets.all(8),
|
|
|
|
child: CircularProgressIndicator(),
|
2020-06-18 11:39:24 +00:00
|
|
|
)
|
2020-07-04 08:22:51 +00:00
|
|
|
: _canLoadMore
|
|
|
|
? FlatButton(
|
|
|
|
child: Text(
|
|
|
|
L10n.of(context).loadMore,
|
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context)
|
|
|
|
.primaryColor,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
decoration:
|
|
|
|
TextDecoration.underline,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
onPressed: requestHistory,
|
|
|
|
)
|
|
|
|
: Container()
|
2020-06-18 11:39:24 +00:00
|
|
|
: i == 0
|
|
|
|
? AnimatedContainer(
|
|
|
|
height: seenByText.isEmpty ? 0 : 24,
|
|
|
|
duration: seenByText.isEmpty
|
|
|
|
? Duration(milliseconds: 0)
|
|
|
|
: Duration(milliseconds: 500),
|
|
|
|
alignment:
|
2020-08-12 09:30:31 +00:00
|
|
|
filteredEvents.first.senderId ==
|
2020-06-18 11:39:24 +00:00
|
|
|
client.userID
|
|
|
|
? Alignment.topRight
|
|
|
|
: Alignment.topLeft,
|
2020-09-21 17:21:24 +00:00
|
|
|
child: Container(
|
|
|
|
padding:
|
|
|
|
EdgeInsets.symmetric(horizontal: 4),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Theme.of(context)
|
|
|
|
.scaffoldBackgroundColor
|
|
|
|
.withOpacity(0.8),
|
|
|
|
borderRadius:
|
|
|
|
BorderRadius.circular(4),
|
|
|
|
),
|
|
|
|
child: Text(
|
|
|
|
seenByText,
|
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
style: TextStyle(
|
|
|
|
color:
|
|
|
|
Theme.of(context).primaryColor,
|
|
|
|
),
|
2020-05-09 07:30:03 +00:00
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
),
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
left: 8,
|
|
|
|
right: 8,
|
|
|
|
bottom: 8,
|
|
|
|
),
|
|
|
|
)
|
2020-09-19 17:21:33 +00:00
|
|
|
: AutoScrollTag(
|
|
|
|
key: ValueKey(i - 1),
|
|
|
|
index: i - 1,
|
|
|
|
controller: _scrollController,
|
|
|
|
child: Message(filteredEvents[i - 1],
|
|
|
|
onAvatarTab: (Event event) {
|
|
|
|
sendController.text +=
|
|
|
|
' ${event.senderId}';
|
|
|
|
},
|
|
|
|
onSelect: (Event event) {
|
|
|
|
if (!event.redacted) {
|
|
|
|
if (selectedEvents
|
|
|
|
.contains(event)) {
|
|
|
|
setState(
|
|
|
|
() => selectedEvents
|
|
|
|
.remove(event),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
setState(
|
|
|
|
() =>
|
|
|
|
selectedEvents.add(event),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
selectedEvents.sort(
|
|
|
|
(a, b) => a.originServerTs
|
|
|
|
.compareTo(
|
|
|
|
b.originServerTs),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
scrollToEventId: (String eventId) =>
|
|
|
|
_scrollToEventId(eventId,
|
|
|
|
context: context),
|
|
|
|
longPressSelect:
|
|
|
|
selectedEvents.isEmpty,
|
|
|
|
selected: selectedEvents
|
|
|
|
.contains(filteredEvents[i - 1]),
|
|
|
|
timeline: timeline,
|
|
|
|
nextEvent: i >= 2
|
|
|
|
? filteredEvents[i - 2]
|
|
|
|
: null),
|
|
|
|
);
|
2020-06-18 11:39:24 +00:00
|
|
|
});
|
|
|
|
},
|
2020-02-14 13:34:28 +00:00
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
),
|
|
|
|
AnimatedContainer(
|
|
|
|
duration: Duration(milliseconds: 300),
|
2020-09-20 18:13:42 +00:00
|
|
|
height: (editEvent == null &&
|
|
|
|
replyEvent == null &&
|
|
|
|
selectedEvents.length == 1)
|
|
|
|
? 56
|
|
|
|
: 0,
|
|
|
|
child: Material(
|
|
|
|
color: Theme.of(context).secondaryHeaderColor,
|
|
|
|
child: Builder(builder: (context) {
|
|
|
|
if (!(editEvent == null &&
|
|
|
|
replyEvent == null &&
|
|
|
|
selectedEvents.length == 1)) {
|
|
|
|
return Container();
|
|
|
|
}
|
|
|
|
var emojis = List<String>.from(AppEmojis.emojis);
|
|
|
|
final allReactionEvents = selectedEvents.first
|
|
|
|
.aggregatedEvents(timeline, RelationshipTypes.Reaction)
|
|
|
|
?.where((event) =>
|
|
|
|
event.senderId == event.room.client.userID &&
|
|
|
|
event.type == 'm.reaction');
|
|
|
|
|
|
|
|
allReactionEvents.forEach((event) {
|
|
|
|
try {
|
|
|
|
emojis.remove(event.content['m.relates_to']['key']);
|
|
|
|
} catch (_) {}
|
|
|
|
});
|
|
|
|
return ListView.builder(
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
itemCount: emojis.length,
|
|
|
|
itemBuilder: (c, i) => InkWell(
|
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
|
onTap: () {
|
|
|
|
SimpleDialogs(context).tryRequestWithLoadingDialog(
|
|
|
|
room.sendReaction(
|
|
|
|
selectedEvents.first.eventId,
|
|
|
|
emojis[i],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
setState(() => selectedEvents.clear());
|
|
|
|
},
|
|
|
|
child: Container(
|
|
|
|
width: 56,
|
|
|
|
height: 56,
|
|
|
|
alignment: Alignment.center,
|
|
|
|
child: Text(
|
|
|
|
emojis[i],
|
|
|
|
style: TextStyle(fontSize: 30),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
AnimatedContainer(
|
|
|
|
duration: Duration(milliseconds: 300),
|
2020-08-12 09:30:31 +00:00
|
|
|
height: editEvent != null || replyEvent != null ? 56 : 0,
|
2020-06-18 11:39:24 +00:00
|
|
|
child: Material(
|
2020-04-02 12:16:45 +00:00
|
|
|
color: Theme.of(context).secondaryHeaderColor,
|
2020-06-18 11:39:24 +00:00
|
|
|
child: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.close),
|
2020-08-12 09:30:31 +00:00
|
|
|
onPressed: () => setState(() {
|
|
|
|
replyEvent = null;
|
|
|
|
editEvent = null;
|
|
|
|
}),
|
2020-06-18 11:39:24 +00:00
|
|
|
),
|
|
|
|
Expanded(
|
2020-08-12 09:30:31 +00:00
|
|
|
child: replyEvent != null
|
|
|
|
? ReplyContent(replyEvent, timeline: timeline)
|
|
|
|
: _EditContent(
|
|
|
|
editEvent?.getDisplayEvent(timeline)),
|
2020-06-18 11:39:24 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2020-04-02 12:16:45 +00:00
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
),
|
|
|
|
Divider(
|
|
|
|
height: 1,
|
|
|
|
color: Theme.of(context).secondaryHeaderColor,
|
|
|
|
thickness: 1,
|
|
|
|
),
|
|
|
|
room.canSendDefaultMessages && room.membership == Membership.join
|
|
|
|
? Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color:
|
|
|
|
Theme.of(context).backgroundColor.withOpacity(0.8),
|
|
|
|
),
|
|
|
|
child: Row(
|
2020-06-24 07:42:28 +00:00
|
|
|
crossAxisAlignment: CrossAxisAlignment.end,
|
2020-06-18 11:39:24 +00:00
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: selectMode
|
|
|
|
? <Widget>[
|
|
|
|
Container(
|
|
|
|
height: 56,
|
|
|
|
child: FlatButton(
|
|
|
|
onPressed: () =>
|
|
|
|
forwardEventsAction(context),
|
|
|
|
child: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Icon(Icons.keyboard_arrow_left),
|
|
|
|
Text(L10n.of(context).forward),
|
|
|
|
],
|
2020-02-14 13:34:28 +00:00
|
|
|
),
|
2020-01-27 09:14:38 +00:00
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
),
|
|
|
|
selectedEvents.length == 1
|
2020-08-12 09:30:31 +00:00
|
|
|
? selectedEvents.first
|
|
|
|
.getDisplayEvent(timeline)
|
|
|
|
.status >
|
|
|
|
0
|
2020-06-18 11:39:24 +00:00
|
|
|
? Container(
|
|
|
|
height: 56,
|
|
|
|
child: FlatButton(
|
|
|
|
onPressed: () => replyAction(),
|
|
|
|
child: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Text(L10n.of(context).reply),
|
|
|
|
Icon(Icons
|
|
|
|
.keyboard_arrow_right),
|
|
|
|
],
|
2020-02-14 13:34:28 +00:00
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
: Container(
|
|
|
|
height: 56,
|
|
|
|
child: FlatButton(
|
|
|
|
onPressed: () =>
|
2020-08-12 09:30:31 +00:00
|
|
|
sendAgainAction(timeline),
|
2020-06-18 11:39:24 +00:00
|
|
|
child: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Text(L10n.of(context)
|
|
|
|
.tryToSendAgain),
|
|
|
|
SizedBox(width: 4),
|
|
|
|
Icon(Icons.send, size: 16),
|
|
|
|
],
|
2020-02-14 13:34:28 +00:00
|
|
|
),
|
2020-02-09 14:15:29 +00:00
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
)
|
|
|
|
: Container(),
|
|
|
|
]
|
|
|
|
: <Widget>[
|
2020-06-20 09:32:49 +00:00
|
|
|
if (inputText.isEmpty)
|
2020-06-24 07:42:28 +00:00
|
|
|
Container(
|
|
|
|
height: 56,
|
|
|
|
alignment: Alignment.center,
|
|
|
|
child: PopupMenuButton<String>(
|
|
|
|
icon: Icon(Icons.add),
|
|
|
|
onSelected: (String choice) async {
|
|
|
|
if (choice == 'file') {
|
|
|
|
sendFileAction(context);
|
|
|
|
} else if (choice == 'image') {
|
|
|
|
sendImageAction(context);
|
|
|
|
}
|
|
|
|
if (choice == 'camera') {
|
|
|
|
openCameraAction(context);
|
|
|
|
}
|
|
|
|
if (choice == 'voice') {
|
|
|
|
voiceMessageAction(context);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
itemBuilder: (BuildContext context) =>
|
|
|
|
<PopupMenuEntry<String>>[
|
2020-06-20 09:32:49 +00:00
|
|
|
PopupMenuItem<String>(
|
2020-06-24 07:42:28 +00:00
|
|
|
value: 'file',
|
2020-06-20 09:32:49 +00:00
|
|
|
child: ListTile(
|
|
|
|
leading: CircleAvatar(
|
2020-06-24 07:42:28 +00:00
|
|
|
backgroundColor: Colors.green,
|
2020-06-20 09:32:49 +00:00
|
|
|
foregroundColor: Colors.white,
|
2020-06-24 07:42:28 +00:00
|
|
|
child: Icon(Icons.attachment),
|
2020-06-20 09:32:49 +00:00
|
|
|
),
|
2020-06-24 07:42:28 +00:00
|
|
|
title:
|
|
|
|
Text(L10n.of(context).sendFile),
|
2020-06-20 09:32:49 +00:00
|
|
|
contentPadding: EdgeInsets.all(0),
|
2020-02-22 07:44:50 +00:00
|
|
|
),
|
2020-02-22 08:03:44 +00:00
|
|
|
),
|
2020-06-20 09:32:49 +00:00
|
|
|
PopupMenuItem<String>(
|
2020-06-24 07:42:28 +00:00
|
|
|
value: 'image',
|
2020-06-20 09:32:49 +00:00
|
|
|
child: ListTile(
|
|
|
|
leading: CircleAvatar(
|
2020-06-24 07:42:28 +00:00
|
|
|
backgroundColor: Colors.blue,
|
2020-06-20 09:32:49 +00:00
|
|
|
foregroundColor: Colors.white,
|
2020-06-24 07:42:28 +00:00
|
|
|
child: Icon(Icons.image),
|
2020-06-20 09:32:49 +00:00
|
|
|
),
|
|
|
|
title: Text(
|
2020-06-24 07:42:28 +00:00
|
|
|
L10n.of(context).sendImage),
|
2020-06-20 09:32:49 +00:00
|
|
|
contentPadding: EdgeInsets.all(0),
|
2020-03-15 10:27:51 +00:00
|
|
|
),
|
|
|
|
),
|
2020-06-24 07:42:28 +00:00
|
|
|
if (!kIsWeb)
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
value: 'camera',
|
|
|
|
child: ListTile(
|
|
|
|
leading: CircleAvatar(
|
|
|
|
backgroundColor: Colors.purple,
|
|
|
|
foregroundColor: Colors.white,
|
|
|
|
child: Icon(Icons.camera_alt),
|
|
|
|
),
|
|
|
|
title: Text(
|
|
|
|
L10n.of(context).openCamera),
|
|
|
|
contentPadding: EdgeInsets.all(0),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
if (!kIsWeb)
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
value: 'voice',
|
|
|
|
child: ListTile(
|
|
|
|
leading: CircleAvatar(
|
|
|
|
backgroundColor: Colors.red,
|
|
|
|
foregroundColor: Colors.white,
|
|
|
|
child: Icon(Icons.mic),
|
|
|
|
),
|
|
|
|
title: Text(L10n.of(context)
|
|
|
|
.voiceMessage),
|
|
|
|
contentPadding: EdgeInsets.all(0),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2020-01-27 09:14:38 +00:00
|
|
|
),
|
2020-06-24 07:42:28 +00:00
|
|
|
Container(
|
|
|
|
height: 56,
|
|
|
|
alignment: Alignment.center,
|
|
|
|
child: EncryptionButton(room),
|
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
Expanded(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(
|
|
|
|
vertical: 4.0),
|
|
|
|
child: InputBar(
|
|
|
|
room: room,
|
|
|
|
minLines: 1,
|
|
|
|
maxLines: kIsWeb ? 1 : 8,
|
|
|
|
keyboardType: kIsWeb
|
|
|
|
? TextInputType.text
|
|
|
|
: TextInputType.multiline,
|
|
|
|
onSubmitted: (String text) {
|
|
|
|
send();
|
|
|
|
FocusScope.of(context)
|
|
|
|
.requestFocus(inputFocus);
|
|
|
|
},
|
|
|
|
focusNode: inputFocus,
|
|
|
|
controller: sendController,
|
|
|
|
decoration: InputDecoration(
|
|
|
|
hintText:
|
|
|
|
L10n.of(context).writeAMessage,
|
2020-06-24 07:42:28 +00:00
|
|
|
hintMaxLines: 1,
|
2020-06-18 11:39:24 +00:00
|
|
|
border: InputBorder.none,
|
|
|
|
),
|
|
|
|
onChanged: (String text) {
|
|
|
|
typingCoolDown?.cancel();
|
|
|
|
typingCoolDown =
|
|
|
|
Timer(Duration(seconds: 2), () {
|
|
|
|
typingCoolDown = null;
|
|
|
|
currentlyTyping = false;
|
|
|
|
room.sendTypingInfo(false);
|
|
|
|
});
|
|
|
|
typingTimeout ??=
|
|
|
|
Timer(Duration(seconds: 30), () {
|
|
|
|
typingTimeout = null;
|
|
|
|
currentlyTyping = false;
|
|
|
|
});
|
|
|
|
if (!currentlyTyping) {
|
|
|
|
currentlyTyping = true;
|
|
|
|
room.sendTypingInfo(true,
|
|
|
|
timeout: Duration(seconds: 30)
|
|
|
|
.inMilliseconds);
|
|
|
|
}
|
|
|
|
setState(() => inputText = text);
|
|
|
|
},
|
2020-03-15 10:27:51 +00:00
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
if (!kIsWeb && inputText.isEmpty)
|
2020-06-24 07:42:28 +00:00
|
|
|
Container(
|
|
|
|
height: 56,
|
|
|
|
alignment: Alignment.center,
|
|
|
|
child: IconButton(
|
|
|
|
icon: Icon(Icons.mic),
|
|
|
|
onPressed: () =>
|
|
|
|
voiceMessageAction(context),
|
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
),
|
|
|
|
if (kIsWeb || inputText.isNotEmpty)
|
2020-06-24 07:42:28 +00:00
|
|
|
Container(
|
|
|
|
height: 56,
|
|
|
|
alignment: Alignment.center,
|
|
|
|
child: IconButton(
|
|
|
|
icon: Icon(Icons.send),
|
|
|
|
onPressed: () => send(),
|
|
|
|
),
|
2020-06-18 11:39:24 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Container(),
|
|
|
|
],
|
2020-02-14 13:34:28 +00:00
|
|
|
),
|
|
|
|
],
|
2020-01-01 18:10:13 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2020-08-12 09:30:31 +00:00
|
|
|
|
|
|
|
class _EditContent extends StatelessWidget {
|
|
|
|
final Event event;
|
|
|
|
|
|
|
|
_EditContent(this.event);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
if (event == null) {
|
|
|
|
return Container();
|
|
|
|
}
|
|
|
|
return Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Icon(
|
|
|
|
Icons.edit,
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
),
|
|
|
|
Container(width: 15.0),
|
|
|
|
Text(
|
|
|
|
event?.getLocalizedBody(
|
|
|
|
L10n.of(context),
|
|
|
|
withSenderNamePrefix: false,
|
|
|
|
hideReply: true,
|
|
|
|
) ??
|
|
|
|
'',
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
maxLines: 1,
|
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context).textTheme.bodyText2.color,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|