2021-04-15 13:03:14 +02:00
|
|
|
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
2021-04-03 13:09:20 +02:00
|
|
|
|
2021-06-18 10:29:48 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
2020-10-04 17:01:54 +02:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
import 'package:file_picker_cross/file_picker_cross.dart';
|
2021-05-22 09:08:23 +02:00
|
|
|
import 'package:fluffychat/pages/views/chat_details_view.dart';
|
2021-05-22 08:53:52 +02:00
|
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
2021-05-01 09:58:09 +02:00
|
|
|
import 'package:flutter/services.dart';
|
2021-04-15 13:03:14 +02:00
|
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
2021-05-22 09:24:39 +02:00
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/matrix_locals.dart';
|
2021-04-15 13:03:14 +02:00
|
|
|
import 'package:fluffychat/utils/platform_infos.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2021-04-15 13:03:14 +02:00
|
|
|
import 'package:image_picker/image_picker.dart';
|
2021-05-23 13:11:55 +02:00
|
|
|
import 'package:vrouter/vrouter.dart';
|
2021-04-15 13:03:14 +02:00
|
|
|
|
2021-05-01 09:58:09 +02:00
|
|
|
enum AliasActions { copy, delete, setCanonical }
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
class ChatDetails extends StatefulWidget {
|
2021-05-23 13:11:55 +02:00
|
|
|
const ChatDetails();
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
@override
|
|
|
|
ChatDetailsController createState() => ChatDetailsController();
|
|
|
|
}
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
class ChatDetailsController extends State<ChatDetails> {
|
|
|
|
List<User> members;
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2021-05-23 13:11:55 +02:00
|
|
|
String get roomId => VRouter.of(context).pathParameters['roomid'];
|
2021-04-15 13:03:14 +02:00
|
|
|
|
|
|
|
void setDisplaynameAction() async {
|
2021-05-23 13:11:55 +02:00
|
|
|
final room = Matrix.of(context).client.getRoomById(roomId);
|
2021-04-15 13:03:14 +02:00
|
|
|
final input = await showTextInputDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-04-15 13:03:14 +02:00
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).changeTheNameOfTheGroup,
|
|
|
|
okLabel: L10n.of(context).ok,
|
|
|
|
cancelLabel: L10n.of(context).cancel,
|
|
|
|
textFields: [
|
|
|
|
DialogTextField(
|
|
|
|
initialText: room.getLocalizedDisplayname(
|
|
|
|
MatrixLocals(
|
|
|
|
L10n.of(context),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
);
|
|
|
|
if (input == null) return;
|
|
|
|
final success = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setName(input.single),
|
|
|
|
);
|
|
|
|
if (success.error == null) {
|
2021-05-23 13:11:55 +02:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
2021-04-15 13:03:14 +02:00
|
|
|
SnackBar(content: Text(L10n.of(context).displaynameHasBeenChanged)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-01 09:58:09 +02:00
|
|
|
void editAliases() async {
|
2021-05-23 13:11:55 +02:00
|
|
|
final room = Matrix.of(context).client.getRoomById(roomId);
|
2021-05-01 09:58:09 +02:00
|
|
|
|
|
|
|
// The current endpoint doesnt seem to be implemented in Synapse. This may
|
|
|
|
// change in the future and then we just need to switch to this api call:
|
|
|
|
//
|
|
|
|
// final aliases = await showFutureLoadingDialog(
|
|
|
|
// context: context,
|
|
|
|
// future: () => room.client.requestRoomAliases(room.id),
|
|
|
|
// );
|
|
|
|
//
|
|
|
|
// While this is not working we use the unstable api:
|
|
|
|
final aliases = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.client
|
|
|
|
.request(
|
|
|
|
RequestType.GET,
|
|
|
|
'/client/unstable/org.matrix.msc2432/rooms/${Uri.encodeComponent(room.id)}/aliases',
|
|
|
|
)
|
|
|
|
.then((response) => List<String>.from(response['aliases'])),
|
|
|
|
);
|
|
|
|
// Switch to the stable api once it is implemented.
|
|
|
|
|
|
|
|
if (aliases.error != null) return;
|
|
|
|
final adminMode = room.canSendEvent('m.room.canonical_alias');
|
|
|
|
if (aliases.result.isEmpty && (room.canonicalAlias?.isNotEmpty ?? false)) {
|
|
|
|
aliases.result.add(room.canonicalAlias);
|
|
|
|
}
|
|
|
|
if (aliases.result.isEmpty && adminMode) {
|
|
|
|
return setAliasAction();
|
|
|
|
}
|
|
|
|
final select = await showConfirmationDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-05-01 09:58:09 +02:00
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).editRoomAliases,
|
|
|
|
actions: [
|
|
|
|
if (adminMode)
|
|
|
|
AlertDialogAction(label: L10n.of(context).create, key: 'new'),
|
|
|
|
...aliases.result
|
|
|
|
.map((alias) => AlertDialogAction(key: alias, label: alias))
|
|
|
|
.toList(),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
if (select == null) return;
|
|
|
|
if (select == 'new') {
|
|
|
|
return setAliasAction();
|
|
|
|
}
|
|
|
|
final option = await showConfirmationDialog<AliasActions>(
|
|
|
|
context: context,
|
|
|
|
title: select,
|
|
|
|
actions: [
|
|
|
|
AlertDialogAction(
|
|
|
|
label: L10n.of(context).copyToClipboard,
|
|
|
|
key: AliasActions.copy,
|
|
|
|
isDefaultAction: true,
|
|
|
|
),
|
|
|
|
if (adminMode) ...{
|
|
|
|
AlertDialogAction(
|
|
|
|
label: L10n.of(context).setAsCanonicalAlias,
|
|
|
|
key: AliasActions.setCanonical,
|
|
|
|
isDestructiveAction: true,
|
|
|
|
),
|
|
|
|
AlertDialogAction(
|
|
|
|
label: L10n.of(context).delete,
|
|
|
|
key: AliasActions.delete,
|
|
|
|
isDestructiveAction: true,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
);
|
|
|
|
switch (option) {
|
|
|
|
case AliasActions.copy:
|
|
|
|
await Clipboard.setData(ClipboardData(text: select));
|
2021-05-23 13:11:55 +02:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
2021-05-01 09:58:09 +02:00
|
|
|
SnackBar(content: Text(L10n.of(context).copiedToClipboard)),
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case AliasActions.delete:
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2021-05-20 13:59:55 +02:00
|
|
|
future: () => room.client.deleteRoomAlias(select),
|
2021-05-01 09:58:09 +02:00
|
|
|
);
|
|
|
|
break;
|
|
|
|
case AliasActions.setCanonical:
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2021-05-20 13:59:55 +02:00
|
|
|
future: () => room.client
|
|
|
|
.setRoomStateWithKey(room.id, EventTypes.RoomCanonicalAlias, {
|
2021-05-01 09:58:09 +02:00
|
|
|
'alias': select,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void setAliasAction() async {
|
2021-05-23 13:11:55 +02:00
|
|
|
final room = Matrix.of(context).client.getRoomById(roomId);
|
2021-05-01 09:58:09 +02:00
|
|
|
final domain = room.client.userID.domain;
|
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
final input = await showTextInputDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-04-15 13:03:14 +02:00
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).setInvitationLink,
|
|
|
|
okLabel: L10n.of(context).ok,
|
|
|
|
cancelLabel: L10n.of(context).cancel,
|
|
|
|
textFields: [
|
|
|
|
DialogTextField(
|
2021-05-01 09:58:09 +02:00
|
|
|
prefixText: '#',
|
|
|
|
suffixText: domain,
|
|
|
|
hintText: L10n.of(context).alias,
|
|
|
|
initialText: room.canonicalAlias?.localpart,
|
2021-04-15 13:03:14 +02:00
|
|
|
)
|
|
|
|
],
|
|
|
|
);
|
|
|
|
if (input == null) return;
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
2021-05-20 13:59:55 +02:00
|
|
|
future: () =>
|
|
|
|
room.client.setRoomAlias('#' + input.single + ':' + domain, room.id),
|
2021-04-15 13:03:14 +02:00
|
|
|
);
|
|
|
|
}
|
2021-04-14 13:58:40 +02:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void setTopicAction() async {
|
2021-05-23 13:11:55 +02:00
|
|
|
final room = Matrix.of(context).client.getRoomById(roomId);
|
2021-04-15 13:03:14 +02:00
|
|
|
final input = await showTextInputDialog(
|
2021-05-23 15:02:36 +02:00
|
|
|
useRootNavigator: false,
|
2021-04-15 13:03:14 +02:00
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).setGroupDescription,
|
|
|
|
okLabel: L10n.of(context).ok,
|
|
|
|
cancelLabel: L10n.of(context).cancel,
|
|
|
|
textFields: [
|
|
|
|
DialogTextField(
|
|
|
|
hintText: L10n.of(context).setGroupDescription,
|
|
|
|
initialText: room.topic,
|
|
|
|
minLines: 1,
|
|
|
|
maxLines: 4,
|
|
|
|
)
|
|
|
|
],
|
|
|
|
);
|
|
|
|
if (input == null) return;
|
|
|
|
final success = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setDescription(input.single),
|
|
|
|
);
|
|
|
|
if (success.error == null) {
|
2021-05-23 13:11:55 +02:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
|
2021-04-15 13:03:14 +02:00
|
|
|
content: Text(L10n.of(context).groupDescriptionHasBeenChanged)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void setGuestAccessAction(GuestAccess guestAccess) => showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Matrix.of(context)
|
|
|
|
.client
|
2021-05-23 13:11:55 +02:00
|
|
|
.getRoomById(roomId)
|
2021-04-15 13:03:14 +02:00
|
|
|
.setGuestAccess(guestAccess),
|
|
|
|
);
|
|
|
|
|
|
|
|
void setHistoryVisibilityAction(HistoryVisibility historyVisibility) =>
|
|
|
|
showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Matrix.of(context)
|
|
|
|
.client
|
2021-05-23 13:11:55 +02:00
|
|
|
.getRoomById(roomId)
|
2021-04-15 13:03:14 +02:00
|
|
|
.setHistoryVisibility(historyVisibility),
|
|
|
|
);
|
|
|
|
|
|
|
|
void setJoinRulesAction(JoinRules joinRule) => showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Matrix.of(context)
|
|
|
|
.client
|
2021-05-23 13:11:55 +02:00
|
|
|
.getRoomById(roomId)
|
2021-04-15 13:03:14 +02:00
|
|
|
.setJoinRules(joinRule),
|
|
|
|
);
|
|
|
|
|
|
|
|
void goToEmoteSettings() async {
|
2021-05-23 13:11:55 +02:00
|
|
|
final room = Matrix.of(context).client.getRoomById(roomId);
|
2021-04-15 13:03:14 +02:00
|
|
|
// okay, we need to test if there are any emote state events other than the default one
|
|
|
|
// if so, we need to be directed to a selection screen for which pack we want to look at
|
|
|
|
// otherwise, we just open the normal one.
|
|
|
|
if ((room.states['im.ponies.room_emotes'] ?? <String, Event>{})
|
|
|
|
.keys
|
|
|
|
.any((String s) => s.isNotEmpty)) {
|
2021-08-04 10:15:42 +02:00
|
|
|
VRouter.of(context).to('multiple_emotes');
|
2021-04-15 13:03:14 +02:00
|
|
|
} else {
|
2021-08-04 10:15:42 +02:00
|
|
|
VRouter.of(context).to('emotes');
|
2021-04-15 13:03:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void setAvatarAction() async {
|
|
|
|
MatrixFile file;
|
|
|
|
if (PlatformInfos.isMobile) {
|
|
|
|
final result = await ImagePicker().getImage(
|
|
|
|
source: ImageSource.gallery,
|
|
|
|
imageQuality: 50,
|
|
|
|
maxWidth: 1600,
|
|
|
|
maxHeight: 1600);
|
|
|
|
if (result == null) return;
|
|
|
|
file = MatrixFile(
|
|
|
|
bytes: await result.readAsBytes(),
|
|
|
|
name: result.path,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
final result = await FilePickerCross.importFromStorage(
|
|
|
|
type: FileTypeCross.image,
|
|
|
|
);
|
|
|
|
if (result == null) return;
|
|
|
|
file = MatrixFile(
|
|
|
|
bytes: result.toUint8List(),
|
|
|
|
name: result.fileName,
|
|
|
|
);
|
|
|
|
}
|
2021-05-23 13:11:55 +02:00
|
|
|
final room = Matrix.of(context).client.getRoomById(roomId);
|
2021-04-15 13:03:14 +02:00
|
|
|
|
|
|
|
final success = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setAvatar(file),
|
|
|
|
);
|
|
|
|
if (success.error == null) {
|
2021-05-23 13:11:55 +02:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
2021-04-15 13:03:14 +02:00
|
|
|
SnackBar(content: Text(L10n.of(context).avatarHasBeenChanged)));
|
|
|
|
}
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|
2021-04-15 13:03:14 +02:00
|
|
|
|
|
|
|
void requestMoreMembersAction() async {
|
2021-05-23 13:11:55 +02:00
|
|
|
final room = Matrix.of(context).client.getRoomById(roomId);
|
2021-04-15 13:03:14 +02:00
|
|
|
final participants = await showFutureLoadingDialog(
|
|
|
|
context: context, future: () => room.requestParticipants());
|
|
|
|
if (participants.error == null) {
|
|
|
|
setState(() => members = participants.result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2021-05-23 13:11:55 +02:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
members ??= Matrix.of(context).client.getRoomById(roomId).getParticipants();
|
|
|
|
return Container(
|
|
|
|
width: 360.0,
|
|
|
|
child: ChatDetailsView(this),
|
|
|
|
);
|
|
|
|
}
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|