FurryChat/lib/views/chat_details.dart

180 lines
6.6 KiB
Dart
Raw Normal View History

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';
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;
void setDisplaynameAction(BuildContext context, String displayname) async {
final MatrixState matrix = Matrix.of(context);
final success = await matrix.tryRequestWithLoadingDialog(
2020-01-01 18:10:13 +00:00
widget.room.setName(displayname),
);
if (success != false) {
2020-01-01 18:10:13 +00:00
Toast.show(
"Displayname has been changed",
context,
duration: Toast.LENGTH_LONG,
);
}
}
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);
final success = await matrix.tryRequestWithLoadingDialog(
2020-01-01 18:10:13 +00:00
widget.room.setAvatar(
MatrixFile(
bytes: await tempFile.readAsBytes(),
path: tempFile.path,
),
),
);
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);
}
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;
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-01 18:10:13 +00:00
widget.room.canSendEvent("m.room.avatar") && !kIsWeb
? ListTile(
2020-01-17 10:42:48 +00:00
title: Text("Upload group avatar"),
2020-01-17 09:39:46 +00:00
leading: Icon(Icons.camera),
2020-01-01 18:10:13 +00:00
onTap: () => setAvatarAction(context),
)
: Container(),
widget.room.canSendEvent("m.room.name")
? ListTile(
2020-01-17 09:39:46 +00:00
leading: Icon(Icons.edit),
2020-01-01 18:10:13 +00:00
title: TextField(
textInputAction: TextInputAction.done,
onSubmitted: (s) =>
setDisplaynameAction(context, s),
decoration: InputDecoration(
border: InputBorder.none,
2020-01-17 09:39:46 +00:00
labelText: "Set group name",
2020-01-01 18:10:13 +00:00
labelStyle: TextStyle(color: Colors.black),
2020-01-08 19:43:30 +00:00
hintText:
(RoomNameCalculator(widget.room).name),
2020-01-01 18:10:13 +00:00
),
),
)
: Container(),
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
],
)
: i < members.length + 1
? ParticipantListItem(members[i - 1])
: ListTile(
title: Text(
"Load more ${actualMembersCount - members.length} participants"),
leading: Icon(Icons.refresh),
onTap: () => requestMoreMembersAction(context),
),
),
),
);
}
}