2021-04-14 14:09:46 +02:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
|
|
|
|
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2021-04-14 14:09:46 +02:00
|
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
2021-04-14 14:09:46 +02:00
|
|
|
import 'package:receive_sharing_intent/receive_sharing_intent.dart';
|
2022-04-02 16:18:36 +02:00
|
|
|
import 'package:snapping_sheet/snapping_sheet.dart';
|
2021-05-16 16:38:52 +02:00
|
|
|
import 'package:uni_links/uni_links.dart';
|
2021-05-23 13:11:55 +02:00
|
|
|
import 'package:vrouter/vrouter.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
|
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
2021-11-09 21:32:16 +01:00
|
|
|
import 'package:fluffychat/pages/chat_list/chat_list_view.dart';
|
2022-04-02 16:18:36 +02:00
|
|
|
import 'package:fluffychat/pages/chat_list/spaces_bottom_bar.dart';
|
2022-04-03 19:00:35 +02:00
|
|
|
import 'package:fluffychat/pages/chat_list/spaces_entry.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:fluffychat/utils/fluffy_share.dart';
|
|
|
|
import 'package:fluffychat/utils/platform_infos.dart';
|
2021-11-09 21:32:16 +01:00
|
|
|
import '../../../utils/account_bundles.dart';
|
|
|
|
import '../../main.dart';
|
|
|
|
import '../../utils/matrix_sdk_extensions.dart/matrix_file_extension.dart';
|
|
|
|
import '../../utils/url_launcher.dart';
|
|
|
|
import '../../widgets/matrix.dart';
|
|
|
|
import '../bootstrap/bootstrap_dialog.dart';
|
2021-06-20 13:16:51 +02:00
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
enum SelectMode { normal, share, select }
|
2021-08-01 08:05:40 +02:00
|
|
|
enum PopupMenuAction {
|
|
|
|
settings,
|
|
|
|
invite,
|
|
|
|
newGroup,
|
|
|
|
newSpace,
|
|
|
|
setStatus,
|
|
|
|
archive,
|
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
|
|
|
|
class ChatList extends StatefulWidget {
|
2022-01-29 12:35:03 +01:00
|
|
|
const ChatList({Key? key}) : super(key: key);
|
2021-04-14 14:09:46 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
ChatListController createState() => ChatListController();
|
|
|
|
}
|
|
|
|
|
2022-04-02 16:18:36 +02:00
|
|
|
class ChatListController extends State<ChatList> with TickerProviderStateMixin {
|
2022-01-29 12:35:03 +01:00
|
|
|
StreamSubscription? _intentDataStreamSubscription;
|
2021-04-14 14:09:46 +02:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
StreamSubscription? _intentFileStreamSubscription;
|
2021-04-14 14:09:46 +02:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
StreamSubscription? _intentUriStreamSubscription;
|
2021-05-16 16:38:52 +02:00
|
|
|
|
2022-04-03 19:00:35 +02:00
|
|
|
SpacesEntry? _activeSpacesEntry;
|
2022-01-29 12:35:03 +01:00
|
|
|
|
2022-04-03 19:00:35 +02:00
|
|
|
SpacesEntry get activeSpacesEntry {
|
|
|
|
final id = _activeSpacesEntry;
|
|
|
|
return (id == null || !id.stillValid(context)) ? defaultSpacesEntry : id;
|
2022-01-29 12:35:03 +01:00
|
|
|
}
|
2021-12-22 09:11:30 +01:00
|
|
|
|
2022-04-02 16:18:36 +02:00
|
|
|
BoxConstraints? snappingSheetContainerSize;
|
|
|
|
|
2022-04-03 19:00:35 +02:00
|
|
|
String? get activeSpaceId => activeSpacesEntry.getSpace(context)?.id;
|
|
|
|
|
2021-08-29 11:29:14 +02:00
|
|
|
final ScrollController scrollController = ScrollController();
|
|
|
|
bool scrolledToTop = true;
|
|
|
|
|
2021-12-22 09:11:30 +01:00
|
|
|
final StreamController<Client> _clientStream = StreamController.broadcast();
|
|
|
|
|
2022-04-02 16:18:36 +02:00
|
|
|
SnappingSheetController snappingSheetController = SnappingSheetController();
|
|
|
|
|
|
|
|
ScrollController snappingSheetScrollContentController = ScrollController();
|
|
|
|
|
2021-12-22 09:11:30 +01:00
|
|
|
Stream<Client> get clientStream => _clientStream.stream;
|
|
|
|
|
2021-08-29 11:29:14 +02:00
|
|
|
void _onScroll() {
|
|
|
|
final newScrolledToTop = scrollController.position.pixels <= 0;
|
|
|
|
if (newScrolledToTop != scrolledToTop) {
|
|
|
|
setState(() {
|
|
|
|
scrolledToTop = newScrolledToTop;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2021-08-01 07:45:34 +02:00
|
|
|
|
2022-04-02 16:18:36 +02:00
|
|
|
void setActiveSpacesEntry(BuildContext context, SpacesEntry? spaceId) {
|
|
|
|
if (snappingSheetController.currentPosition != kSpacesBottomBarHeight) {
|
|
|
|
snapBackSpacesSheet();
|
|
|
|
}
|
2022-04-03 19:00:35 +02:00
|
|
|
setState(() => _activeSpacesEntry = spaceId);
|
2021-08-01 07:45:34 +02:00
|
|
|
}
|
|
|
|
|
2021-08-04 09:56:05 +02:00
|
|
|
void editSpace(BuildContext context, String spaceId) async {
|
2022-01-29 12:35:03 +01:00
|
|
|
await Matrix.of(context).client.getRoomById(spaceId)!.postLoad();
|
2021-08-15 13:26:16 +02:00
|
|
|
VRouter.of(context).toSegments(['spaces', spaceId]);
|
2021-08-01 07:54:44 +02:00
|
|
|
}
|
|
|
|
|
2022-04-03 19:00:35 +02:00
|
|
|
// Needs to match GroupsSpacesEntry for 'separate group' checking.
|
2021-08-01 07:45:34 +02:00
|
|
|
List<Room> get spaces =>
|
|
|
|
Matrix.of(context).client.rooms.where((r) => r.isSpace).toList();
|
|
|
|
|
2022-04-03 19:00:35 +02:00
|
|
|
// Note that this could change due to configuration, etc.
|
|
|
|
// Also be aware that _activeSpacesEntry = null is the expected reset method.
|
|
|
|
SpacesEntry get defaultSpacesEntry => AppConfig.separateChatTypes
|
|
|
|
? DirectChatsSpacesEntry()
|
|
|
|
: AllRoomsSpacesEntry();
|
|
|
|
|
|
|
|
List<SpacesEntry> get spacesEntries {
|
|
|
|
if (AppConfig.separateChatTypes) {
|
|
|
|
return [
|
|
|
|
defaultSpacesEntry,
|
|
|
|
GroupsSpacesEntry(),
|
|
|
|
...spaces.map((space) => SpaceSpacesEntry(space)).toList()
|
|
|
|
];
|
|
|
|
}
|
|
|
|
return [
|
|
|
|
defaultSpacesEntry,
|
|
|
|
...spaces.map((space) => SpaceSpacesEntry(space)).toList()
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
final selectedRoomIds = <String>{};
|
2022-01-29 12:35:03 +01:00
|
|
|
bool? crossSigningCached;
|
2021-11-19 09:12:47 +01:00
|
|
|
bool showChatBackupBanner = false;
|
2021-06-20 13:16:51 +02:00
|
|
|
|
|
|
|
void firstRunBootstrapAction() async {
|
2021-11-19 09:12:47 +01:00
|
|
|
setState(() {
|
|
|
|
showChatBackupBanner = false;
|
|
|
|
});
|
|
|
|
|
2021-06-20 13:16:51 +02:00
|
|
|
await BootstrapDialog(
|
|
|
|
client: Matrix.of(context).client,
|
|
|
|
).show(context);
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/rooms');
|
2021-06-20 13:16:51 +02:00
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
String? get activeChat => VRouter.of(context).pathParameters['roomid'];
|
2021-05-23 20:13:10 +02:00
|
|
|
|
2021-05-31 20:41:46 +02:00
|
|
|
SelectMode get selectMode => Matrix.of(context).shareContent != null
|
|
|
|
? SelectMode.share
|
|
|
|
: selectedRoomIds.isEmpty
|
|
|
|
? SelectMode.normal
|
|
|
|
: SelectMode.select;
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
void _processIncomingSharedFiles(List<SharedMediaFile> files) {
|
2022-01-29 12:35:03 +01:00
|
|
|
if (files.isEmpty) return;
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/rooms');
|
2021-04-14 14:09:46 +02:00
|
|
|
final file = File(files.first.path);
|
|
|
|
|
|
|
|
Matrix.of(context).shareContent = {
|
|
|
|
'msgtype': 'chat.fluffy.shared_file',
|
|
|
|
'file': MatrixFile(
|
|
|
|
bytes: file.readAsBytesSync(),
|
|
|
|
name: file.path,
|
|
|
|
).detectFileType,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
void _processIncomingSharedText(String? text) {
|
2021-04-14 14:09:46 +02:00
|
|
|
if (text == null) return;
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/rooms');
|
2021-11-26 14:59:35 +01:00
|
|
|
if (text.toLowerCase().startsWith(AppConfig.deepLinkPrefix) ||
|
|
|
|
text.toLowerCase().startsWith(AppConfig.inviteLinkPrefix) ||
|
2021-04-14 14:09:46 +02:00
|
|
|
(text.toLowerCase().startsWith(AppConfig.schemePrefix) &&
|
|
|
|
!RegExp(r'\s').hasMatch(text))) {
|
2021-11-26 14:59:35 +01:00
|
|
|
return _processIncomingUris(text);
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
Matrix.of(context).shareContent = {
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'body': text,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
void _processIncomingUris(String? text) async {
|
2021-08-28 10:50:12 +02:00
|
|
|
if (text == null) return;
|
|
|
|
VRouter.of(context).to('/rooms');
|
2022-01-29 12:35:03 +01:00
|
|
|
WidgetsBinding.instance!.addPostFrameCallback((_) {
|
2021-11-29 16:18:16 +01:00
|
|
|
UrlLauncher(context, text).openMatrixToUrl();
|
|
|
|
});
|
2021-05-16 16:38:52 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
void _initReceiveSharingIntent() {
|
|
|
|
if (!PlatformInfos.isMobile) return;
|
|
|
|
|
|
|
|
// For sharing images coming from outside the app while the app is in the memory
|
|
|
|
_intentFileStreamSubscription = ReceiveSharingIntent.getMediaStream()
|
|
|
|
.listen(_processIncomingSharedFiles, onError: print);
|
|
|
|
|
|
|
|
// For sharing images coming from outside the app while the app is closed
|
|
|
|
ReceiveSharingIntent.getInitialMedia().then(_processIncomingSharedFiles);
|
|
|
|
|
|
|
|
// For sharing or opening urls/text coming from outside the app while the app is in the memory
|
|
|
|
_intentDataStreamSubscription = ReceiveSharingIntent.getTextStream()
|
|
|
|
.listen(_processIncomingSharedText, onError: print);
|
|
|
|
|
|
|
|
// For sharing or opening urls/text coming from outside the app while the app is closed
|
|
|
|
ReceiveSharingIntent.getInitialText().then(_processIncomingSharedText);
|
2021-05-16 16:38:52 +02:00
|
|
|
|
|
|
|
// For receiving shared Uris
|
2021-08-02 18:41:09 +02:00
|
|
|
_intentUriStreamSubscription = linkStream.listen(_processIncomingUris);
|
2021-05-16 16:38:52 +02:00
|
|
|
if (FluffyChatApp.gotInitialLink == false) {
|
|
|
|
FluffyChatApp.gotInitialLink = true;
|
|
|
|
getInitialLink().then(_processIncomingUris);
|
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
_initReceiveSharingIntent();
|
2021-11-15 10:05:15 +01:00
|
|
|
|
2021-08-29 11:29:14 +02:00
|
|
|
scrollController.addListener(_onScroll);
|
2021-11-15 10:05:15 +01:00
|
|
|
_waitForFirstSync();
|
2022-02-19 09:27:03 +01:00
|
|
|
_hackyWebRTCFixForWeb();
|
2021-04-14 14:09:46 +02:00
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
2021-08-01 16:05:32 +02:00
|
|
|
void checkBootstrap() async {
|
|
|
|
if (!Matrix.of(context).client.encryptionEnabled) return;
|
2021-11-11 19:52:56 +01:00
|
|
|
await Matrix.of(context).client.accountDataLoading;
|
|
|
|
await Matrix.of(context).client.userDeviceKeysLoading;
|
2021-11-11 19:39:55 +01:00
|
|
|
final crossSigning =
|
2022-01-29 12:35:03 +01:00
|
|
|
await Matrix.of(context).client.encryption?.crossSigning.isCached() ??
|
2021-11-11 19:39:55 +01:00
|
|
|
false;
|
2021-08-01 16:05:32 +02:00
|
|
|
final needsBootstrap =
|
2022-01-29 12:35:03 +01:00
|
|
|
Matrix.of(context).client.encryption?.crossSigning.enabled == false ||
|
2021-08-01 16:05:32 +02:00
|
|
|
crossSigning == false;
|
|
|
|
final isUnknownSession = Matrix.of(context).client.isUnknownSession;
|
|
|
|
if (needsBootstrap || isUnknownSession) {
|
2021-11-19 09:12:47 +01:00
|
|
|
setState(() {
|
|
|
|
showChatBackupBanner = true;
|
|
|
|
});
|
2021-08-01 16:05:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_intentDataStreamSubscription?.cancel();
|
|
|
|
_intentFileStreamSubscription?.cancel();
|
2021-05-16 16:38:52 +02:00
|
|
|
_intentUriStreamSubscription?.cancel();
|
2021-08-29 11:29:14 +02:00
|
|
|
scrollController.removeListener(_onScroll);
|
2021-04-14 14:09:46 +02:00
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void toggleSelection(String roomId) {
|
|
|
|
setState(() => selectedRoomIds.contains(roomId)
|
|
|
|
? selectedRoomIds.remove(roomId)
|
|
|
|
: selectedRoomIds.add(roomId));
|
|
|
|
}
|
|
|
|
|
2021-11-14 20:59:25 +01:00
|
|
|
Future<void> toggleUnread() async {
|
|
|
|
await showFutureLoadingDialog(
|
2021-04-14 14:09:46 +02:00
|
|
|
context: context,
|
2021-11-14 20:59:25 +01:00
|
|
|
future: () async {
|
|
|
|
final markUnread = anySelectedRoomNotMarkedUnread;
|
|
|
|
final client = Matrix.of(context).client;
|
|
|
|
for (final roomId in selectedRoomIds) {
|
2022-01-29 12:35:03 +01:00
|
|
|
final room = client.getRoomById(roomId)!;
|
2021-11-14 20:59:25 +01:00
|
|
|
if (room.markedUnread == markUnread) continue;
|
2022-01-29 12:35:03 +01:00
|
|
|
await client.getRoomById(roomId)!.markUnread(markUnread);
|
2021-11-14 20:59:25 +01:00
|
|
|
}
|
|
|
|
},
|
2021-04-14 14:09:46 +02:00
|
|
|
);
|
2021-11-14 20:59:25 +01:00
|
|
|
cancelAction();
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
|
2021-11-14 20:59:25 +01:00
|
|
|
Future<void> toggleFavouriteRoom() async {
|
|
|
|
await showFutureLoadingDialog(
|
2021-04-14 14:09:46 +02:00
|
|
|
context: context,
|
2021-11-14 20:59:25 +01:00
|
|
|
future: () async {
|
|
|
|
final makeFavorite = anySelectedRoomNotFavorite;
|
|
|
|
final client = Matrix.of(context).client;
|
|
|
|
for (final roomId in selectedRoomIds) {
|
2022-01-29 12:35:03 +01:00
|
|
|
final room = client.getRoomById(roomId)!;
|
2021-11-14 20:59:25 +01:00
|
|
|
if (room.isFavourite == makeFavorite) continue;
|
2022-01-29 12:35:03 +01:00
|
|
|
await client.getRoomById(roomId)!.setFavourite(makeFavorite);
|
2021-11-14 20:59:25 +01:00
|
|
|
}
|
|
|
|
},
|
2021-04-14 14:09:46 +02:00
|
|
|
);
|
2021-11-14 20:59:25 +01:00
|
|
|
cancelAction();
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
|
2021-11-14 20:59:25 +01:00
|
|
|
Future<void> toggleMuted() async {
|
|
|
|
await showFutureLoadingDialog(
|
2021-04-14 14:09:46 +02:00
|
|
|
context: context,
|
2021-11-14 20:59:25 +01:00
|
|
|
future: () async {
|
|
|
|
final newState = anySelectedRoomNotMuted
|
|
|
|
? PushRuleState.mentionsOnly
|
|
|
|
: PushRuleState.notify;
|
|
|
|
final client = Matrix.of(context).client;
|
|
|
|
for (final roomId in selectedRoomIds) {
|
2022-01-29 12:35:03 +01:00
|
|
|
final room = client.getRoomById(roomId)!;
|
2021-11-14 20:59:25 +01:00
|
|
|
if (room.pushRuleState == newState) continue;
|
2022-01-29 12:35:03 +01:00
|
|
|
await client.getRoomById(roomId)!.setPushRuleState(newState);
|
2021-11-14 20:59:25 +01:00
|
|
|
}
|
|
|
|
},
|
2021-04-14 14:09:46 +02:00
|
|
|
);
|
2021-11-14 20:59:25 +01:00
|
|
|
cancelAction();
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> archiveAction() async {
|
|
|
|
final confirmed = await showOkCancelAlertDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-04-14 14:09:46 +02:00
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
title: L10n.of(context)!.areYouSure,
|
|
|
|
okLabel: L10n.of(context)!.yes,
|
|
|
|
cancelLabel: L10n.of(context)!.cancel,
|
2021-04-14 14:09:46 +02:00
|
|
|
) ==
|
|
|
|
OkCancelResult.ok;
|
|
|
|
if (!confirmed) return;
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => _archiveSelectedRooms(),
|
|
|
|
);
|
2022-01-29 12:35:03 +01:00
|
|
|
setState(() {});
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void setStatus() async {
|
|
|
|
final input = await showTextInputDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-04-14 14:09:46 +02:00
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
title: L10n.of(context)!.setStatus,
|
|
|
|
okLabel: L10n.of(context)!.ok,
|
|
|
|
cancelLabel: L10n.of(context)!.cancel,
|
2021-04-14 14:09:46 +02:00
|
|
|
textFields: [
|
|
|
|
DialogTextField(
|
2022-01-29 12:35:03 +01:00
|
|
|
hintText: L10n.of(context)!.statusExampleMessage,
|
2021-04-14 14:09:46 +02:00
|
|
|
),
|
|
|
|
]);
|
|
|
|
if (input == null) return;
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2021-05-20 13:59:55 +02:00
|
|
|
future: () => Matrix.of(context).client.setPresence(
|
2022-01-29 12:35:03 +01:00
|
|
|
Matrix.of(context).client.userID!,
|
2021-04-14 14:09:46 +02:00
|
|
|
PresenceType.online,
|
|
|
|
statusMsg: input.single,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void onPopupMenuSelect(action) {
|
|
|
|
switch (action) {
|
|
|
|
case PopupMenuAction.setStatus:
|
|
|
|
setStatus();
|
|
|
|
break;
|
|
|
|
case PopupMenuAction.settings:
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/settings');
|
2021-04-14 14:09:46 +02:00
|
|
|
break;
|
|
|
|
case PopupMenuAction.invite:
|
|
|
|
FluffyShare.share(
|
2022-01-29 12:35:03 +01:00
|
|
|
L10n.of(context)!.inviteText(Matrix.of(context).client.userID!,
|
2021-12-08 11:33:03 +01:00
|
|
|
'https://matrix.to/#/${Matrix.of(context).client.userID}?client=im.fluffychat'),
|
2021-04-14 14:09:46 +02:00
|
|
|
context);
|
|
|
|
break;
|
|
|
|
case PopupMenuAction.newGroup:
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/newgroup');
|
2021-04-14 14:09:46 +02:00
|
|
|
break;
|
2021-08-01 08:05:40 +02:00
|
|
|
case PopupMenuAction.newSpace:
|
|
|
|
VRouter.of(context).to('/newspace');
|
|
|
|
break;
|
2021-04-14 14:09:46 +02:00
|
|
|
case PopupMenuAction.archive:
|
2021-07-08 17:10:20 +02:00
|
|
|
VRouter.of(context).to('/archive');
|
2021-04-14 14:09:46 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _archiveSelectedRooms() async {
|
|
|
|
final client = Matrix.of(context).client;
|
|
|
|
while (selectedRoomIds.isNotEmpty) {
|
|
|
|
final roomId = selectedRoomIds.first;
|
2021-08-29 13:21:18 +02:00
|
|
|
try {
|
2022-01-29 12:35:03 +01:00
|
|
|
await client.getRoomById(roomId)!.leave();
|
2021-08-29 13:21:18 +02:00
|
|
|
} finally {
|
|
|
|
toggleSelection(roomId);
|
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-12 20:46:21 +02:00
|
|
|
Future<void> addOrRemoveToSpace() async {
|
2022-04-03 19:00:35 +02:00
|
|
|
final id = activeSpaceId;
|
|
|
|
if (id != null) {
|
2021-11-15 08:20:29 +01:00
|
|
|
final consent = await showOkCancelAlertDialog(
|
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
title: L10n.of(context)!.removeFromSpace,
|
|
|
|
message: L10n.of(context)!.removeFromSpaceDescription,
|
|
|
|
okLabel: L10n.of(context)!.remove,
|
|
|
|
cancelLabel: L10n.of(context)!.cancel,
|
2021-11-15 08:20:29 +01:00
|
|
|
isDestructiveAction: true,
|
|
|
|
fullyCapitalizedForMaterial: false,
|
|
|
|
);
|
|
|
|
if (consent != OkCancelResult.ok) return;
|
|
|
|
|
2022-04-03 19:00:35 +02:00
|
|
|
final space = Matrix.of(context).client.getRoomById(id);
|
2021-08-12 20:46:21 +02:00
|
|
|
final result = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2021-11-14 20:59:25 +01:00
|
|
|
future: () async {
|
|
|
|
for (final roomId in selectedRoomIds) {
|
2022-01-29 12:35:03 +01:00
|
|
|
await space!.removeSpaceChild(roomId);
|
2021-11-14 20:59:25 +01:00
|
|
|
}
|
|
|
|
},
|
2021-08-12 20:46:21 +02:00
|
|
|
);
|
|
|
|
if (result.error == null) {
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
|
|
SnackBar(
|
2022-01-29 12:35:03 +01:00
|
|
|
content: Text(L10n.of(context)!.chatHasBeenRemovedFromThisSpace),
|
2021-08-12 20:46:21 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
final selectedSpace = await showConfirmationDialog<String>(
|
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
title: L10n.of(context)!.addToSpace,
|
|
|
|
message: L10n.of(context)!.addToSpaceDescription,
|
2021-11-15 08:20:29 +01:00
|
|
|
fullyCapitalizedForMaterial: false,
|
2021-08-12 20:46:21 +02:00
|
|
|
actions: Matrix.of(context)
|
|
|
|
.client
|
|
|
|
.rooms
|
|
|
|
.where((r) => r.isSpace)
|
|
|
|
.map(
|
|
|
|
(space) => AlertDialogAction(
|
|
|
|
key: space.id,
|
|
|
|
label: space.displayname,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.toList());
|
|
|
|
if (selectedSpace == null) return;
|
|
|
|
final result = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2021-11-14 20:59:25 +01:00
|
|
|
future: () async {
|
2022-01-29 12:35:03 +01:00
|
|
|
final space = Matrix.of(context).client.getRoomById(selectedSpace)!;
|
2021-11-15 08:20:29 +01:00
|
|
|
if (space.canSendDefaultStates) {
|
|
|
|
for (final roomId in selectedRoomIds) {
|
|
|
|
await space.setSpaceChild(roomId);
|
|
|
|
}
|
2021-11-14 20:59:25 +01:00
|
|
|
}
|
|
|
|
},
|
2021-08-12 20:46:21 +02:00
|
|
|
);
|
|
|
|
if (result.error == null) {
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
|
|
SnackBar(
|
2022-01-29 12:35:03 +01:00
|
|
|
content: Text(L10n.of(context)!.chatHasBeenAddedToThisSpace),
|
2021-08-12 20:46:21 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setState(() => selectedRoomIds.clear());
|
|
|
|
}
|
|
|
|
|
2021-11-14 20:59:25 +01:00
|
|
|
bool get anySelectedRoomNotMarkedUnread => selectedRoomIds.any(
|
2022-01-29 12:35:03 +01:00
|
|
|
(roomId) => !Matrix.of(context).client.getRoomById(roomId)!.markedUnread);
|
2021-11-14 20:59:25 +01:00
|
|
|
|
|
|
|
bool get anySelectedRoomNotFavorite => selectedRoomIds.any(
|
2022-01-29 12:35:03 +01:00
|
|
|
(roomId) => !Matrix.of(context).client.getRoomById(roomId)!.isFavourite);
|
2021-11-14 20:59:25 +01:00
|
|
|
|
|
|
|
bool get anySelectedRoomNotMuted => selectedRoomIds.any((roomId) =>
|
2022-01-29 12:35:03 +01:00
|
|
|
Matrix.of(context).client.getRoomById(roomId)!.pushRuleState ==
|
2021-11-14 20:59:25 +01:00
|
|
|
PushRuleState.notify);
|
|
|
|
|
2021-11-15 10:05:15 +01:00
|
|
|
bool waitForFirstSync = false;
|
2021-11-09 17:30:04 +01:00
|
|
|
|
|
|
|
Future<void> _waitForFirstSync() async {
|
2021-04-14 14:09:46 +02:00
|
|
|
final client = Matrix.of(context).client;
|
2021-11-09 13:06:41 +01:00
|
|
|
await client.roomsLoading;
|
|
|
|
await client.accountDataLoading;
|
2021-04-14 14:09:46 +02:00
|
|
|
if (client.prevBatch?.isEmpty ?? true) {
|
|
|
|
await client.onFirstSync.stream.first;
|
|
|
|
}
|
2021-08-12 20:34:14 +02:00
|
|
|
// Load space members to display DM rooms
|
2022-04-03 19:00:35 +02:00
|
|
|
final spaceId = activeSpaceId;
|
|
|
|
if (spaceId != null) {
|
|
|
|
final space = client.getRoomById(spaceId)!;
|
2021-08-12 20:34:14 +02:00
|
|
|
final localMembers = space.getParticipants().length;
|
2022-01-29 12:35:03 +01:00
|
|
|
final actualMembersCount = (space.summary.mInvitedMemberCount ?? 0) +
|
|
|
|
(space.summary.mJoinedMemberCount ?? 0);
|
2021-08-12 20:34:14 +02:00
|
|
|
if (localMembers < actualMembersCount) {
|
|
|
|
await space.requestParticipants();
|
|
|
|
}
|
|
|
|
}
|
2021-11-15 10:05:15 +01:00
|
|
|
setState(() {
|
|
|
|
waitForFirstSync = true;
|
|
|
|
});
|
2022-01-29 12:35:03 +01:00
|
|
|
WidgetsBinding.instance!.addPostFrameCallback((_) => checkBootstrap());
|
2021-11-15 10:05:15 +01:00
|
|
|
return;
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void cancelAction() {
|
|
|
|
if (selectMode == SelectMode.share) {
|
|
|
|
setState(() => Matrix.of(context).shareContent = null);
|
|
|
|
} else {
|
|
|
|
setState(() => selectedRoomIds.clear());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-19 13:48:23 +02:00
|
|
|
void setActiveClient(Client client) {
|
|
|
|
VRouter.of(context).to('/rooms');
|
|
|
|
setState(() {
|
2022-04-03 19:00:35 +02:00
|
|
|
_activeSpacesEntry = null;
|
2022-04-02 16:18:36 +02:00
|
|
|
snappingSheetController = SnappingSheetController();
|
|
|
|
snappingSheetScrollContentController = ScrollController();
|
2021-09-19 13:48:23 +02:00
|
|
|
selectedRoomIds.clear();
|
|
|
|
Matrix.of(context).setActiveClient(client);
|
|
|
|
});
|
2021-12-22 09:11:30 +01:00
|
|
|
_clientStream.add(client);
|
2021-09-19 13:48:23 +02:00
|
|
|
}
|
|
|
|
|
2021-09-21 09:16:57 +02:00
|
|
|
void setActiveBundle(String bundle) {
|
|
|
|
VRouter.of(context).to('/rooms');
|
|
|
|
setState(() {
|
2022-04-03 19:00:35 +02:00
|
|
|
_activeSpacesEntry = null;
|
2021-09-21 09:16:57 +02:00
|
|
|
selectedRoomIds.clear();
|
|
|
|
Matrix.of(context).activeBundle = bundle;
|
|
|
|
if (!Matrix.of(context)
|
2022-01-29 12:35:03 +01:00
|
|
|
.currentBundle!
|
2021-09-21 09:16:57 +02:00
|
|
|
.any((client) => client == Matrix.of(context).client)) {
|
|
|
|
Matrix.of(context)
|
2022-01-29 12:35:03 +01:00
|
|
|
.setActiveClient(Matrix.of(context).currentBundle!.first);
|
2021-09-21 09:16:57 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2021-09-19 13:48:23 +02:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
void editBundlesForAccount(String? userId, String? activeBundle) async {
|
2021-09-19 13:48:23 +02:00
|
|
|
final client = Matrix.of(context)
|
|
|
|
.widget
|
2022-01-29 12:35:03 +01:00
|
|
|
.clients[Matrix.of(context).getClientIndexByMatrixId(userId!)];
|
2021-09-19 13:48:23 +02:00
|
|
|
final action = await showConfirmationDialog<EditBundleAction>(
|
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
title: L10n.of(context)!.editBundlesForAccount,
|
2021-09-19 13:48:23 +02:00
|
|
|
actions: [
|
|
|
|
AlertDialogAction(
|
|
|
|
key: EditBundleAction.addToBundle,
|
2022-01-29 12:35:03 +01:00
|
|
|
label: L10n.of(context)!.addToBundle,
|
2021-09-19 13:48:23 +02:00
|
|
|
),
|
2021-11-14 18:47:18 +01:00
|
|
|
if (activeBundle != client.userID)
|
2021-09-19 13:48:23 +02:00
|
|
|
AlertDialogAction(
|
|
|
|
key: EditBundleAction.removeFromBundle,
|
2022-01-29 12:35:03 +01:00
|
|
|
label: L10n.of(context)!.removeFromBundle,
|
2021-09-19 13:48:23 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
if (action == null) return;
|
|
|
|
switch (action) {
|
|
|
|
case EditBundleAction.addToBundle:
|
|
|
|
final bundle = await showTextInputDialog(
|
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
title: L10n.of(context)!.bundleName,
|
2021-09-19 13:48:23 +02:00
|
|
|
textFields: [
|
2022-01-29 12:35:03 +01:00
|
|
|
DialogTextField(hintText: L10n.of(context)!.bundleName)
|
2021-09-19 13:48:23 +02:00
|
|
|
]);
|
2021-11-14 18:47:18 +01:00
|
|
|
if (bundle == null || bundle.isEmpty || bundle.single.isEmpty) return;
|
2021-09-19 13:48:23 +02:00
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => client.setAccountBundle(bundle.single),
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case EditBundleAction.removeFromBundle:
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2022-01-29 12:35:03 +01:00
|
|
|
future: () => client.removeFromAccountBundle(activeBundle!),
|
2021-09-19 13:48:23 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool get displayBundles =>
|
|
|
|
Matrix.of(context).hasComplexBundles &&
|
|
|
|
Matrix.of(context).accountBundles.keys.length > 1;
|
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
String? get secureActiveBundle {
|
2021-09-19 13:48:23 +02:00
|
|
|
if (Matrix.of(context).activeBundle == null ||
|
|
|
|
!Matrix.of(context)
|
|
|
|
.accountBundles
|
|
|
|
.keys
|
|
|
|
.contains(Matrix.of(context).activeBundle)) {
|
|
|
|
return Matrix.of(context).accountBundles.keys.first;
|
|
|
|
}
|
|
|
|
return Matrix.of(context).activeBundle;
|
|
|
|
}
|
|
|
|
|
|
|
|
void resetActiveBundle() {
|
2022-01-29 12:35:03 +01:00
|
|
|
WidgetsBinding.instance!.addPostFrameCallback((timeStamp) {
|
2021-09-19 13:48:23 +02:00
|
|
|
setState(() {
|
|
|
|
Matrix.of(context).activeBundle = null;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
@override
|
2021-05-23 13:28:55 +02:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Matrix.of(context).navigatorContext = context;
|
|
|
|
return ChatListView(this);
|
|
|
|
}
|
2022-02-19 09:27:03 +01:00
|
|
|
|
|
|
|
void _hackyWebRTCFixForWeb() {
|
|
|
|
Matrix.of(context).voipPlugin?.context = context;
|
|
|
|
}
|
2022-04-02 16:18:36 +02:00
|
|
|
|
|
|
|
void snapBackSpacesSheet() {
|
|
|
|
snappingSheetController.snapToPosition(
|
|
|
|
const SnappingPosition.pixels(
|
|
|
|
positionPixels: kSpacesBottomBarHeight,
|
|
|
|
snappingDuration: Duration(milliseconds: 500),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
expandSpaces() {
|
|
|
|
snappingSheetController.snapToPosition(
|
|
|
|
const SnappingPosition.factor(positionFactor: 0.5),
|
|
|
|
);
|
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
2021-09-19 13:48:23 +02:00
|
|
|
|
|
|
|
enum EditBundleAction { addToBundle, removeFromBundle }
|