fluffychat/lib/pages/chat_list/chat_list.dart

613 lines
19 KiB
Dart
Raw Normal View History

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