2020-01-04 12:53:49 +00:00
|
|
|
import 'dart:async';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
import 'package:fluffychat/components/adaptive_page_layout.dart';
|
|
|
|
import 'package:fluffychat/components/chat_settings_popup_menu.dart';
|
|
|
|
import 'package:fluffychat/components/content_banner.dart';
|
|
|
|
import 'package:fluffychat/components/list_items/participant_list_item.dart';
|
|
|
|
import 'package:fluffychat/components/matrix.dart';
|
|
|
|
import 'package:fluffychat/utils/app_route.dart';
|
2020-01-08 19:43:30 +00:00
|
|
|
import 'package:fluffychat/utils/room_name_calculator.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:fluffychat/views/chat_list.dart';
|
|
|
|
import 'package:fluffychat/views/invitation_selection.dart';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:image_picker/image_picker.dart';
|
2020-01-17 11:06:03 +00:00
|
|
|
import 'package:link_text/link_text.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:toast/toast.dart';
|
|
|
|
|
|
|
|
class ChatDetails extends StatefulWidget {
|
|
|
|
final Room room;
|
|
|
|
|
|
|
|
const ChatDetails(this.room);
|
|
|
|
|
|
|
|
@override
|
|
|
|
_ChatDetailsState createState() => _ChatDetailsState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ChatDetailsState extends State<ChatDetails> {
|
|
|
|
List<User> members;
|
2020-01-17 11:06:03 +00:00
|
|
|
bool topicEditMode = false;
|
2020-01-01 18:10:13 +00:00
|
|
|
void setDisplaynameAction(BuildContext context, String displayname) async {
|
|
|
|
final MatrixState matrix = Matrix.of(context);
|
2020-01-04 12:53:49 +00:00
|
|
|
final success = await matrix.tryRequestWithLoadingDialog(
|
2020-01-01 18:10:13 +00:00
|
|
|
widget.room.setName(displayname),
|
|
|
|
);
|
2020-01-04 12:53:49 +00:00
|
|
|
if (success != false) {
|
2020-01-01 18:10:13 +00:00
|
|
|
Toast.show(
|
|
|
|
"Displayname has been changed",
|
|
|
|
context,
|
|
|
|
duration: Toast.LENGTH_LONG,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-17 11:06:03 +00:00
|
|
|
void setTopicAction(BuildContext context, String displayname) async {
|
|
|
|
setState(() => topicEditMode = false);
|
|
|
|
final MatrixState matrix = Matrix.of(context);
|
|
|
|
final success = await matrix.tryRequestWithLoadingDialog(
|
|
|
|
widget.room.setDescription(displayname),
|
|
|
|
);
|
|
|
|
if (success != false) {
|
|
|
|
Toast.show(
|
|
|
|
"Group description has been changed",
|
|
|
|
context,
|
|
|
|
duration: Toast.LENGTH_LONG,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-01 18:10:13 +00:00
|
|
|
void setAvatarAction(BuildContext context) async {
|
|
|
|
final File tempFile = await ImagePicker.pickImage(
|
|
|
|
source: ImageSource.gallery,
|
|
|
|
imageQuality: 50,
|
|
|
|
maxWidth: 1600,
|
|
|
|
maxHeight: 1600);
|
|
|
|
if (tempFile == null) return;
|
|
|
|
final MatrixState matrix = Matrix.of(context);
|
2020-01-04 12:53:49 +00:00
|
|
|
final success = await matrix.tryRequestWithLoadingDialog(
|
2020-01-01 18:10:13 +00:00
|
|
|
widget.room.setAvatar(
|
|
|
|
MatrixFile(
|
|
|
|
bytes: await tempFile.readAsBytes(),
|
|
|
|
path: tempFile.path,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2020-01-04 12:53:49 +00:00
|
|
|
if (success != false) {
|
2020-01-01 18:10:13 +00:00
|
|
|
Toast.show(
|
|
|
|
"Avatar has been changed",
|
|
|
|
context,
|
|
|
|
duration: Toast.LENGTH_LONG,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void requestMoreMembersAction(BuildContext context) async {
|
|
|
|
final List<User> participants = await Matrix.of(context)
|
|
|
|
.tryRequestWithLoadingDialog(widget.room.requestParticipants());
|
|
|
|
if (participants != null) setState(() => members = participants);
|
|
|
|
}
|
|
|
|
|
2020-01-04 12:53:49 +00:00
|
|
|
StreamSubscription onUpdate;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
onUpdate?.cancel();
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
2020-01-01 18:10:13 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-01-05 11:27:03 +00:00
|
|
|
if (widget.room == null) {
|
|
|
|
return Center(
|
|
|
|
child: Text("You are no longer participating in this chat"),
|
|
|
|
);
|
|
|
|
}
|
2020-01-01 18:10:13 +00:00
|
|
|
members ??= widget.room.getParticipants();
|
|
|
|
final int actualMembersCount =
|
|
|
|
widget.room.mInvitedMemberCount + widget.room.mJoinedMemberCount;
|
|
|
|
final bool canRequestMoreMembers = members.length < actualMembersCount;
|
2020-01-04 12:53:49 +00:00
|
|
|
this.onUpdate ??= widget.room.onUpdate.stream
|
|
|
|
.listen((id) => setState(() => members = null));
|
2020-01-01 18:10:13 +00:00
|
|
|
return AdaptivePageLayout(
|
|
|
|
primaryPage: FocusPage.SECOND,
|
|
|
|
firstScaffold: ChatList(
|
|
|
|
activeChat: widget.room.id,
|
|
|
|
),
|
|
|
|
secondScaffold: Scaffold(
|
|
|
|
appBar: AppBar(
|
2020-01-08 19:43:30 +00:00
|
|
|
title: Text(RoomNameCalculator(widget.room).name),
|
2020-01-01 18:10:13 +00:00
|
|
|
actions: <Widget>[ChatSettingsPopupMenu(widget.room, false)],
|
|
|
|
),
|
|
|
|
body: ListView.builder(
|
|
|
|
itemCount: members.length + 1 + (canRequestMoreMembers ? 1 : 0),
|
|
|
|
itemBuilder: (BuildContext context, int i) => i == 0
|
|
|
|
? Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
|
|
children: <Widget>[
|
|
|
|
ContentBanner(widget.room.avatar),
|
2020-01-17 09:39:46 +00:00
|
|
|
Divider(height: 1),
|
2020-01-17 11:06:03 +00:00
|
|
|
if (widget.room.canSendEvent("m.room.avatar") && !kIsWeb)
|
|
|
|
ListTile(
|
|
|
|
title: Text("Upload group avatar"),
|
|
|
|
leading: Icon(Icons.camera),
|
|
|
|
onTap: () => setAvatarAction(context),
|
|
|
|
),
|
|
|
|
if (widget.room.canSendEvent("m.room.name"))
|
|
|
|
ListTile(
|
|
|
|
leading: Icon(Icons.edit),
|
|
|
|
title: TextField(
|
|
|
|
textInputAction: TextInputAction.done,
|
|
|
|
onSubmitted: (s) => setDisplaynameAction(context, s),
|
|
|
|
decoration: InputDecoration(
|
|
|
|
border: InputBorder.none,
|
|
|
|
labelText: "Set group name",
|
|
|
|
labelStyle: TextStyle(color: Colors.black),
|
|
|
|
hintText: (RoomNameCalculator(widget.room).name),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
topicEditMode
|
2020-01-01 18:10:13 +00:00
|
|
|
? ListTile(
|
|
|
|
title: TextField(
|
|
|
|
textInputAction: TextInputAction.done,
|
2020-01-17 11:06:03 +00:00
|
|
|
onSubmitted: (s) => setTopicAction(context, s),
|
|
|
|
autofocus: true,
|
|
|
|
minLines: 1,
|
|
|
|
maxLines: 4,
|
2020-01-01 18:10:13 +00:00
|
|
|
decoration: InputDecoration(
|
|
|
|
border: InputBorder.none,
|
2020-01-17 11:06:03 +00:00
|
|
|
labelText: "Group description:",
|
|
|
|
labelStyle: TextStyle(
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
fontWeight: FontWeight.bold),
|
|
|
|
hintText: widget.room.topic ??
|
|
|
|
"Set group description",
|
2020-01-01 18:10:13 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
2020-01-17 11:06:03 +00:00
|
|
|
: ListTile(
|
|
|
|
title: Text("Group description:",
|
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
fontWeight: FontWeight.bold)),
|
|
|
|
subtitle: LinkText(
|
|
|
|
text: widget.room.topic?.isEmpty ?? true
|
|
|
|
? "Add a group description"
|
|
|
|
: widget.room.topic,
|
|
|
|
textStyle: TextStyle(
|
|
|
|
fontSize: 14,
|
|
|
|
color: Colors.black,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
onTap: widget.room.canSendEvent("m.room.topic")
|
|
|
|
? () => setState(() => topicEditMode = true)
|
|
|
|
: null,
|
|
|
|
),
|
2020-01-05 11:27:03 +00:00
|
|
|
ListTile(
|
|
|
|
title: Text(
|
|
|
|
"$actualMembersCount participant" +
|
|
|
|
(actualMembersCount > 1 ? "s:" : ":"),
|
|
|
|
style: TextStyle(
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
fontWeight: FontWeight.bold,
|
2020-01-01 18:10:13 +00:00
|
|
|
),
|
2020-01-05 11:27:03 +00:00
|
|
|
),
|
2020-01-01 18:10:13 +00:00
|
|
|
),
|
2020-01-05 11:27:03 +00:00
|
|
|
Divider(height: 1),
|
2020-01-03 11:07:04 +00:00
|
|
|
widget.room.canInvite
|
|
|
|
? ListTile(
|
|
|
|
title: Text("Invite contact"),
|
2020-01-17 09:39:46 +00:00
|
|
|
leading: CircleAvatar(
|
|
|
|
child: Icon(Icons.add),
|
|
|
|
backgroundColor: Theme.of(context).primaryColor,
|
|
|
|
foregroundColor: Colors.white,
|
|
|
|
),
|
2020-01-03 11:07:04 +00:00
|
|
|
onTap: () => Navigator.of(context).push(
|
|
|
|
AppRoute.defaultRoute(
|
|
|
|
context,
|
|
|
|
InvitationSelection(widget.room),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Container(),
|
2020-01-01 18:10:13 +00:00
|
|
|
],
|
|
|
|
)
|
2020-01-18 12:22:22 +00:00
|
|
|
: i < members.length + 1 && false
|
2020-01-01 18:10:13 +00:00
|
|
|
? ParticipantListItem(members[i - 1])
|
|
|
|
: ListTile(
|
|
|
|
title: Text(
|
|
|
|
"Load more ${actualMembersCount - members.length} participants"),
|
2020-01-18 12:22:22 +00:00
|
|
|
leading: CircleAvatar(
|
|
|
|
backgroundColor: Colors.white,
|
|
|
|
child: Icon(
|
|
|
|
Icons.refresh,
|
|
|
|
color: Colors.grey,
|
|
|
|
),
|
|
|
|
),
|
2020-01-01 18:10:13 +00:00
|
|
|
onTap: () => requestMoreMembersAction(context),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|