406 lines
		
	
	
		
			18 KiB
		
	
	
	
		
			Dart
		
	
	
	
			
		
		
	
	
			406 lines
		
	
	
		
			18 KiB
		
	
	
	
		
			Dart
		
	
	
	
| import 'dart:ui' as ui;
 | |
| 
 | |
| import 'package:flutter/material.dart';
 | |
| 
 | |
| import 'package:badges/badges.dart';
 | |
| import 'package:desktop_drop/desktop_drop.dart';
 | |
| import 'package:extera_next/generated/l10n/l10n.dart';
 | |
| import 'package:matrix/matrix.dart';
 | |
| 
 | |
| import 'package:extera_next/config/app_config.dart';
 | |
| import 'package:extera_next/config/themes.dart';
 | |
| import 'package:extera_next/pages/chat/chat.dart';
 | |
| import 'package:extera_next/pages/chat/chat_app_bar_list_tile.dart';
 | |
| import 'package:extera_next/pages/chat/chat_app_bar_title.dart';
 | |
| import 'package:extera_next/pages/chat/chat_event_list.dart';
 | |
| import 'package:extera_next/pages/chat/encryption_button.dart';
 | |
| import 'package:extera_next/pages/chat/pinned_events.dart';
 | |
| import 'package:extera_next/pages/chat/reactions_picker.dart';
 | |
| import 'package:extera_next/pages/chat/reply_display.dart';
 | |
| import 'package:extera_next/utils/account_config.dart';
 | |
| import 'package:extera_next/utils/localized_exception_extension.dart';
 | |
| import 'package:extera_next/widgets/chat_settings_popup_menu.dart';
 | |
| import 'package:extera_next/widgets/future_loading_dialog.dart';
 | |
| import 'package:extera_next/widgets/matrix.dart';
 | |
| import 'package:extera_next/widgets/mxc_image.dart';
 | |
| import 'package:extera_next/widgets/unread_rooms_badge.dart';
 | |
| import '../../utils/stream_extension.dart';
 | |
| import 'chat_emoji_picker.dart';
 | |
| import 'chat_input_row.dart';
 | |
| 
 | |
| enum _EventContextAction { info, recover, translate, report }
 | |
| 
 | |
| class ChatView extends StatelessWidget {
 | |
|   final ChatController controller;
 | |
| 
 | |
|   const ChatView(this.controller, {super.key});
 | |
| 
 | |
|   List<Widget> _appBarActions(BuildContext context) {
 | |
|     if (controller.selectMode) {
 | |
|       return [
 | |
|         if (controller.canEditSelectedEvents)
 | |
|           IconButton(
 | |
|             icon: const Icon(Icons.edit_outlined),
 | |
|             tooltip: L10n.of(context).edit,
 | |
|             onPressed: controller.editSelectedEventAction,
 | |
|           ),
 | |
|         IconButton(
 | |
|           icon: const Icon(Icons.copy_outlined),
 | |
|           tooltip: L10n.of(context).copy,
 | |
|           onPressed: controller.copyEventsAction,
 | |
|         ),
 | |
|         if (controller.selectedEvents.length == 1 && controller.selectedEvents.single.content['xyz.extera.translated'] == null)
 | |
|         IconButton(
 | |
|           icon: const Icon(Icons.translate_outlined),
 | |
|           tooltip: L10n.of(context).translateMessage,
 | |
|           onPressed: controller.translateEventAction,
 | |
|         ),
 | |
|         if (controller.canSaveSelectedEvent)
 | |
|           // Use builder context to correctly position the share dialog on iPad
 | |
|           Builder(
 | |
|             builder: (context) => IconButton(
 | |
|               icon: Icon(Icons.adaptive.share),
 | |
|               tooltip: L10n.of(context).share,
 | |
|               onPressed: () => controller.saveSelectedEvent(context),
 | |
|             ),
 | |
|           ),
 | |
|         if (controller.canPinSelectedEvents)
 | |
|           IconButton(
 | |
|             icon: const Icon(Icons.push_pin_outlined),
 | |
|             onPressed: controller.pinEvent,
 | |
|             tooltip: L10n.of(context).pinMessage,
 | |
|           ),
 | |
|         if (controller.canRedactSelectedEvents)
 | |
|           IconButton(
 | |
|             icon: const Icon(Icons.delete_outlined),
 | |
|             tooltip: L10n.of(context).redactMessage,
 | |
|             onPressed: controller.redactEventsAction,
 | |
|           ),
 | |
|         if (controller.selectedEvents.length == 1)
 | |
|           PopupMenuButton<_EventContextAction>(
 | |
|             onSelected: (action) {
 | |
|               switch (action) {
 | |
|                 case _EventContextAction.info:
 | |
|                   controller.showEventInfo();
 | |
|                   controller.clearSelectedEvents();
 | |
|                   break;
 | |
|                 case _EventContextAction.report:
 | |
|                   controller.reportEventAction();
 | |
|                   break;
 | |
|                 case _EventContextAction.recover:
 | |
|                   controller.recoverEventAction();
 | |
|                   break;
 | |
|                 case _EventContextAction.translate:
 | |
|                   controller.translateEventAction();
 | |
|                   break;
 | |
|               }
 | |
|             },
 | |
|             itemBuilder: (context) => [
 | |
|               PopupMenuItem(
 | |
|                 value: _EventContextAction.info,
 | |
|                 child: Row(
 | |
|                   mainAxisSize: MainAxisSize.min,
 | |
|                   children: [
 | |
|                     const Icon(Icons.info_outlined),
 | |
|                     const SizedBox(width: 12),
 | |
|                     Text(L10n.of(context).messageInfo),
 | |
|                   ],
 | |
|                 ),
 | |
|               ),
 | |
|               if (controller.selectedEvents.single.redacted)
 | |
|                 PopupMenuItem(
 | |
|                   value: _EventContextAction.recover,
 | |
|                   child: Row(mainAxisSize: MainAxisSize.min, children: [
 | |
|                     const Icon(Icons.redo),
 | |
|                     const SizedBox(width: 12),
 | |
|                     Text(L10n.of(context).recoverMessage),
 | |
|                   ]),
 | |
|                 ),
 | |
|               if (controller.selectedEvents.single.status.isSent)
 | |
|                 PopupMenuItem(
 | |
|                   value: _EventContextAction.report,
 | |
|                   child: Row(
 | |
|                     mainAxisSize: MainAxisSize.min,
 | |
|                     children: [
 | |
|                       const Icon(
 | |
|                         Icons.shield_outlined,
 | |
|                         color: Colors.red,
 | |
|                       ),
 | |
|                       const SizedBox(width: 12),
 | |
|                       Text(L10n.of(context).reportMessage),
 | |
|                     ],
 | |
|                   ),
 | |
|                 ),
 | |
|             ],
 | |
|           ),
 | |
|       ];
 | |
|     } else if (!controller.room.isArchived) {
 | |
|       return [
 | |
|         if (AppConfig.experimentalVoip &&
 | |
|             Matrix.of(context).voipPlugin != null &&
 | |
|             controller.room.isDirectChat)
 | |
|           IconButton(
 | |
|             onPressed: controller.onPhoneButtonTap,
 | |
|             icon: const Icon(Icons.call_outlined),
 | |
|             tooltip: L10n.of(context).placeCall,
 | |
|           ),
 | |
|         EncryptionButton(controller.room),
 | |
|         ChatSettingsPopupMenu(controller.room, true),
 | |
|       ];
 | |
|     }
 | |
|     return [];
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context) {
 | |
|     final theme = Theme.of(context);
 | |
|     if (controller.room.membership == Membership.invite) {
 | |
|       showFutureLoadingDialog(
 | |
|         context: context,
 | |
|         future: () => controller.room.join(),
 | |
|         exceptionContext: ExceptionContext.joinRoom,
 | |
|       );
 | |
|     }
 | |
|     final bottomSheetPadding = FluffyThemes.isColumnMode(context) ? 16.0 : 8.0;
 | |
|     final scrollUpBannerEventId = controller.scrollUpBannerEventId;
 | |
| 
 | |
|     final accountConfig = Matrix.of(context).client.applicationAccountConfig;
 | |
| 
 | |
|     return PopScope(
 | |
|       canPop: controller.selectedEvents.isEmpty && !controller.showEmojiPicker,
 | |
|       onPopInvokedWithResult: (pop, _) async {
 | |
|         if (pop) return;
 | |
|         if (controller.selectedEvents.isNotEmpty) {
 | |
|           controller.clearSelectedEvents();
 | |
|         } else if (controller.showEmojiPicker) {
 | |
|           controller.emojiPickerAction();
 | |
|         }
 | |
|       },
 | |
|       child: StreamBuilder(
 | |
|         stream: controller.room.client.onRoomState.stream
 | |
|             .where((update) => update.roomId == controller.room.id)
 | |
|             .rateLimit(const Duration(seconds: 1)),
 | |
|         builder: (context, snapshot) => FutureBuilder(
 | |
|           future: controller.loadTimelineFuture,
 | |
|           builder: (BuildContext context, snapshot) {
 | |
|             var appbarBottomHeight = 0.0;
 | |
|             if (controller.room.pinnedEventIds.isNotEmpty) {
 | |
|               appbarBottomHeight += ChatAppBarListTile.fixedHeight;
 | |
|             }
 | |
|             if (scrollUpBannerEventId != null) {
 | |
|               appbarBottomHeight += ChatAppBarListTile.fixedHeight;
 | |
|             }
 | |
|             return Scaffold(
 | |
|               appBar: AppBar(
 | |
|                 actionsIconTheme: IconThemeData(
 | |
|                   color: controller.selectedEvents.isEmpty
 | |
|                       ? null
 | |
|                       : theme.colorScheme.tertiary,
 | |
|                 ),
 | |
|                 automaticallyImplyLeading: false,
 | |
|                 leading: controller.selectMode
 | |
|                     ? IconButton(
 | |
|                         icon: const Icon(Icons.close),
 | |
|                         onPressed: controller.clearSelectedEvents,
 | |
|                         tooltip: L10n.of(context).close,
 | |
|                         color: theme.colorScheme.tertiary,
 | |
|                       )
 | |
|                     : FluffyThemes.isColumnMode(context)
 | |
|                         ? null
 | |
|                         : StreamBuilder<Object>(
 | |
|                             stream:
 | |
|                                 Matrix.of(context).client.onSync.stream.where(
 | |
|                                       (syncUpdate) => syncUpdate.hasRoomUpdate,
 | |
|                                     ),
 | |
|                             builder: (context, _) => UnreadRoomsBadge(
 | |
|                               filter: (r) => r.id != controller.roomId,
 | |
|                               badgePosition:
 | |
|                                   BadgePosition.topEnd(end: 8, top: 4),
 | |
|                               child: const Center(child: BackButton()),
 | |
|                             ),
 | |
|                           ),
 | |
|                 titleSpacing: FluffyThemes.isColumnMode(context) ? 24 : 0,
 | |
|                 title: ChatAppBarTitle(controller),
 | |
|                 actions: _appBarActions(context),
 | |
|                 bottom: PreferredSize(
 | |
|                   preferredSize: Size.fromHeight(appbarBottomHeight),
 | |
|                   child: Column(
 | |
|                     mainAxisSize: MainAxisSize.min,
 | |
|                     children: [
 | |
|                       PinnedEvents(controller),
 | |
|                       if (scrollUpBannerEventId != null)
 | |
|                         ChatAppBarListTile(
 | |
|                           leading: IconButton(
 | |
|                             color: theme.colorScheme.onSurfaceVariant,
 | |
|                             icon: const Icon(Icons.close),
 | |
|                             tooltip: L10n.of(context).close,
 | |
|                             onPressed: () {
 | |
|                               controller.discardScrollUpBannerEventId();
 | |
|                               controller.setReadMarker();
 | |
|                             },
 | |
|                           ),
 | |
|                           title: L10n.of(context).jumpToLastReadMessage,
 | |
|                           trailing: TextButton(
 | |
|                             onPressed: () {
 | |
|                               controller.scrollToEventId(
 | |
|                                 scrollUpBannerEventId,
 | |
|                               );
 | |
|                               controller.discardScrollUpBannerEventId();
 | |
|                             },
 | |
|                             child: Text(L10n.of(context).jump),
 | |
|                           ),
 | |
|                         ),
 | |
|                     ],
 | |
|                   ),
 | |
|                 ),
 | |
|               ),
 | |
|               floatingActionButtonLocation:
 | |
|                   FloatingActionButtonLocation.miniCenterFloat,
 | |
|               floatingActionButton: controller.showScrollDownButton &&
 | |
|                       controller.selectedEvents.isEmpty
 | |
|                   ? Padding(
 | |
|                       padding: const EdgeInsets.only(bottom: 56.0),
 | |
|                       child: FloatingActionButton(
 | |
|                         onPressed: controller.scrollDown,
 | |
|                         heroTag: null,
 | |
|                         mini: true,
 | |
|                         backgroundColor: theme.colorScheme.surface,
 | |
|                         foregroundColor: theme.colorScheme.onSurface,
 | |
|                         child: const Icon(Icons.arrow_downward_outlined),
 | |
|                       ),
 | |
|                     )
 | |
|                   : null,
 | |
|               body: DropTarget(
 | |
|                 onDragDone: controller.onDragDone,
 | |
|                 onDragEntered: controller.onDragEntered,
 | |
|                 onDragExited: controller.onDragExited,
 | |
|                 child: Stack(
 | |
|                   children: <Widget>[
 | |
|                     if (accountConfig.wallpaperUrl != null)
 | |
|                       Opacity(
 | |
|                         opacity: accountConfig.wallpaperOpacity ?? 0.5,
 | |
|                         child: ImageFiltered(
 | |
|                           imageFilter: ui.ImageFilter.blur(
 | |
|                             sigmaX: accountConfig.wallpaperBlur ?? 0.0,
 | |
|                             sigmaY: accountConfig.wallpaperBlur ?? 0.0,
 | |
|                           ),
 | |
|                           child: MxcImage(
 | |
|                             cacheKey: accountConfig.wallpaperUrl.toString(),
 | |
|                             uri: accountConfig.wallpaperUrl,
 | |
|                             fit: BoxFit.cover,
 | |
|                             height: MediaQuery.sizeOf(context).height,
 | |
|                             width: MediaQuery.sizeOf(context).width,
 | |
|                             isThumbnail: false,
 | |
|                             placeholder: (_) => Container(),
 | |
|                           ),
 | |
|                         ),
 | |
|                       ),
 | |
|                     SafeArea(
 | |
|                       child: Column(
 | |
|                         children: <Widget>[
 | |
|                           Expanded(
 | |
|                             child: GestureDetector(
 | |
|                               onTap: controller.clearSingleSelectedEvent,
 | |
|                               child: ChatEventList(controller: controller),
 | |
|                             ),
 | |
|                           ),
 | |
|                           if (controller.showScrollDownButton)
 | |
|                             Divider(
 | |
|                               height: 1,
 | |
|                               color: theme.dividerColor,
 | |
|                             ),
 | |
|                           if (controller.room.isExtinct)
 | |
|                             Container(
 | |
|                               margin: EdgeInsets.all(bottomSheetPadding),
 | |
|                               width: double.infinity,
 | |
|                               child: ElevatedButton.icon(
 | |
|                                 icon: const Icon(Icons.chevron_right),
 | |
|                                 label: Text(L10n.of(context).enterNewChat),
 | |
|                                 onPressed: controller.goToNewRoomAction,
 | |
|                               ),
 | |
|                             )
 | |
|                           else if (controller.room.canSendDefaultMessages &&
 | |
|                               controller.room.membership == Membership.join)
 | |
|                             Container(
 | |
|                               margin: EdgeInsets.all(bottomSheetPadding),
 | |
|                               constraints: const BoxConstraints(
 | |
|                                 maxWidth: FluffyThemes.columnWidth * 2.5,
 | |
|                               ),
 | |
|                               alignment: Alignment.center,
 | |
|                               child: Material(
 | |
|                                 clipBehavior: Clip.hardEdge,
 | |
|                                 color: theme.colorScheme.surfaceContainerHigh,
 | |
|                                 borderRadius: const BorderRadius.all(
 | |
|                                   Radius.circular(24),
 | |
|                                 ),
 | |
|                                 child: controller.room.isAbandonedDMRoom == true
 | |
|                                     ? Row(
 | |
|                                         mainAxisAlignment:
 | |
|                                             MainAxisAlignment.spaceEvenly,
 | |
|                                         children: [
 | |
|                                           TextButton.icon(
 | |
|                                             style: TextButton.styleFrom(
 | |
|                                               padding: const EdgeInsets.all(
 | |
|                                                 16,
 | |
|                                               ),
 | |
|                                               foregroundColor:
 | |
|                                                   theme.colorScheme.error,
 | |
|                                             ),
 | |
|                                             icon: const Icon(
 | |
|                                               Icons.archive_outlined,
 | |
|                                             ),
 | |
|                                             onPressed: controller.leaveChat,
 | |
|                                             label: Text(
 | |
|                                               L10n.of(context).leave,
 | |
|                                             ),
 | |
|                                           ),
 | |
|                                           TextButton.icon(
 | |
|                                             style: TextButton.styleFrom(
 | |
|                                               padding: const EdgeInsets.all(
 | |
|                                                 16,
 | |
|                                               ),
 | |
|                                             ),
 | |
|                                             icon: const Icon(
 | |
|                                               Icons.forum_outlined,
 | |
|                                             ),
 | |
|                                             onPressed: controller.recreateChat,
 | |
|                                             label: Text(
 | |
|                                               L10n.of(context).reopenChat,
 | |
|                                             ),
 | |
|                                           ),
 | |
|                                         ],
 | |
|                                       )
 | |
|                                     : Column(
 | |
|                                         mainAxisSize: MainAxisSize.min,
 | |
|                                         children: [
 | |
|                                           // ReactionsPicker(controller),
 | |
|                                           ReplyDisplay(controller),
 | |
|                                           ChatInputRow(controller),
 | |
|                                           ChatEmojiPicker(controller),
 | |
|                                         ],
 | |
|                                       ),
 | |
|                               ),
 | |
|                             ),
 | |
|                         ],
 | |
|                       ),
 | |
|                     ),
 | |
|                     if (controller.dragging)
 | |
|                       Container(
 | |
|                         color: theme.scaffoldBackgroundColor.withAlpha(230),
 | |
|                         alignment: Alignment.center,
 | |
|                         child: const Icon(
 | |
|                           Icons.upload_outlined,
 | |
|                           size: 100,
 | |
|                         ),
 | |
|                       ),
 | |
|                   ],
 | |
|                 ),
 | |
|               ),
 | |
|             );
 | |
|           },
 | |
|         ),
 | |
|       ),
 | |
|     );
 | |
|   }
 | |
| }
 |