2020-01-05 12:27:03 +01:00
|
|
|
import 'dart:async';
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'dart:io';
|
2020-10-03 13:11:07 +02:00
|
|
|
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:flutter/scheduler.dart';
|
2020-02-09 15:15:29 +01:00
|
|
|
import 'package:flutter/services.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
|
|
|
|
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
2021-11-28 11:43:36 +01:00
|
|
|
import 'package:desktop_drop/desktop_drop.dart';
|
2022-02-15 09:25:13 +01:00
|
|
|
import 'package:device_info_plus/device_info_plus.dart';
|
2022-02-14 13:49:46 +01:00
|
|
|
import 'package:emoji_picker_flutter/emoji_picker_flutter.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:file_picker_cross/file_picker_cross.dart';
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:image_picker/image_picker.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
2021-07-24 10:35:18 +02:00
|
|
|
import 'package:record/record.dart';
|
2020-09-19 19:21:33 +02:00
|
|
|
import 'package:scroll_to_index/scroll_to_index.dart';
|
2021-05-23 13:11:55 +02:00
|
|
|
import 'package:vrouter/vrouter.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2021-11-09 21:32:16 +01:00
|
|
|
import 'package:fluffychat/pages/chat/chat_view.dart';
|
2021-11-13 13:06:36 +01:00
|
|
|
import 'package:fluffychat/pages/chat/event_info_dialog.dart';
|
2021-11-09 21:32:16 +01:00
|
|
|
import 'package:fluffychat/pages/chat/recording_dialog.dart';
|
2021-12-27 15:35:25 +01:00
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/event_extension.dart';
|
2022-01-24 15:35:59 +01:00
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/ios_badge_client_extension.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/matrix_locals.dart';
|
2022-02-15 09:25:13 +01:00
|
|
|
import 'package:fluffychat/utils/platform_infos.dart';
|
|
|
|
import 'package:fluffychat/utils/voip/callkeep_manager.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
2021-11-09 21:32:16 +01:00
|
|
|
import '../../utils/account_bundles.dart';
|
|
|
|
import '../../utils/localized_exception_extension.dart';
|
|
|
|
import '../../utils/matrix_sdk_extensions.dart/filtered_timeline_extension.dart';
|
|
|
|
import '../../utils/matrix_sdk_extensions.dart/matrix_file_extension.dart';
|
2021-11-28 11:43:36 +01:00
|
|
|
import 'send_file_dialog.dart';
|
|
|
|
import 'send_location_dialog.dart';
|
2021-07-23 14:24:52 +02:00
|
|
|
import 'sticker_picker_dialog.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2021-01-16 12:46:38 +01:00
|
|
|
class Chat extends StatefulWidget {
|
2022-01-29 12:35:03 +01:00
|
|
|
final Widget? sideView;
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
const Chat({Key? key, this.sideView}) : super(key: key);
|
2020-01-23 12:11:57 +01:00
|
|
|
|
2020-01-01 19:10:13 +01:00
|
|
|
@override
|
2021-04-15 13:03:14 +02:00
|
|
|
ChatController createState() => ChatController();
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
class ChatController extends State<Chat> {
|
2022-01-29 12:35:03 +01:00
|
|
|
Room? room;
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
Client? sendingClient;
|
2021-09-19 13:48:23 +02:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
Timeline? timeline;
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
MatrixState? matrix;
|
2020-01-08 14:19:15 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
String? get roomId => context.vRouter.pathParameters['roomid'];
|
2021-05-23 13:11:55 +02:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
final AutoScrollController scrollController = AutoScrollController();
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2020-01-24 11:51:23 +01:00
|
|
|
FocusNode inputFocus = FocusNode();
|
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
Timer? typingCoolDown;
|
|
|
|
Timer? typingTimeout;
|
2020-01-05 12:27:03 +01:00
|
|
|
bool currentlyTyping = false;
|
2021-11-28 11:43:36 +01:00
|
|
|
bool dragging = false;
|
|
|
|
|
|
|
|
void onDragEntered(_) => setState(() => dragging = true);
|
2022-02-02 14:31:15 +01:00
|
|
|
|
2021-11-28 11:43:36 +01:00
|
|
|
void onDragExited(_) => setState(() => dragging = false);
|
2022-02-02 14:31:15 +01:00
|
|
|
|
2021-11-28 11:43:36 +01:00
|
|
|
void onDragDone(DropDoneDetails details) async {
|
|
|
|
setState(() => dragging = false);
|
2022-07-10 09:26:16 +02:00
|
|
|
final bytesList = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Future.wait(
|
|
|
|
details.files.map(
|
|
|
|
(xfile) => xfile.readAsBytes(),
|
2021-11-28 11:43:36 +01:00
|
|
|
),
|
2022-07-10 09:26:16 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
if (bytesList.error != null) return;
|
|
|
|
|
|
|
|
final matrixFiles = <MatrixFile>[];
|
|
|
|
for (var i = 0; i < bytesList.result!.length; i++) {
|
|
|
|
matrixFiles.add(MatrixFile(
|
|
|
|
bytes: bytesList.result![i],
|
|
|
|
name: details.files[i].name,
|
|
|
|
).detectFileType);
|
2021-11-28 11:43:36 +01:00
|
|
|
}
|
2022-07-10 09:26:16 +02:00
|
|
|
|
|
|
|
await showDialog(
|
|
|
|
context: context,
|
|
|
|
useRootNavigator: false,
|
|
|
|
builder: (c) => SendFileDialog(
|
|
|
|
files: matrixFiles,
|
|
|
|
room: room!,
|
|
|
|
),
|
|
|
|
);
|
2021-11-28 11:43:36 +01:00
|
|
|
}
|
2020-01-05 12:27:03 +01:00
|
|
|
|
2021-12-27 15:35:25 +01:00
|
|
|
bool get canSaveSelectedEvent =>
|
|
|
|
selectedEvents.length == 1 &&
|
|
|
|
{
|
|
|
|
MessageTypes.Video,
|
|
|
|
MessageTypes.Image,
|
|
|
|
MessageTypes.Sticker,
|
|
|
|
MessageTypes.Audio,
|
|
|
|
MessageTypes.File,
|
|
|
|
}.contains(selectedEvents.single.messageType);
|
|
|
|
|
|
|
|
void saveSelectedEvent() => selectedEvents.single.saveFile(context);
|
|
|
|
|
2020-04-02 13:14:39 +02:00
|
|
|
List<Event> selectedEvents = [];
|
2020-02-09 15:15:29 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
late List<Event> filteredEvents;
|
2020-12-23 11:23:19 +01:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
final Set<String> unfolded = {};
|
2020-11-22 19:34:19 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
Event? replyEvent;
|
2020-02-09 15:15:29 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
Event? editEvent;
|
2020-08-12 11:30:31 +02:00
|
|
|
|
2020-02-09 16:58:49 +01:00
|
|
|
bool showScrollDownButton = false;
|
|
|
|
|
2020-02-09 15:15:29 +01:00
|
|
|
bool get selectMode => selectedEvents.isNotEmpty;
|
|
|
|
|
2020-02-14 14:34:28 +01:00
|
|
|
final int _loadHistoryCount = 100;
|
|
|
|
|
2020-05-13 15:58:59 +02:00
|
|
|
String inputText = '';
|
2020-02-22 09:03:44 +01:00
|
|
|
|
2020-10-23 17:45:22 +02:00
|
|
|
String pendingText = '';
|
|
|
|
|
2021-09-06 20:16:01 +02:00
|
|
|
bool get canLoadMore =>
|
2022-01-29 12:35:03 +01:00
|
|
|
timeline!.events.isEmpty ||
|
|
|
|
timeline!.events.last.type != EventTypes.RoomCreate;
|
2020-05-09 09:30:03 +02:00
|
|
|
|
2021-05-20 13:46:52 +02:00
|
|
|
bool showEmojiPicker = false;
|
|
|
|
|
2022-02-14 13:49:46 +01:00
|
|
|
EmojiPickerType emojiPickerType = EmojiPickerType.keyboard;
|
|
|
|
|
2020-02-14 14:34:28 +01:00
|
|
|
void requestHistory() async {
|
2021-04-15 13:03:14 +02:00
|
|
|
if (canLoadMore) {
|
2020-12-27 11:59:03 +01:00
|
|
|
try {
|
2022-01-29 12:35:03 +01:00
|
|
|
await timeline!.requestHistory(historyCount: _loadHistoryCount);
|
2020-12-27 11:59:03 +01:00
|
|
|
} catch (err) {
|
2021-06-06 17:56:01 +02:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
|
|
SnackBar(
|
|
|
|
content: Text(
|
2022-01-29 12:35:03 +01:00
|
|
|
(err).toLocalizedString(context),
|
2021-06-06 17:56:01 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2021-09-01 10:31:19 +02:00
|
|
|
rethrow;
|
2020-12-27 11:59:03 +01:00
|
|
|
}
|
2020-09-19 19:21:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _updateScrollController() {
|
2020-11-16 11:31:31 +01:00
|
|
|
if (!mounted) {
|
|
|
|
return;
|
|
|
|
}
|
2022-02-17 21:12:47 +01:00
|
|
|
setReadMarker();
|
2022-03-20 15:46:03 +01:00
|
|
|
if (!scrollController.hasClients) return;
|
2021-04-15 13:03:14 +02:00
|
|
|
if (scrollController.position.pixels ==
|
|
|
|
scrollController.position.maxScrollExtent &&
|
2022-01-29 12:35:03 +01:00
|
|
|
timeline!.events.isNotEmpty &&
|
|
|
|
timeline!.events[timeline!.events.length - 1].type !=
|
2020-09-19 19:21:33 +02:00
|
|
|
EventTypes.RoomCreate) {
|
|
|
|
requestHistory();
|
|
|
|
}
|
2021-04-15 13:03:14 +02:00
|
|
|
if (scrollController.position.pixels > 0 && showScrollDownButton == false) {
|
2020-09-19 19:21:33 +02:00
|
|
|
setState(() => showScrollDownButton = true);
|
2021-04-15 13:03:14 +02:00
|
|
|
} else if (scrollController.position.pixels == 0 &&
|
2020-09-19 19:21:33 +02:00
|
|
|
showScrollDownButton == true) {
|
|
|
|
setState(() => showScrollDownButton = false);
|
2020-02-14 14:37:31 +01:00
|
|
|
}
|
2020-02-14 14:34:28 +01:00
|
|
|
}
|
|
|
|
|
2020-01-01 19:10:13 +01:00
|
|
|
@override
|
|
|
|
void initState() {
|
2021-04-15 13:03:14 +02:00
|
|
|
scrollController.addListener(_updateScrollController);
|
2022-02-14 13:49:46 +01:00
|
|
|
inputFocus.addListener(_inputFocusListener);
|
2022-02-17 19:46:02 +01:00
|
|
|
final voipPlugin = Matrix.of(context).voipPlugin;
|
2022-02-15 09:25:13 +01:00
|
|
|
|
2022-02-17 19:46:02 +01:00
|
|
|
if (voipPlugin != null) {
|
2022-05-12 11:25:34 +02:00
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
2022-02-17 19:46:02 +01:00
|
|
|
CallKeepManager().setVoipPlugin(voipPlugin);
|
2022-02-15 09:25:13 +01:00
|
|
|
CallKeepManager().initialize().catchError((_) => true);
|
|
|
|
});
|
|
|
|
}
|
2020-01-01 19:10:13 +01:00
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
2020-01-05 12:27:03 +01:00
|
|
|
void updateView() {
|
2020-01-23 12:11:57 +01:00
|
|
|
if (!mounted) return;
|
2020-12-23 11:23:19 +01:00
|
|
|
setState(
|
|
|
|
() {
|
2022-01-29 12:35:03 +01:00
|
|
|
filteredEvents = timeline!.getFilteredEvents(unfolded: unfolded);
|
2020-12-23 11:23:19 +01:00
|
|
|
},
|
|
|
|
);
|
2020-01-05 12:27:03 +01:00
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void unfold(String eventId) {
|
2021-02-25 09:11:17 +01:00
|
|
|
var i = filteredEvents.indexWhere((e) => e.eventId == eventId);
|
|
|
|
setState(() {
|
|
|
|
while (i < filteredEvents.length - 1 && filteredEvents[i].isState) {
|
2021-04-15 13:03:14 +02:00
|
|
|
unfolded.add(filteredEvents[i].eventId);
|
2021-02-25 09:11:17 +01:00
|
|
|
i++;
|
|
|
|
}
|
2022-01-29 12:35:03 +01:00
|
|
|
filteredEvents = timeline!.getFilteredEvents(unfolded: unfolded);
|
2021-02-25 09:11:17 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
Future<bool> getTimeline() async {
|
2020-01-24 12:05:37 +01:00
|
|
|
if (timeline == null) {
|
2022-01-29 12:35:03 +01:00
|
|
|
timeline = await room!.getTimeline(onUpdate: updateView);
|
|
|
|
if (timeline!.events.isNotEmpty) {
|
|
|
|
if (room!.markedUnread) room!.markUnread(false);
|
2022-02-17 21:12:47 +01:00
|
|
|
setReadMarker();
|
2021-04-15 13:03:14 +02:00
|
|
|
}
|
2020-09-19 19:21:33 +02: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
|
2022-05-12 11:25:34 +02:00
|
|
|
SchedulerBinding.instance.addPostFrameCallback((_) async {
|
2020-11-16 11:31:31 +01:00
|
|
|
if (mounted) {
|
2021-05-23 13:11:55 +02:00
|
|
|
final event = VRouter.of(context).queryParameters['event'];
|
|
|
|
if (event != null) {
|
|
|
|
scrollToEventId(event);
|
2020-11-16 11:31:31 +01:00
|
|
|
}
|
|
|
|
_updateScrollController();
|
2020-09-19 19:21:33 +02:00
|
|
|
}
|
|
|
|
});
|
2020-01-24 12:05:37 +01:00
|
|
|
}
|
2022-01-29 12:35:03 +01:00
|
|
|
filteredEvents = timeline!.getFilteredEvents(unfolded: unfolded);
|
|
|
|
timeline!.requestKeys();
|
2022-02-17 21:12:47 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void>? _setReadMarkerFuture;
|
|
|
|
|
|
|
|
void setReadMarker([_]) {
|
|
|
|
if (_setReadMarkerFuture == null &&
|
|
|
|
(room!.hasNewMessages || room!.notificationCount > 0) &&
|
2021-05-15 11:55:04 +02:00
|
|
|
timeline != null &&
|
2022-01-29 12:35:03 +01:00
|
|
|
timeline!.events.isNotEmpty &&
|
2021-05-15 11:55:04 +02:00
|
|
|
Matrix.of(context).webHasFocus) {
|
2022-02-17 21:12:47 +01:00
|
|
|
Logs().v('Set read marker...');
|
2021-05-15 11:55:04 +02:00
|
|
|
// ignore: unawaited_futures
|
2022-02-17 21:12:47 +01:00
|
|
|
_setReadMarkerFuture = timeline!.setReadMarker().then((_) {
|
|
|
|
_setReadMarkerFuture = null;
|
|
|
|
});
|
2022-01-29 12:35:03 +01:00
|
|
|
room!.client.updateIosBadge();
|
2021-05-15 11:55:04 +02:00
|
|
|
}
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
2020-02-22 08:27:08 +01:00
|
|
|
timeline?.cancelSubscriptions();
|
2020-01-23 12:11:57 +01:00
|
|
|
timeline = null;
|
2022-02-14 13:49:46 +01:00
|
|
|
inputFocus.removeListener(_inputFocusListener);
|
2020-01-01 19:10:13 +01:00
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
2020-01-17 10:41:28 +01:00
|
|
|
TextEditingController sendController = TextEditingController();
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
void setSendingClient(Client? c) {
|
2021-09-21 09:13:02 +02:00
|
|
|
// first cancle typing with the old sending client
|
|
|
|
if (currentlyTyping) {
|
|
|
|
// no need to have the setting typing to false be blocking
|
|
|
|
typingCoolDown?.cancel();
|
|
|
|
typingCoolDown = null;
|
2022-01-29 12:35:03 +01:00
|
|
|
room!.setTyping(false);
|
2021-09-21 09:13:02 +02:00
|
|
|
currentlyTyping = false;
|
|
|
|
}
|
|
|
|
// then set the new sending client
|
|
|
|
setState(() => sendingClient = c);
|
|
|
|
}
|
2021-09-19 13:48:23 +02:00
|
|
|
|
|
|
|
void setActiveClient(Client c) => setState(() {
|
|
|
|
Matrix.of(context).setActiveClient(c);
|
|
|
|
});
|
|
|
|
|
2021-06-14 00:03:06 +02:00
|
|
|
Future<void> send() async {
|
2021-01-16 19:44:46 +01:00
|
|
|
if (sendController.text.trim().isEmpty) return;
|
2021-06-14 00:03:06 +02:00
|
|
|
var parseCommands = true;
|
|
|
|
|
|
|
|
final commandMatch = RegExp(r'^\/(\w+)').firstMatch(sendController.text);
|
|
|
|
if (commandMatch != null &&
|
2022-01-29 12:35:03 +01:00
|
|
|
!room!.client.commands.keys.contains(commandMatch[1]!.toLowerCase())) {
|
|
|
|
final l10n = L10n.of(context)!;
|
2021-06-14 00:03:06 +02:00
|
|
|
final dialogResult = await showOkCancelAlertDialog(
|
|
|
|
context: context,
|
|
|
|
useRootNavigator: false,
|
|
|
|
title: l10n.commandInvalid,
|
2022-01-29 12:35:03 +01:00
|
|
|
message: l10n.commandMissing(commandMatch[0]!),
|
2021-06-14 00:03:06 +02:00
|
|
|
okLabel: l10n.sendAsText,
|
|
|
|
cancelLabel: l10n.cancel,
|
|
|
|
);
|
2022-01-29 12:35:03 +01:00
|
|
|
if (dialogResult == OkCancelResult.cancel) return;
|
2021-06-14 00:03:06 +02:00
|
|
|
parseCommands = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ignore: unawaited_futures
|
2022-01-29 12:35:03 +01:00
|
|
|
room!.sendTextEvent(sendController.text,
|
2021-06-14 00:03:06 +02:00
|
|
|
inReplyTo: replyEvent,
|
|
|
|
editEventId: editEvent?.eventId,
|
|
|
|
parseCommands: parseCommands);
|
2021-05-13 12:48:05 +02:00
|
|
|
sendController.value = TextEditingValue(
|
|
|
|
text: pendingText,
|
2021-10-14 18:09:30 +02:00
|
|
|
selection: const TextSelection.collapsed(offset: 0),
|
2021-05-13 12:48:05 +02:00
|
|
|
);
|
2020-02-23 08:52:28 +01:00
|
|
|
|
2020-08-12 11:30:31 +02:00
|
|
|
setState(() {
|
2020-10-23 17:45:22 +02:00
|
|
|
inputText = pendingText;
|
2020-08-12 11:30:31 +02:00
|
|
|
replyEvent = null;
|
|
|
|
editEvent = null;
|
2020-10-23 17:45:22 +02:00
|
|
|
pendingText = '';
|
2020-08-12 11:30:31 +02:00
|
|
|
});
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void sendFileAction() async {
|
2022-07-10 09:26:16 +02:00
|
|
|
final result = await FilePickerCross.importMultipleFromStorage(
|
|
|
|
type: FileTypeCross.any,
|
|
|
|
);
|
|
|
|
if (result.isEmpty) return;
|
2020-09-04 12:56:25 +02:00
|
|
|
await showDialog(
|
2020-10-04 17:01:54 +02:00
|
|
|
context: context,
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-01-18 10:43:00 +01:00
|
|
|
builder: (c) => SendFileDialog(
|
2022-07-10 09:26:16 +02:00
|
|
|
files: result
|
|
|
|
.map((xfile) => MatrixFile(
|
|
|
|
bytes: xfile.toUint8List(),
|
|
|
|
name: xfile.fileName!,
|
|
|
|
).detectFileType)
|
|
|
|
.toList(),
|
2022-01-29 12:35:03 +01:00
|
|
|
room: room!,
|
2020-10-04 17:01:54 +02:00
|
|
|
),
|
|
|
|
);
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void sendImageAction() async {
|
2022-07-10 09:26:16 +02:00
|
|
|
final result = await FilePickerCross.importMultipleFromStorage(
|
|
|
|
type: FileTypeCross.image,
|
|
|
|
);
|
|
|
|
if (result.isEmpty) return;
|
|
|
|
|
2020-09-04 12:56:25 +02:00
|
|
|
await showDialog(
|
2020-10-04 17:01:54 +02:00
|
|
|
context: context,
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-01-18 10:43:00 +01:00
|
|
|
builder: (c) => SendFileDialog(
|
2022-07-10 09:26:16 +02:00
|
|
|
files: result
|
|
|
|
.map((xfile) => MatrixFile(
|
|
|
|
bytes: xfile.toUint8List(),
|
|
|
|
name: xfile.fileName!,
|
|
|
|
).detectFileType)
|
|
|
|
.toList(),
|
2022-01-29 12:35:03 +01:00
|
|
|
room: room!,
|
2020-10-04 17:01:54 +02:00
|
|
|
),
|
|
|
|
);
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void openCameraAction() async {
|
2021-07-18 12:17:56 +02:00
|
|
|
// Make sure the textfield is unfocused before opening the camera
|
|
|
|
FocusScope.of(context).requestFocus(FocusNode());
|
2021-08-10 14:01:15 +02:00
|
|
|
final file = await ImagePicker().pickImage(source: ImageSource.camera);
|
2020-01-01 19:10:13 +01:00
|
|
|
if (file == null) return;
|
2020-10-04 17:01:54 +02:00
|
|
|
final bytes = await file.readAsBytes();
|
2020-09-04 12:56:25 +02:00
|
|
|
await showDialog(
|
2020-10-04 17:01:54 +02:00
|
|
|
context: context,
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-01-18 10:43:00 +01:00
|
|
|
builder: (c) => SendFileDialog(
|
2022-07-10 09:26:16 +02:00
|
|
|
files: [
|
|
|
|
MatrixImageFile(
|
|
|
|
bytes: bytes,
|
|
|
|
name: file.path,
|
|
|
|
)
|
|
|
|
],
|
2022-01-29 12:35:03 +01:00
|
|
|
room: room!,
|
2020-10-04 17:01:54 +02:00
|
|
|
),
|
|
|
|
);
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|
|
|
|
|
2021-12-22 09:45:36 +01:00
|
|
|
void openVideoCameraAction() async {
|
|
|
|
// Make sure the textfield is unfocused before opening the camera
|
|
|
|
FocusScope.of(context).requestFocus(FocusNode());
|
|
|
|
final file = await ImagePicker().pickVideo(source: ImageSource.camera);
|
|
|
|
if (file == null) return;
|
|
|
|
final bytes = await file.readAsBytes();
|
|
|
|
await showDialog(
|
|
|
|
context: context,
|
|
|
|
useRootNavigator: false,
|
|
|
|
builder: (c) => SendFileDialog(
|
2022-07-10 09:26:16 +02:00
|
|
|
files: [
|
|
|
|
MatrixVideoFile(
|
|
|
|
bytes: bytes,
|
|
|
|
name: file.path,
|
|
|
|
)
|
|
|
|
],
|
2022-01-29 12:35:03 +01:00
|
|
|
room: room!,
|
2021-12-22 09:45:36 +01:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-07-23 14:24:52 +02:00
|
|
|
void sendStickerAction() async {
|
|
|
|
final sticker = await showModalBottomSheet<ImagePackImageContent>(
|
|
|
|
context: context,
|
|
|
|
useRootNavigator: false,
|
2022-01-29 12:35:03 +01:00
|
|
|
builder: (c) => StickerPickerDialog(room: room!),
|
2021-07-23 14:24:52 +02:00
|
|
|
);
|
|
|
|
if (sticker == null) return;
|
|
|
|
final eventContent = <String, dynamic>{
|
|
|
|
'body': sticker.body,
|
|
|
|
if (sticker.info != null) 'info': sticker.info,
|
|
|
|
'url': sticker.url.toString(),
|
|
|
|
};
|
|
|
|
// send the sticker
|
2022-05-27 15:16:44 +02:00
|
|
|
await room!.sendEvent(
|
|
|
|
eventContent,
|
|
|
|
type: EventTypes.Sticker,
|
2021-07-23 14:24:52 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void voiceMessageAction() async {
|
2022-06-20 15:35:22 +02:00
|
|
|
if (PlatformInfos.isAndroid) {
|
|
|
|
final info = await DeviceInfoPlugin().androidInfo;
|
|
|
|
if ((info.version.sdkInt ?? 16) < 19) {
|
|
|
|
showOkAlertDialog(
|
|
|
|
context: context,
|
|
|
|
title: L10n.of(context)!.unsupportedAndroidVersion,
|
|
|
|
message: L10n.of(context)!.unsupportedAndroidVersionLong,
|
|
|
|
okLabel: L10n.of(context)!.close,
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-24 10:35:18 +02:00
|
|
|
if (await Record().hasPermission() == false) return;
|
2021-10-30 10:39:00 +02:00
|
|
|
final result = await showDialog<RecordingResult>(
|
2021-01-23 11:17:34 +01:00
|
|
|
context: context,
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-10-14 18:09:30 +02:00
|
|
|
builder: (c) => const RecordingDialog(),
|
2021-01-23 11:17:34 +01:00
|
|
|
);
|
2020-03-15 11:27:51 +01:00
|
|
|
if (result == null) return;
|
2021-10-30 10:39:00 +02:00
|
|
|
final audioFile = File(result.path);
|
2021-10-27 16:53:31 +02:00
|
|
|
final file = MatrixAudioFile(
|
|
|
|
bytes: audioFile.readAsBytesSync(),
|
|
|
|
name: audioFile.path,
|
|
|
|
);
|
2022-03-30 11:46:24 +02:00
|
|
|
await room!.sendFileEvent(
|
|
|
|
file,
|
|
|
|
inReplyTo: replyEvent,
|
|
|
|
extraContent: {
|
2021-10-27 16:53:31 +02:00
|
|
|
'info': {
|
|
|
|
...file.info,
|
2021-10-30 10:39:00 +02:00
|
|
|
'duration': result.duration,
|
2021-10-30 11:03:33 +02:00
|
|
|
},
|
|
|
|
'org.matrix.msc3245.voice': {},
|
2022-01-01 14:17:31 +01:00
|
|
|
'org.matrix.msc1767.audio': {
|
|
|
|
'duration': result.duration,
|
|
|
|
'waveform': result.waveform,
|
|
|
|
},
|
2022-03-30 11:46:24 +02:00
|
|
|
},
|
2020-09-20 10:35:19 +02:00
|
|
|
);
|
2021-08-12 09:59:42 +02:00
|
|
|
setState(() {
|
|
|
|
replyEvent = null;
|
|
|
|
});
|
2020-03-15 11:27:51 +01:00
|
|
|
}
|
|
|
|
|
2022-02-14 13:49:46 +01:00
|
|
|
void emojiPickerAction() {
|
2022-02-17 09:18:50 +01:00
|
|
|
if (showEmojiPicker) {
|
|
|
|
inputFocus.requestFocus();
|
|
|
|
} else {
|
|
|
|
inputFocus.unfocus();
|
|
|
|
}
|
2022-02-14 13:49:46 +01:00
|
|
|
emojiPickerType = EmojiPickerType.keyboard;
|
|
|
|
setState(() => showEmojiPicker = !showEmojiPicker);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _inputFocusListener() {
|
2022-02-17 09:18:50 +01:00
|
|
|
if (showEmojiPicker && inputFocus.hasFocus) {
|
|
|
|
emojiPickerType = EmojiPickerType.keyboard;
|
|
|
|
setState(() => showEmojiPicker = false);
|
2022-02-14 13:49:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-01 09:53:43 +02:00
|
|
|
void sendLocationAction() async {
|
|
|
|
await showDialog(
|
|
|
|
context: context,
|
|
|
|
useRootNavigator: false,
|
2022-01-29 12:35:03 +01:00
|
|
|
builder: (c) => SendLocationDialog(room: room!),
|
2021-08-01 09:53:43 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
String _getSelectedEventString() {
|
2020-05-13 15:58:59 +02:00
|
|
|
var copyString = '';
|
2020-04-02 13:14:39 +02:00
|
|
|
if (selectedEvents.length == 1) {
|
2020-10-03 13:11:07 +02:00
|
|
|
return selectedEvents.first
|
2022-01-29 12:35:03 +01:00
|
|
|
.getDisplayEvent(timeline!)
|
2022-05-30 13:44:05 +02:00
|
|
|
.calcLocalizedBodyFallback(MatrixLocals(L10n.of(context)!));
|
2020-04-02 13:14:39 +02:00
|
|
|
}
|
2021-04-14 10:37:15 +02:00
|
|
|
for (final event in selectedEvents) {
|
2020-05-13 15:58:59 +02:00
|
|
|
if (copyString.isNotEmpty) copyString += '\n\n';
|
2022-05-30 13:44:05 +02:00
|
|
|
copyString += event.getDisplayEvent(timeline!).calcLocalizedBodyFallback(
|
2022-01-29 12:35:03 +01:00
|
|
|
MatrixLocals(L10n.of(context)!),
|
2020-10-03 13:11:07 +02:00
|
|
|
withSenderNamePrefix: true);
|
2020-02-09 15:15:29 +01:00
|
|
|
}
|
|
|
|
return copyString;
|
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void copyEventsAction() {
|
|
|
|
Clipboard.setData(ClipboardData(text: _getSelectedEventString()));
|
2021-11-13 10:20:09 +01:00
|
|
|
setState(() {
|
|
|
|
showEmojiPicker = false;
|
|
|
|
selectedEvents.clear();
|
|
|
|
});
|
2020-02-09 15:15:29 +01:00
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void reportEventAction() async {
|
2021-02-01 21:26:02 +01:00
|
|
|
final event = selectedEvents.single;
|
|
|
|
final score = await showConfirmationDialog<int>(
|
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
title: L10n.of(context)!.reportMessage,
|
|
|
|
message: L10n.of(context)!.howOffensiveIsThisContent,
|
|
|
|
cancelLabel: L10n.of(context)!.cancel,
|
|
|
|
okLabel: L10n.of(context)!.ok,
|
2021-02-01 21:26:02 +01:00
|
|
|
actions: [
|
|
|
|
AlertDialogAction(
|
2021-02-01 22:00:41 +01:00
|
|
|
key: -100,
|
2022-01-29 12:35:03 +01:00
|
|
|
label: L10n.of(context)!.extremeOffensive,
|
2021-02-01 21:26:02 +01:00
|
|
|
),
|
|
|
|
AlertDialogAction(
|
2021-02-01 22:00:41 +01:00
|
|
|
key: -50,
|
2022-01-29 12:35:03 +01:00
|
|
|
label: L10n.of(context)!.offensive,
|
2021-02-01 21:26:02 +01:00
|
|
|
),
|
|
|
|
AlertDialogAction(
|
|
|
|
key: 0,
|
2022-01-29 12:35:03 +01:00
|
|
|
label: L10n.of(context)!.inoffensive,
|
2021-02-01 21:26:02 +01:00
|
|
|
),
|
|
|
|
]);
|
|
|
|
if (score == null) return;
|
|
|
|
final reason = await showTextInputDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-02-01 21:26:02 +01:00
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
title: L10n.of(context)!.whyDoYouWantToReportThis,
|
|
|
|
okLabel: L10n.of(context)!.ok,
|
|
|
|
cancelLabel: L10n.of(context)!.cancel,
|
|
|
|
textFields: [DialogTextField(hintText: L10n.of(context)!.reason)]);
|
2021-02-01 21:26:02 +01:00
|
|
|
if (reason == null || reason.single.isEmpty) return;
|
|
|
|
final result = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2021-05-20 13:59:55 +02:00
|
|
|
future: () => Matrix.of(context).client.reportContent(
|
2022-01-29 12:35:03 +01:00
|
|
|
event.roomId!,
|
2021-02-01 21:26:02 +01:00
|
|
|
event.eventId,
|
2021-08-18 17:24:59 +02:00
|
|
|
reason: reason.single,
|
|
|
|
score: score,
|
2021-02-01 21:26:02 +01:00
|
|
|
),
|
|
|
|
);
|
|
|
|
if (result.error != null) return;
|
2021-11-13 10:20:09 +01:00
|
|
|
setState(() {
|
|
|
|
showEmojiPicker = false;
|
|
|
|
selectedEvents.clear();
|
|
|
|
});
|
2021-05-23 13:11:55 +02:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
2022-01-29 12:35:03 +01:00
|
|
|
SnackBar(content: Text(L10n.of(context)!.contentHasBeenReported)));
|
2021-02-01 21:26:02 +01:00
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void redactEventsAction() async {
|
2021-04-14 10:37:15 +02:00
|
|
|
final confirmed = await showOkCancelAlertDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2020-11-14 10:08:13 +01:00
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
title: L10n.of(context)!.messageWillBeRemovedWarning,
|
|
|
|
okLabel: L10n.of(context)!.remove,
|
|
|
|
cancelLabel: L10n.of(context)!.cancel,
|
2020-11-14 10:08:13 +01:00
|
|
|
) ==
|
|
|
|
OkCancelResult.ok;
|
2020-02-09 15:15:29 +01:00
|
|
|
if (!confirmed) return;
|
2021-04-14 10:37:15 +02:00
|
|
|
for (final event in selectedEvents) {
|
2020-12-25 09:58:34 +01:00
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2021-09-19 13:48:23 +02:00
|
|
|
future: () async {
|
2021-10-25 10:46:58 +02:00
|
|
|
if (event.status.isSent) {
|
2021-09-19 13:48:23 +02:00
|
|
|
if (event.canRedact) {
|
|
|
|
await event.redactEvent();
|
|
|
|
} else {
|
|
|
|
final client = currentRoomBundle.firstWhere(
|
2022-01-29 12:35:03 +01:00
|
|
|
(cl) => selectedEvents.first.senderId == cl!.userID,
|
2021-09-19 13:48:23 +02:00
|
|
|
orElse: () => null);
|
|
|
|
if (client == null) {
|
|
|
|
return;
|
|
|
|
}
|
2022-01-29 12:35:03 +01:00
|
|
|
final room = client.getRoomById(roomId!)!;
|
2021-09-19 13:48:23 +02:00
|
|
|
await Event.fromJson(event.toJson(), room).redactEvent();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
await event.remove();
|
|
|
|
}
|
|
|
|
});
|
2020-02-09 15:15:29 +01:00
|
|
|
}
|
2021-11-13 10:20:09 +01:00
|
|
|
setState(() {
|
|
|
|
showEmojiPicker = false;
|
|
|
|
selectedEvents.clear();
|
|
|
|
});
|
2020-02-09 15:15:29 +01:00
|
|
|
}
|
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
List<Client?> get currentRoomBundle {
|
|
|
|
final clients = matrix!.currentBundle!;
|
|
|
|
clients.removeWhere((c) => c!.getRoomById(roomId!) == null);
|
2021-09-19 13:48:23 +02:00
|
|
|
return clients;
|
|
|
|
}
|
|
|
|
|
2020-02-09 15:15:29 +01:00
|
|
|
bool get canRedactSelectedEvents {
|
2022-01-29 12:35:03 +01:00
|
|
|
final clients = matrix!.currentBundle;
|
2021-04-14 10:37:15 +02:00
|
|
|
for (final event in selectedEvents) {
|
2021-09-19 13:48:23 +02:00
|
|
|
if (event.canRedact == false &&
|
2022-01-29 12:35:03 +01:00
|
|
|
!(clients!.any((cl) => event.senderId == cl!.userID))) return false;
|
2020-02-09 15:15:29 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-09-19 13:48:23 +02:00
|
|
|
bool get canEditSelectedEvents {
|
2021-10-25 10:46:58 +02:00
|
|
|
if (selectedEvents.length != 1 || !selectedEvents.first.status.isSent) {
|
2021-09-19 13:48:23 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return currentRoomBundle
|
2022-01-29 12:35:03 +01:00
|
|
|
.any((cl) => selectedEvents.first.senderId == cl!.userID);
|
2021-09-19 13:48:23 +02:00
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void forwardEventsAction() async {
|
2020-02-09 15:15:29 +01:00
|
|
|
if (selectedEvents.length == 1) {
|
|
|
|
Matrix.of(context).shareContent = selectedEvents.first.content;
|
|
|
|
} else {
|
|
|
|
Matrix.of(context).shareContent = {
|
2020-05-13 15:58:59 +02:00
|
|
|
'msgtype': 'm.text',
|
2021-04-15 13:03:14 +02:00
|
|
|
'body': _getSelectedEventString(),
|
2020-02-09 15:15:29 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
setState(() => selectedEvents.clear());
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/rooms');
|
2020-02-09 15:15:29 +01:00
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void sendAgainAction() {
|
2020-08-12 11:30:31 +02:00
|
|
|
final event = selectedEvents.first;
|
2021-10-25 10:46:58 +02:00
|
|
|
if (event.status.isError) {
|
2020-08-12 11:30:31 +02:00
|
|
|
event.sendAgain();
|
|
|
|
}
|
|
|
|
final allEditEvents = event
|
2022-01-29 12:35:03 +01:00
|
|
|
.aggregatedEvents(timeline!, RelationshipTypes.edit)
|
2021-10-25 10:46:58 +02:00
|
|
|
.where((e) => e.status.isError);
|
2020-08-12 11:30:31 +02:00
|
|
|
for (final e in allEditEvents) {
|
|
|
|
e.sendAgain();
|
|
|
|
}
|
2020-02-09 15:15:29 +01:00
|
|
|
setState(() => selectedEvents.clear());
|
|
|
|
}
|
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
void replyAction({Event? replyTo}) {
|
2020-02-09 15:15:29 +01:00
|
|
|
setState(() {
|
2020-10-17 11:15:55 +02:00
|
|
|
replyEvent = replyTo ?? selectedEvents.first;
|
2020-02-09 15:15:29 +01:00
|
|
|
selectedEvents.clear();
|
|
|
|
});
|
2020-02-16 11:36:18 +01:00
|
|
|
inputFocus.requestFocus();
|
2020-02-09 15:15:29 +01:00
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void scrollToEventId(String eventId) async {
|
2020-12-23 11:23:19 +01:00
|
|
|
var eventIndex = filteredEvents.indexWhere((e) => e.eventId == eventId);
|
2020-09-19 19:21:33 +02:00
|
|
|
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
|
2021-10-26 18:47:05 +02:00
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () async {
|
|
|
|
// okay, we first have to fetch if the event is in the room
|
|
|
|
try {
|
2022-01-29 12:35:03 +01:00
|
|
|
final event = await timeline!.getEventById(eventId);
|
2021-10-26 18:47:05 +02:00
|
|
|
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;
|
2020-09-19 19:21:33 +02:00
|
|
|
}
|
2021-10-26 18:47:05 +02:00
|
|
|
// 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 {
|
2022-01-29 12:35:03 +01:00
|
|
|
await timeline!.requestHistory(historyCount: _loadHistoryCount);
|
2021-10-26 18:47:05 +02:00
|
|
|
} catch (err) {
|
|
|
|
if (err is TimeoutException) {
|
|
|
|
// loading the history timed out...so let's do nothing
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
eventIndex =
|
|
|
|
filteredEvents.indexWhere((e) => e.eventId == eventId);
|
|
|
|
}
|
|
|
|
});
|
2020-09-19 19:21:33 +02:00
|
|
|
}
|
2020-11-16 11:31:31 +01:00
|
|
|
if (!mounted) {
|
|
|
|
return;
|
|
|
|
}
|
2021-10-26 18:47:05 +02:00
|
|
|
await scrollController.scrollToIndex(
|
|
|
|
eventIndex,
|
|
|
|
preferPosition: AutoScrollPosition.middle,
|
|
|
|
);
|
2020-09-19 19:21:33 +02:00
|
|
|
_updateScrollController();
|
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void scrollDown() => scrollController.jumpTo(0);
|
|
|
|
|
2022-02-14 13:49:46 +01:00
|
|
|
void onEmojiSelected(_, Emoji? emoji) {
|
|
|
|
switch (emojiPickerType) {
|
|
|
|
case EmojiPickerType.reaction:
|
|
|
|
senEmojiReaction(emoji);
|
|
|
|
break;
|
|
|
|
case EmojiPickerType.keyboard:
|
|
|
|
typeEmoji(emoji);
|
2022-03-03 07:52:31 +01:00
|
|
|
onInputBarChanged(sendController.text);
|
2022-02-14 13:49:46 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void senEmojiReaction(Emoji? emoji) {
|
2021-05-20 13:46:52 +02:00
|
|
|
setState(() => showEmojiPicker = false);
|
2020-12-12 17:19:53 +01:00
|
|
|
if (emoji == null) return;
|
2020-12-19 16:12:47 +01:00
|
|
|
// make sure we don't send the same emoji twice
|
2021-05-20 13:46:52 +02:00
|
|
|
if (_allReactionEvents
|
2020-12-19 16:12:47 +01:00
|
|
|
.any((e) => e.content['m.relates_to']['key'] == emoji.emoji)) return;
|
2021-04-15 13:03:14 +02:00
|
|
|
return sendEmojiAction(emoji.emoji);
|
2020-12-12 17:19:53 +01:00
|
|
|
}
|
|
|
|
|
2022-02-14 13:49:46 +01:00
|
|
|
void typeEmoji(Emoji? emoji) {
|
|
|
|
if (emoji == null) return;
|
|
|
|
final text = sendController.text;
|
|
|
|
final selection = sendController.selection;
|
|
|
|
final newText = sendController.text.isEmpty
|
|
|
|
? emoji.emoji
|
|
|
|
: text.replaceRange(selection.start, selection.end, emoji.emoji);
|
|
|
|
sendController.value = TextEditingValue(
|
|
|
|
text: newText,
|
|
|
|
selection: TextSelection.collapsed(
|
|
|
|
// don't forget an UTF-8 combined emoji might have a length > 1
|
|
|
|
offset: selection.baseOffset + emoji.emoji.length,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
late Iterable<Event> _allReactionEvents;
|
2021-05-20 13:46:52 +02:00
|
|
|
|
2022-02-14 13:49:46 +01:00
|
|
|
void emojiPickerBackspace() {
|
|
|
|
switch (emojiPickerType) {
|
|
|
|
case EmojiPickerType.reaction:
|
|
|
|
setState(() => showEmojiPicker = false);
|
|
|
|
break;
|
|
|
|
case EmojiPickerType.keyboard:
|
|
|
|
sendController
|
|
|
|
..text = sendController.text.characters.skipLast(1).toString()
|
|
|
|
..selection = TextSelection.fromPosition(
|
|
|
|
TextPosition(offset: sendController.text.length));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-05-20 13:46:52 +02:00
|
|
|
|
2022-02-14 13:49:46 +01:00
|
|
|
void pickEmojiReactionAction(Iterable<Event> allReactionEvents) async {
|
2021-05-20 13:46:52 +02:00
|
|
|
_allReactionEvents = allReactionEvents;
|
2022-02-14 13:49:46 +01:00
|
|
|
emojiPickerType = EmojiPickerType.reaction;
|
2021-05-20 13:46:52 +02:00
|
|
|
setState(() => showEmojiPicker = true);
|
|
|
|
}
|
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
void sendEmojiAction(String? emoji) async {
|
2021-11-19 10:23:24 +01:00
|
|
|
final events = List<Event>.from(selectedEvents);
|
2020-12-12 17:19:53 +01:00
|
|
|
setState(() => selectedEvents.clear());
|
2021-11-19 10:23:24 +01:00
|
|
|
for (final event in events) {
|
2022-01-29 12:35:03 +01:00
|
|
|
await room!.sendReaction(
|
2021-11-19 10:23:24 +01:00
|
|
|
event.eventId,
|
2022-01-29 12:35:03 +01:00
|
|
|
emoji!,
|
2021-11-19 10:23:24 +01:00
|
|
|
);
|
|
|
|
}
|
2020-12-12 17:19:53 +01:00
|
|
|
}
|
|
|
|
|
2021-05-20 13:46:52 +02:00
|
|
|
void clearSelectedEvents() => setState(() {
|
|
|
|
selectedEvents.clear();
|
|
|
|
showEmojiPicker = false;
|
|
|
|
});
|
2020-01-05 12:27:03 +01:00
|
|
|
|
2022-01-03 17:12:09 +01:00
|
|
|
void clearSingleSelectedEvent() {
|
|
|
|
if (selectedEvents.length <= 1) {
|
|
|
|
clearSelectedEvents();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void editSelectedEventAction() {
|
2021-09-19 13:48:23 +02:00
|
|
|
final client = currentRoomBundle.firstWhere(
|
2022-01-29 12:35:03 +01:00
|
|
|
(cl) => selectedEvents.first.senderId == cl!.userID,
|
2021-09-19 13:48:23 +02:00
|
|
|
orElse: () => null);
|
|
|
|
if (client == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setSendingClient(client);
|
2021-04-15 13:03:14 +02:00
|
|
|
setState(() {
|
|
|
|
pendingText = sendController.text;
|
|
|
|
editEvent = selectedEvents.first;
|
2022-01-29 12:35:03 +01:00
|
|
|
inputText = sendController.text = editEvent!
|
|
|
|
.getDisplayEvent(timeline!)
|
2022-05-30 13:44:05 +02:00
|
|
|
.calcLocalizedBodyFallback(MatrixLocals(L10n.of(context)!),
|
2021-04-15 13:03:14 +02:00
|
|
|
withSenderNamePrefix: false, hideReply: true);
|
|
|
|
selectedEvents.clear();
|
|
|
|
});
|
|
|
|
inputFocus.requestFocus();
|
|
|
|
}
|
2021-03-28 09:20:34 +02:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void goToNewRoomAction() async {
|
|
|
|
if (OkCancelResult.ok !=
|
|
|
|
await showOkCancelAlertDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-04-15 13:03:14 +02:00
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
title: L10n.of(context)!.goToTheNewRoom,
|
|
|
|
message: room!
|
|
|
|
.getState(EventTypes.RoomTombstone)!
|
2021-04-15 13:03:14 +02:00
|
|
|
.parsedTombstoneContent
|
|
|
|
.body,
|
2022-01-29 12:35:03 +01:00
|
|
|
okLabel: L10n.of(context)!.ok,
|
|
|
|
cancelLabel: L10n.of(context)!.cancel,
|
2021-04-15 13:03:14 +02:00
|
|
|
)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final result = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
future: () => room!.client.joinRoom(room!
|
|
|
|
.getState(EventTypes.RoomTombstone)!
|
2021-04-15 13:03:14 +02:00
|
|
|
.parsedTombstoneContent
|
|
|
|
.replacementRoom),
|
|
|
|
);
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
future: room!.leave,
|
2021-04-15 13:03:14 +02:00
|
|
|
);
|
|
|
|
if (result.error == null) {
|
2022-01-29 12:35:03 +01:00
|
|
|
VRouter.of(context).toSegments(['rooms', result.result!]);
|
2021-04-15 13:03:14 +02:00
|
|
|
}
|
|
|
|
}
|
2020-11-07 10:18:51 +01:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void onSelectMessage(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),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2020-11-08 15:40:06 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
int? findChildIndexCallback(Key key, Map<String, int> thisEventsKeyMap) {
|
2021-04-15 13:03:14 +02:00
|
|
|
// this method is called very often. As such, it has to be optimized for speed.
|
2021-10-14 18:09:30 +02:00
|
|
|
if (key is! ValueKey) {
|
2021-04-15 13:03:14 +02:00
|
|
|
return null;
|
|
|
|
}
|
2022-01-29 12:35:03 +01:00
|
|
|
final eventId = key.value;
|
2021-10-14 18:09:30 +02:00
|
|
|
if (eventId is! String) {
|
2021-04-15 13:03:14 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
// first fetch the last index the event was at
|
|
|
|
final index = thisEventsKeyMap[eventId];
|
|
|
|
if (index == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
// we need to +1 as 0 is the typing thing at the bottom
|
|
|
|
return index + 1;
|
|
|
|
}
|
2021-02-25 09:11:17 +01:00
|
|
|
|
2021-10-16 09:59:38 +02:00
|
|
|
void onInputBarSubmitted(_) {
|
2021-04-15 13:03:14 +02:00
|
|
|
send();
|
|
|
|
FocusScope.of(context).requestFocus(inputFocus);
|
|
|
|
}
|
2020-11-07 10:18:51 +01:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void onAddPopupMenuButtonSelected(String choice) {
|
|
|
|
if (choice == 'file') {
|
|
|
|
sendFileAction();
|
2021-07-23 14:24:52 +02:00
|
|
|
}
|
|
|
|
if (choice == 'image') {
|
2021-04-15 13:03:14 +02:00
|
|
|
sendImageAction();
|
|
|
|
}
|
|
|
|
if (choice == 'camera') {
|
|
|
|
openCameraAction();
|
|
|
|
}
|
2021-12-22 09:45:36 +01:00
|
|
|
if (choice == 'camera-video') {
|
|
|
|
openVideoCameraAction();
|
|
|
|
}
|
2021-07-23 14:24:52 +02:00
|
|
|
if (choice == 'sticker') {
|
|
|
|
sendStickerAction();
|
|
|
|
}
|
2021-08-01 09:53:43 +02:00
|
|
|
if (choice == 'location') {
|
|
|
|
sendLocationAction();
|
|
|
|
}
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|
2020-08-12 11:30:31 +02:00
|
|
|
|
2022-02-14 18:44:37 +01:00
|
|
|
unpinEvent(String eventId) async {
|
|
|
|
final response = await showOkCancelAlertDialog(
|
|
|
|
context: context,
|
|
|
|
title: L10n.of(context)!.unpin,
|
|
|
|
message: L10n.of(context)!.confirmEventUnpin,
|
|
|
|
okLabel: L10n.of(context)!.unpin,
|
|
|
|
cancelLabel: L10n.of(context)!.cancel,
|
|
|
|
);
|
|
|
|
if (response == OkCancelResult.ok) {
|
|
|
|
final events = room!.pinnedEventIds
|
|
|
|
..removeWhere((oldEvent) => oldEvent == eventId);
|
2022-02-15 12:47:22 +01:00
|
|
|
showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room!.setPinnedEvents(events),
|
|
|
|
);
|
2022-02-14 18:44:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void pinEvent() {
|
2022-02-16 12:11:25 +01:00
|
|
|
final room = this.room;
|
|
|
|
if (room == null) return;
|
|
|
|
final pinnedEventIds = room.pinnedEventIds;
|
|
|
|
final selectedEventIds = selectedEvents.map((e) => e.eventId).toSet();
|
2022-02-17 14:02:17 +01:00
|
|
|
final unpin = selectedEventIds.length == 1 &&
|
|
|
|
pinnedEventIds.contains(selectedEventIds.single);
|
|
|
|
if (unpin) {
|
|
|
|
pinnedEventIds.removeWhere(selectedEventIds.contains);
|
|
|
|
} else {
|
|
|
|
pinnedEventIds.addAll(selectedEventIds);
|
|
|
|
}
|
2022-02-15 12:47:22 +01:00
|
|
|
showFutureLoadingDialog(
|
|
|
|
context: context,
|
2022-02-17 14:02:17 +01:00
|
|
|
future: () => room.setPinnedEvents(pinnedEventIds),
|
2022-02-14 18:44:37 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void onInputBarChanged(String text) {
|
2022-02-17 21:12:47 +01:00
|
|
|
setReadMarker();
|
2022-01-29 12:35:03 +01:00
|
|
|
if (text.endsWith(' ') && matrix!.hasComplexBundles) {
|
2021-09-21 09:08:18 +02:00
|
|
|
final clients = currentRoomBundle;
|
|
|
|
for (final client in clients) {
|
2022-01-29 12:35:03 +01:00
|
|
|
final prefix = client!.sendPrefix;
|
|
|
|
if ((prefix.isNotEmpty) &&
|
2021-09-21 09:08:18 +02:00
|
|
|
text.toLowerCase() == '${prefix.toLowerCase()} ') {
|
|
|
|
setSendingClient(client);
|
|
|
|
setState(() {
|
|
|
|
inputText = '';
|
|
|
|
sendController.text = '';
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2021-09-19 13:48:23 +02:00
|
|
|
}
|
|
|
|
}
|
2021-04-15 13:03:14 +02:00
|
|
|
typingCoolDown?.cancel();
|
2021-10-14 18:09:30 +02:00
|
|
|
typingCoolDown = Timer(const Duration(seconds: 2), () {
|
2021-04-15 13:03:14 +02:00
|
|
|
typingCoolDown = null;
|
|
|
|
currentlyTyping = false;
|
2022-01-29 12:35:03 +01:00
|
|
|
room!.setTyping(false);
|
2021-04-15 13:03:14 +02:00
|
|
|
});
|
2021-10-14 18:09:30 +02:00
|
|
|
typingTimeout ??= Timer(const Duration(seconds: 30), () {
|
2021-04-15 13:03:14 +02:00
|
|
|
typingTimeout = null;
|
|
|
|
currentlyTyping = false;
|
|
|
|
});
|
|
|
|
if (!currentlyTyping) {
|
|
|
|
currentlyTyping = true;
|
2022-01-29 12:35:03 +01:00
|
|
|
room!
|
|
|
|
.setTyping(true, timeout: const Duration(seconds: 30).inMilliseconds);
|
2021-04-15 13:03:14 +02:00
|
|
|
}
|
2021-05-20 13:33:06 +02:00
|
|
|
setState(() => inputText = text);
|
2021-04-15 13:03:14 +02:00
|
|
|
}
|
2020-08-12 11:30:31 +02:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
void showEventInfo([Event? event]) =>
|
2021-11-13 13:06:36 +01:00
|
|
|
(event ?? selectedEvents.single).showInfoDialog(context);
|
|
|
|
|
2022-02-15 09:25:13 +01:00
|
|
|
void onPhoneButtonTap() async {
|
|
|
|
// VoIP required Android SDK 21
|
|
|
|
if (PlatformInfos.isAndroid) {
|
|
|
|
DeviceInfoPlugin().androidInfo.then((value) {
|
|
|
|
if ((value.version.sdkInt ?? 16) < 21) {
|
|
|
|
Navigator.pop(context);
|
2022-02-17 09:52:53 +01:00
|
|
|
showOkAlertDialog(
|
2022-02-15 09:25:13 +01:00
|
|
|
context: context,
|
2022-02-17 09:52:53 +01:00
|
|
|
title: L10n.of(context)!.unsupportedAndroidVersion,
|
|
|
|
message: L10n.of(context)!.unsupportedAndroidVersionLong,
|
|
|
|
okLabel: L10n.of(context)!.close,
|
2022-02-15 09:25:13 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2022-02-17 09:52:53 +01:00
|
|
|
final callType = await showModalActionSheet<CallType>(
|
|
|
|
context: context,
|
2022-02-17 15:07:29 +01:00
|
|
|
title: L10n.of(context)!.warning,
|
|
|
|
message: L10n.of(context)!.videoCallsBetaWarning,
|
2022-02-17 09:52:53 +01:00
|
|
|
cancelLabel: L10n.of(context)!.cancel,
|
|
|
|
actions: [
|
|
|
|
SheetAction(
|
|
|
|
label: L10n.of(context)!.voiceCall,
|
|
|
|
icon: Icons.phone_outlined,
|
|
|
|
key: CallType.kVoice,
|
|
|
|
),
|
|
|
|
SheetAction(
|
|
|
|
label: L10n.of(context)!.videoCall,
|
|
|
|
icon: Icons.video_call_outlined,
|
|
|
|
key: CallType.kVideo,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
if (callType == null) return;
|
2022-02-15 09:25:13 +01:00
|
|
|
|
|
|
|
final success = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () =>
|
2022-02-17 19:46:02 +01:00
|
|
|
Matrix.of(context).voipPlugin!.voip.requestTurnServerCredentials());
|
2022-02-15 09:25:13 +01:00
|
|
|
if (success.result != null) {
|
|
|
|
final voipPlugin = Matrix.of(context).voipPlugin;
|
2022-02-17 19:46:02 +01:00
|
|
|
await voipPlugin!.voip.inviteToCall(room!.id, callType).catchError((e) {
|
2022-02-15 09:25:13 +01:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
2022-02-19 11:05:21 +01:00
|
|
|
SnackBar(content: Text((e as Object).toLocalizedString(context))),
|
2022-02-15 09:25:13 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
await showOkAlertDialog(
|
|
|
|
context: context,
|
|
|
|
title: L10n.of(context)!.unavailable,
|
|
|
|
okLabel: L10n.of(context)!.next,
|
|
|
|
useRootNavigator: false,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void cancelReplyEventAction() => setState(() {
|
|
|
|
if (editEvent != null) {
|
|
|
|
inputText = sendController.text = pendingText;
|
|
|
|
pendingText = '';
|
|
|
|
}
|
|
|
|
replyEvent = null;
|
|
|
|
editEvent = null;
|
|
|
|
});
|
2020-08-12 11:30:31 +02:00
|
|
|
|
|
|
|
@override
|
2021-05-23 18:46:15 +02:00
|
|
|
Widget build(BuildContext context) => ChatView(this);
|
2020-08-12 11:30:31 +02:00
|
|
|
}
|
2022-02-14 13:49:46 +01:00
|
|
|
|
|
|
|
enum EmojiPickerType { reaction, keyboard }
|