fluffychat/lib/components/list_items/chat_list_item.dart

287 lines
9.9 KiB
Dart
Raw Normal View History

2020-11-14 09:08:13 +00:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
2021-01-16 11:46:38 +00:00
import 'package:adaptive_page_layout/adaptive_page_layout.dart';
import 'package:circular_check_box/circular_check_box.dart';
2020-01-01 18:10:13 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2021-01-15 18:41:55 +00:00
import 'package:fluffychat/config/themes.dart';
import 'package:fluffychat/utils/event_extension.dart';
import 'package:fluffychat/utils/matrix_locals.dart';
import 'package:fluffychat/utils/room_status_extension.dart';
import 'package:flushbar/flushbar_helper.dart';
2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-01-17 10:37:02 +00:00
import 'package:pedantic/pedantic.dart';
2020-01-01 18:10:13 +00:00
import '../../utils/date_time_extension.dart';
2020-01-01 18:10:13 +00:00
import '../avatar.dart';
import '../dialogs/send_file_dialog.dart';
2020-12-25 08:58:34 +00:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
2020-01-05 11:27:03 +00:00
import '../matrix.dart';
import '../mouse_over_builder.dart';
2020-01-01 18:10:13 +00:00
2020-11-14 13:04:36 +00:00
enum ArchivedRoomAction { delete, rejoin }
2020-01-01 18:10:13 +00:00
class ChatListItem extends StatelessWidget {
final Room room;
final bool activeChat;
2020-10-02 13:50:59 +00:00
final bool selected;
2020-01-05 11:27:03 +00:00
final Function onForget;
2020-10-02 13:50:59 +00:00
final Function onTap;
final Function onLongPress;
2020-01-01 18:10:13 +00:00
2020-10-02 13:50:59 +00:00
const ChatListItem(this.room,
{this.activeChat = false,
this.selected = false,
this.onTap,
this.onLongPress,
this.onForget});
2020-01-05 11:27:03 +00:00
void clickAction(BuildContext context) async {
2020-10-02 13:50:59 +00:00
if (onTap != null) return onTap();
2020-01-05 11:27:03 +00:00
if (!activeChat) {
if (room.membership == Membership.invite &&
2020-12-25 08:58:34 +00:00
(await showFutureLoadingDialog(
context: context, future: () => room.join()))
.error !=
null) {
2020-01-05 11:27:03 +00:00
return;
}
if (room.membership == Membership.ban) {
await FlushbarHelper.createError(
message: L10n.of(context).youHaveBeenBannedFromThisChat)
.show(context);
2020-01-05 11:27:03 +00:00
return;
}
if (room.membership == Membership.leave) {
2020-11-14 13:04:36 +00:00
final action = await showModalActionSheet<ArchivedRoomAction>(
2020-01-05 11:27:03 +00:00
context: context,
2020-11-14 13:04:36 +00:00
title: L10n.of(context).archivedRoom,
message: L10n.of(context).thisRoomHasBeenArchived,
actions: [
SheetAction(
label: L10n.of(context).rejoin,
key: ArchivedRoomAction.rejoin,
),
SheetAction(
label: L10n.of(context).delete,
key: ArchivedRoomAction.delete,
isDestructiveAction: true,
),
],
2020-01-05 11:27:03 +00:00
);
2020-11-14 13:04:36 +00:00
if (action != null) {
switch (action) {
case ArchivedRoomAction.delete:
await archiveAction(context);
break;
case ArchivedRoomAction.rejoin:
2020-12-25 08:58:34 +00:00
await showFutureLoadingDialog(
context: context,
future: () => room.join(),
);
2020-11-14 13:04:36 +00:00
break;
}
}
2020-01-05 11:27:03 +00:00
}
if (room.membership == Membership.join) {
2020-01-17 10:37:02 +00:00
if (Matrix.of(context).shareContent != null) {
2020-05-13 13:58:59 +00:00
if (Matrix.of(context).shareContent['msgtype'] ==
'chat.fluffy.shared_file') {
2020-09-04 10:56:25 +00:00
await showDialog(
2021-02-24 11:17:23 +00:00
context: context,
builder: (c) => SendFileDialog(
file: Matrix.of(context).shareContent['file'],
room: room,
),
useRootNavigator: false,
);
2020-04-02 12:05:32 +00:00
} else {
unawaited(room.sendEvent(Matrix.of(context).shareContent));
}
2020-01-17 10:37:02 +00:00
Matrix.of(context).shareContent = null;
}
2021-01-16 11:46:38 +00:00
await AdaptivePageLayout.of(context)
.pushNamedAndRemoveUntilIsFirst('/rooms/${room.id}');
2020-01-05 11:27:03 +00:00
}
}
}
2020-01-01 18:10:13 +00:00
2020-10-02 13:50:59 +00:00
Future<void> archiveAction(BuildContext context) async {
{
2020-02-16 08:22:56 +00:00
if ([Membership.leave, Membership.ban].contains(room.membership)) {
2020-12-25 08:58:34 +00:00
final success = await showFutureLoadingDialog(
context: context,
future: () => room.forget(),
);
if (success.error == null) {
2020-05-13 13:58:59 +00:00
if (onForget != null) onForget();
2020-02-16 08:22:56 +00:00
}
return success;
}
2020-11-14 09:08:13 +00:00
final confirmed = await showOkCancelAlertDialog(
context: context,
title: L10n.of(context).areYouSure,
2021-02-18 13:23:22 +00:00
okLabel: L10n.of(context).yes,
cancelLabel: L10n.of(context).no,
2021-02-24 11:17:23 +00:00
useRootNavigator: false,
2020-11-14 09:08:13 +00:00
);
if (confirmed == OkCancelResult.cancel) return;
2020-12-25 08:58:34 +00:00
await showFutureLoadingDialog(
context: context, future: () => room.leave());
2020-10-02 13:50:59 +00:00
return;
}
}
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
2020-08-13 11:02:58 +00:00
final isMuted = room.pushRuleState != PushRuleState.notify;
2020-11-22 14:25:13 +00:00
final typingText = room.getLocalizedTypingText(context);
2020-11-22 15:35:16 +00:00
final ownMessage =
room.lastEvent?.senderId == Matrix.of(context).client.userID;
2020-10-02 13:50:59 +00:00
return Center(
child: Material(
2021-01-15 18:41:55 +00:00
color: FluffyThemes.chatListItemColor(context, activeChat, selected),
2020-10-02 13:50:59 +00:00
child: ListTile(
onLongPress: onLongPress,
leading: MouseOverBuilder(
builder: (context, hover) =>
onLongPress != null && (hover || selected)
? Container(
width: Avatar.defaultSize,
height: Avatar.defaultSize,
alignment: Alignment.center,
child: CircularCheckBox(
value: selected,
onChanged: (_) => onLongPress(),
),
)
: Avatar(room.avatar, room.displayname),
),
2020-10-02 13:50:59 +00:00
title: Row(
children: <Widget>[
Expanded(
child: Text(
room.getLocalizedDisplayname(MatrixLocals(L10n.of(context))),
2020-10-02 13:50:59 +00:00
maxLines: 1,
overflow: TextOverflow.ellipsis,
softWrap: false,
2020-03-29 10:06:25 +00:00
),
2020-10-02 13:50:59 +00:00
),
if (isMuted)
Padding(
padding: const EdgeInsets.only(left: 4.0),
child: Icon(
Icons.notifications_off_outlined,
size: 16,
),
),
2020-10-02 13:50:59 +00:00
Padding(
padding: const EdgeInsets.only(left: 4.0),
child: Text(
room.timeCreated.localizedTimeShort(context),
style: TextStyle(
fontSize: 13,
2020-11-22 14:25:13 +00:00
color: room.notificationCount > 0
2021-01-31 22:54:33 +00:00
? Theme.of(context).accentColor
2020-11-22 14:25:13 +00:00
: null,
2020-08-03 11:08:44 +00:00
),
),
2020-10-02 13:50:59 +00:00
),
],
),
subtitle: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
2020-11-22 15:50:09 +00:00
if (typingText.isEmpty && ownMessage) ...{
2020-11-22 14:25:13 +00:00
Icon(
room.lastEvent.statusIcon,
size: 14,
),
SizedBox(width: 4),
},
2020-11-22 15:50:09 +00:00
if (typingText.isNotEmpty) ...{
Icon(
2020-12-06 09:31:35 +00:00
Icons.edit_outlined,
2021-01-31 22:54:33 +00:00
color: Theme.of(context).accentColor,
2020-11-22 15:50:09 +00:00
size: 14,
),
SizedBox(width: 4),
},
2020-10-02 13:50:59 +00:00
Expanded(
2020-11-22 14:25:13 +00:00
child: typingText.isNotEmpty
2020-10-02 13:50:59 +00:00
? Text(
2020-11-22 14:25:13 +00:00
typingText,
2020-10-02 13:50:59 +00:00
style: TextStyle(
2021-01-31 22:54:33 +00:00
color: Theme.of(context).accentColor,
),
2020-10-02 13:50:59 +00:00
softWrap: false,
)
2020-11-22 14:25:13 +00:00
: room.membership == Membership.invite
? Text(
L10n.of(context).youAreInvitedToThisChat,
style: TextStyle(
2021-01-31 22:54:33 +00:00
color: Theme.of(context).accentColor,
2020-11-22 14:25:13 +00:00
),
softWrap: false,
)
: Text(
room.lastEvent?.getLocalizedBody(
MatrixLocals(L10n.of(context)),
2020-11-22 15:41:33 +00:00
withSenderNamePrefix:
!ownMessage && !room.isDirectChat,
2020-11-22 14:25:13 +00:00
hideReply: true,
) ??
'',
softWrap: false,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
decoration: room.lastEvent?.redacted == true
? TextDecoration.lineThrough
: null,
),
),
2020-10-02 13:50:59 +00:00
),
SizedBox(width: 8),
if (room.isFavourite)
Padding(
padding: EdgeInsets.only(
right: room.notificationCount > 0 ? 4.0 : 0.0),
child: Icon(
2020-12-20 15:44:55 +00:00
Icons.push_pin_outlined,
size: 20,
2021-01-31 22:54:33 +00:00
color: Theme.of(context).accentColor,
),
),
if (room.isUnread)
Container(
padding: EdgeInsets.symmetric(horizontal: 7),
height: room.notificationCount > 0 ? 20 : 14,
decoration: BoxDecoration(
color: room.highlightCount > 0 || room.markedUnread
? Colors.red
: Theme.of(context).primaryColor,
borderRadius: BorderRadius.circular(20),
),
child: Center(
child: room.notificationCount > 0
? Text(
room.notificationCount.toString(),
style: TextStyle(
color: Colors.white,
),
)
: Container(),
),
),
2020-10-02 13:50:59 +00:00
],
),
2020-10-02 13:50:59 +00:00
onTap: () => clickAction(context),
2020-01-02 22:38:46 +00:00
),
2020-01-01 18:10:13 +00:00
),
);
}
}