2021-04-15 13:03:14 +02:00
|
|
|
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
2021-01-16 12:46:38 +01:00
|
|
|
import 'package:adaptive_page_layout/adaptive_page_layout.dart';
|
2021-04-03 13:09:20 +02:00
|
|
|
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'package:famedlysdk/famedlysdk.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';
|
|
|
|
import 'package:fluffychat/views/ui/chat_details_ui.dart';
|
|
|
|
import 'package:fluffychat/views/widgets/matrix.dart';
|
|
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:fluffychat/utils/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';
|
|
|
|
|
|
|
|
class ChatDetails extends StatefulWidget {
|
|
|
|
final String roomId;
|
2020-10-03 13:11:07 +02:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
const ChatDetails(this.roomId);
|
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
|
|
|
|
|
|
|
@override
|
2021-04-15 13:03:14 +02:00
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
members ??=
|
|
|
|
Matrix.of(context).client.getRoomById(widget.roomId).getParticipants();
|
|
|
|
}
|
|
|
|
|
|
|
|
void setDisplaynameAction() async {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(widget.roomId);
|
|
|
|
final input = await showTextInputDialog(
|
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).changeTheNameOfTheGroup,
|
|
|
|
okLabel: L10n.of(context).ok,
|
|
|
|
cancelLabel: L10n.of(context).cancel,
|
|
|
|
useRootNavigator: false,
|
|
|
|
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) {
|
|
|
|
AdaptivePageLayout.of(context).showSnackBar(
|
|
|
|
SnackBar(content: Text(L10n.of(context).displaynameHasBeenChanged)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void setCanonicalAliasAction(context) async {
|
|
|
|
final input = await showTextInputDialog(
|
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).setInvitationLink,
|
|
|
|
okLabel: L10n.of(context).ok,
|
|
|
|
cancelLabel: L10n.of(context).cancel,
|
|
|
|
useRootNavigator: false,
|
|
|
|
textFields: [
|
|
|
|
DialogTextField(
|
|
|
|
hintText: '#localpart:domain',
|
|
|
|
initialText: L10n.of(context).alias.toLowerCase(),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
);
|
|
|
|
if (input == null) return;
|
|
|
|
final room = Matrix.of(context).client.getRoomById(widget.roomId);
|
|
|
|
final domain = room.client.userID.domain;
|
|
|
|
final canonicalAlias = '%23' + input.single + '%3A' + domain;
|
|
|
|
final aliasEvent = room.getState('m.room.aliases', domain);
|
|
|
|
final aliases =
|
|
|
|
aliasEvent != null ? aliasEvent.content['aliases'] ?? [] : [];
|
|
|
|
if (aliases.indexWhere((s) => s == canonicalAlias) == -1) {
|
|
|
|
final newAliases = List<String>.from(aliases);
|
|
|
|
newAliases.add(canonicalAlias);
|
|
|
|
final response = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.client.requestRoomAliasInformation(canonicalAlias),
|
2020-01-05 12:27:03 +01:00
|
|
|
);
|
2021-04-15 13:03:14 +02:00
|
|
|
if (response.error != null) {
|
|
|
|
final success = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.client.createRoomAlias(canonicalAlias, room.id),
|
|
|
|
);
|
|
|
|
if (success.error != null) return;
|
|
|
|
}
|
2020-01-05 12:27:03 +01:00
|
|
|
}
|
2021-04-15 13:03:14 +02:00
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.client.sendState(room.id, 'm.room.canonical_alias', {
|
|
|
|
'alias': input.single,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
2021-04-14 13:58:40 +02:00
|
|
|
|
2021-04-15 13:03:14 +02:00
|
|
|
void setTopicAction() async {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(widget.roomId);
|
|
|
|
final input = await showTextInputDialog(
|
|
|
|
context: context,
|
|
|
|
title: L10n.of(context).setGroupDescription,
|
|
|
|
okLabel: L10n.of(context).ok,
|
|
|
|
cancelLabel: L10n.of(context).cancel,
|
|
|
|
useRootNavigator: false,
|
|
|
|
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) {
|
|
|
|
AdaptivePageLayout.of(context).showSnackBar(SnackBar(
|
|
|
|
content: Text(L10n.of(context).groupDescriptionHasBeenChanged)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void setGuestAccessAction(GuestAccess guestAccess) => showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Matrix.of(context)
|
|
|
|
.client
|
|
|
|
.getRoomById(widget.roomId)
|
|
|
|
.setGuestAccess(guestAccess),
|
|
|
|
);
|
|
|
|
|
|
|
|
void setHistoryVisibilityAction(HistoryVisibility historyVisibility) =>
|
|
|
|
showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Matrix.of(context)
|
|
|
|
.client
|
|
|
|
.getRoomById(widget.roomId)
|
|
|
|
.setHistoryVisibility(historyVisibility),
|
|
|
|
);
|
|
|
|
|
|
|
|
void setJoinRulesAction(JoinRules joinRule) => showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => Matrix.of(context)
|
|
|
|
.client
|
|
|
|
.getRoomById(widget.roomId)
|
|
|
|
.setJoinRules(joinRule),
|
|
|
|
);
|
|
|
|
|
|
|
|
void goToEmoteSettings() async {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(widget.roomId);
|
|
|
|
// 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)) {
|
|
|
|
await AdaptivePageLayout.of(context)
|
|
|
|
.pushNamed('/rooms/${room.id}/emotes');
|
|
|
|
} else {
|
|
|
|
await AdaptivePageLayout.of(context)
|
|
|
|
.pushNamed('/settings/emotes', arguments: {'room': room});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
final room = Matrix.of(context).client.getRoomById(widget.roomId);
|
|
|
|
|
|
|
|
final success = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setAvatar(file),
|
|
|
|
);
|
|
|
|
if (success.error == null) {
|
|
|
|
AdaptivePageLayout.of(context).showSnackBar(
|
|
|
|
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 {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(widget.roomId);
|
|
|
|
final participants = await showFutureLoadingDialog(
|
|
|
|
context: context, future: () => room.requestParticipants());
|
|
|
|
if (participants.error == null) {
|
|
|
|
setState(() => members = participants.result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) => ChatDetailsUI(this);
|
2020-01-01 19:10:13 +01:00
|
|
|
}
|