2021-04-14 14:09:46 +02:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
2021-05-23 13:11:55 +02:00
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
import 'package:fluffychat/utils/fluffy_share.dart';
|
2021-05-22 09:08:23 +02:00
|
|
|
import 'package:fluffychat/pages/views/chat_list_view.dart';
|
2021-04-14 14:09:46 +02:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
|
|
|
import 'package:fluffychat/utils/platform_infos.dart';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
|
|
|
import 'package:receive_sharing_intent/receive_sharing_intent.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-05-16 16:38:52 +02:00
|
|
|
import '../main.dart';
|
2021-05-22 08:53:52 +02:00
|
|
|
import '../widgets/matrix.dart';
|
2021-05-22 09:24:39 +02:00
|
|
|
import '../utils/matrix_sdk_extensions.dart/matrix_file_extension.dart';
|
2021-04-14 14:09:46 +02:00
|
|
|
import '../utils/url_launcher.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
|
|
|
|
enum SelectMode { normal, share, select }
|
|
|
|
enum PopupMenuAction { settings, invite, newGroup, setStatus, archive }
|
|
|
|
|
|
|
|
class ChatList extends StatefulWidget {
|
2021-05-23 20:13:10 +02:00
|
|
|
const ChatList({Key key}) : super(key: key);
|
2021-04-14 14:09:46 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
ChatListController createState() => ChatListController();
|
|
|
|
}
|
|
|
|
|
|
|
|
class ChatListController extends State<ChatList> {
|
|
|
|
StreamSubscription _intentDataStreamSubscription;
|
|
|
|
|
|
|
|
StreamSubscription _intentFileStreamSubscription;
|
|
|
|
|
2021-05-16 16:38:52 +02:00
|
|
|
StreamSubscription _intentUriStreamSubscription;
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
final selectedRoomIds = <String>{};
|
|
|
|
|
2021-05-23 20:13:10 +02:00
|
|
|
String get activeChat => VRouter.of(context).pathParameters['roomid'];
|
|
|
|
|
2021-04-14 14:09:46 +02:00
|
|
|
void _processIncomingSharedFiles(List<SharedMediaFile> files) {
|
|
|
|
if (files?.isEmpty ?? true) return;
|
2021-05-23 13:11:55 +02:00
|
|
|
VRouter.of(context).push('/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,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void _processIncomingSharedText(String text) {
|
|
|
|
if (text == null) return;
|
2021-05-23 13:11:55 +02:00
|
|
|
VRouter.of(context).push('/rooms');
|
2021-04-14 14:09:46 +02:00
|
|
|
if (text.toLowerCase().startsWith(AppConfig.inviteLinkPrefix) ||
|
|
|
|
(text.toLowerCase().startsWith(AppConfig.schemePrefix) &&
|
|
|
|
!RegExp(r'\s').hasMatch(text))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Matrix.of(context).shareContent = {
|
|
|
|
'msgtype': 'm.text',
|
|
|
|
'body': text,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-05-16 16:38:52 +02:00
|
|
|
void _processIncomingUris(String text) async {
|
|
|
|
if (text == null || !text.startsWith(AppConfig.appOpenUrlScheme)) return;
|
|
|
|
if (text.toLowerCase().startsWith(AppConfig.inviteLinkPrefix) ||
|
|
|
|
(text.toLowerCase().startsWith(AppConfig.schemePrefix) &&
|
|
|
|
!RegExp(r'\s').hasMatch(text))) {
|
2021-05-23 13:11:55 +02:00
|
|
|
VRouter.of(context).push('/rooms');
|
2021-05-16 16:38:52 +02:00
|
|
|
UrlLauncher(context, text).openMatrixToUrl();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
_intentDataStreamSubscription = linkStream.listen(_processIncomingUris);
|
|
|
|
if (FluffyChatApp.gotInitialLink == false) {
|
|
|
|
FluffyChatApp.gotInitialLink = true;
|
|
|
|
getInitialLink().then(_processIncomingUris);
|
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
_initReceiveSharingIntent();
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_intentDataStreamSubscription?.cancel();
|
|
|
|
_intentFileStreamSubscription?.cancel();
|
2021-05-16 16:38:52 +02:00
|
|
|
_intentUriStreamSubscription?.cancel();
|
2021-04-14 14:09:46 +02:00
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void toggleSelection(String roomId) {
|
|
|
|
setState(() => selectedRoomIds.contains(roomId)
|
|
|
|
? selectedRoomIds.remove(roomId)
|
|
|
|
: selectedRoomIds.add(roomId));
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> toggleUnread() {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(selectedRoomIds.single);
|
|
|
|
return showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setUnread(!room.isUnread),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> toggleFavouriteRoom() {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(selectedRoomIds.single);
|
|
|
|
return showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setFavourite(!room.isFavourite),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> toggleMuted() {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(selectedRoomIds.single);
|
|
|
|
return showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setPushRuleState(
|
|
|
|
room.pushRuleState == PushRuleState.notify
|
2021-04-21 14:19:54 +02:00
|
|
|
? PushRuleState.mentionsOnly
|
2021-04-14 14:09:46 +02:00
|
|
|
: PushRuleState.notify),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
title: L10n.of(context).areYouSure,
|
|
|
|
okLabel: L10n.of(context).yes,
|
|
|
|
cancelLabel: L10n.of(context).cancel,
|
|
|
|
) ==
|
|
|
|
OkCancelResult.ok;
|
|
|
|
if (!confirmed) return;
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => _archiveSelectedRooms(),
|
|
|
|
);
|
|
|
|
setState(() => null);
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
title: L10n.of(context).setStatus,
|
|
|
|
okLabel: L10n.of(context).ok,
|
|
|
|
cancelLabel: L10n.of(context).cancel,
|
|
|
|
textFields: [
|
|
|
|
DialogTextField(
|
|
|
|
hintText: L10n.of(context).statusExampleMessage,
|
|
|
|
),
|
|
|
|
]);
|
|
|
|
if (input == null) return;
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2021-05-20 13:59:55 +02:00
|
|
|
future: () => Matrix.of(context).client.setPresence(
|
2021-04-14 14:09:46 +02:00
|
|
|
Matrix.of(context).client.userID,
|
|
|
|
PresenceType.online,
|
|
|
|
statusMsg: input.single,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void onPopupMenuSelect(action) {
|
|
|
|
switch (action) {
|
|
|
|
case PopupMenuAction.setStatus:
|
|
|
|
setStatus();
|
|
|
|
break;
|
|
|
|
case PopupMenuAction.settings:
|
2021-05-23 13:11:55 +02:00
|
|
|
VRouter.of(context).push('/settings');
|
2021-04-14 14:09:46 +02:00
|
|
|
break;
|
|
|
|
case PopupMenuAction.invite:
|
|
|
|
FluffyShare.share(
|
|
|
|
L10n.of(context).inviteText(Matrix.of(context).client.userID,
|
|
|
|
'https://matrix.to/#/${Matrix.of(context).client.userID}'),
|
|
|
|
context);
|
|
|
|
break;
|
|
|
|
case PopupMenuAction.newGroup:
|
2021-05-23 13:11:55 +02:00
|
|
|
VRouter.of(context).push('/newgroup');
|
2021-04-14 14:09:46 +02:00
|
|
|
break;
|
|
|
|
case PopupMenuAction.archive:
|
2021-05-23 13:11:55 +02:00
|
|
|
VRouter.of(context).push('/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;
|
|
|
|
await client.getRoomById(roomId).leave();
|
|
|
|
toggleSelection(roomId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> waitForFirstSync() async {
|
|
|
|
final client = Matrix.of(context).client;
|
|
|
|
if (client.prevBatch?.isEmpty ?? true) {
|
|
|
|
await client.onFirstSync.stream.first;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cancelAction() {
|
|
|
|
final selectMode = Matrix.of(context).shareContent != null
|
|
|
|
? SelectMode.share
|
|
|
|
: selectedRoomIds.isEmpty
|
|
|
|
? SelectMode.normal
|
|
|
|
: SelectMode.select;
|
|
|
|
if (selectMode == SelectMode.share) {
|
|
|
|
setState(() => Matrix.of(context).shareContent = null);
|
|
|
|
} else {
|
|
|
|
setState(() => selectedRoomIds.clear());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2021-05-23 13:28:55 +02:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Matrix.of(context).navigatorContext = context;
|
|
|
|
return ChatListView(this);
|
|
|
|
}
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
enum ChatListPopupMenuItemActions {
|
|
|
|
createGroup,
|
|
|
|
discover,
|
|
|
|
setStatus,
|
|
|
|
inviteContact,
|
|
|
|
settings,
|
|
|
|
}
|