2021-10-26 18:50:34 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2022-03-01 20:14:49 +01:00
|
|
|
import 'package:flutter/services.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2022-03-01 20:14:49 +01:00
|
|
|
import 'package:keyboard_shortcuts/keyboard_shortcuts.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:vrouter/vrouter.dart';
|
|
|
|
|
2022-08-30 20:24:36 +02:00
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
|
|
|
import 'package:fluffychat/config/themes.dart';
|
2021-11-09 21:32:16 +01:00
|
|
|
import 'package:fluffychat/pages/chat_list/chat_list.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import '../../widgets/matrix.dart';
|
2022-05-01 13:03:33 +02:00
|
|
|
import 'chat_list_body.dart';
|
2022-05-21 12:09:25 +02:00
|
|
|
import 'chat_list_header.dart';
|
2022-09-13 14:01:48 +02:00
|
|
|
import 'navigation_rail.dart';
|
2022-07-24 22:09:26 +02:00
|
|
|
import 'start_chat_fab.dart';
|
2021-04-14 14:09:46 +02:00
|
|
|
|
2021-05-22 09:13:47 +02:00
|
|
|
class ChatListView extends StatelessWidget {
|
2021-04-14 14:09:46 +02:00
|
|
|
final ChatListController controller;
|
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
const ChatListView(this.controller, {Key? key}) : super(key: key);
|
2021-04-14 14:09:46 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2022-01-29 12:35:03 +01:00
|
|
|
return StreamBuilder<Object?>(
|
2022-04-02 16:18:36 +02:00
|
|
|
stream: Matrix.of(context).onShareContentChanged.stream,
|
|
|
|
builder: (_, __) {
|
|
|
|
final selectMode = controller.selectMode;
|
|
|
|
return VWidgetGuard(
|
|
|
|
onSystemPop: (redirector) async {
|
|
|
|
final selMode = controller.selectMode;
|
2022-09-11 10:22:05 +02:00
|
|
|
if (selMode != SelectMode.normal) {
|
|
|
|
controller.cancelAction();
|
|
|
|
redirector.stopRedirection();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (controller.activeFilter !=
|
|
|
|
(AppConfig.separateChatTypes
|
|
|
|
? ActiveFilter.messages
|
|
|
|
: ActiveFilter.allChats)) {
|
|
|
|
controller
|
|
|
|
.onDestinationSelected(AppConfig.separateChatTypes ? 1 : 0);
|
|
|
|
redirector.stopRedirection();
|
|
|
|
return;
|
|
|
|
}
|
2022-04-02 16:18:36 +02:00
|
|
|
},
|
2022-12-26 16:02:45 +01:00
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
if (FluffyThemes.isColumnMode(context) &&
|
2022-09-13 14:01:48 +02:00
|
|
|
FluffyThemes.getDisplayNavigationRail(context) != null) ...[
|
|
|
|
ChatListNavigationRail(controller: controller),
|
2022-12-26 16:02:45 +01:00
|
|
|
Container(
|
|
|
|
color: Theme.of(context).dividerColor,
|
|
|
|
width: 1,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
Expanded(
|
2022-12-25 13:08:51 +01:00
|
|
|
child: GestureDetector(
|
|
|
|
onTap: FocusManager.instance.primaryFocus?.unfocus,
|
|
|
|
excludeFromSemantics: true,
|
|
|
|
behavior: HitTestBehavior.translucent,
|
|
|
|
child: Scaffold(
|
|
|
|
appBar: ChatListHeader(controller: controller),
|
|
|
|
body: ChatListViewBody(controller),
|
|
|
|
bottomNavigationBar: controller.displayNavigationBar
|
|
|
|
? NavigationBar(
|
|
|
|
height: 64,
|
|
|
|
selectedIndex: controller.selectedIndex,
|
|
|
|
onDestinationSelected:
|
|
|
|
controller.onDestinationSelected,
|
2022-09-13 14:01:48 +02:00
|
|
|
destinations:
|
|
|
|
controller.getNavigationDestinations(context),
|
2022-12-25 13:08:51 +01:00
|
|
|
)
|
|
|
|
: null,
|
2022-12-29 10:26:01 +01:00
|
|
|
floatingActionButtonLocation:
|
|
|
|
controller.filteredRooms.isEmpty
|
|
|
|
? FloatingActionButtonLocation.centerFloat
|
|
|
|
: null,
|
|
|
|
floatingActionButton: selectMode == SelectMode.normal
|
2022-12-25 13:08:51 +01:00
|
|
|
? KeyBoardShortcuts(
|
|
|
|
keysToPress: {
|
|
|
|
LogicalKeyboardKey.controlLeft,
|
|
|
|
LogicalKeyboardKey.keyN
|
|
|
|
},
|
|
|
|
onKeysPressed: () =>
|
|
|
|
VRouter.of(context).to('/newprivatechat'),
|
|
|
|
helpLabel: L10n.of(context)!.newChat,
|
|
|
|
child: StartChatFloatingActionButton(
|
2022-12-29 10:26:01 +01:00
|
|
|
controller: controller,
|
|
|
|
),
|
2022-12-25 13:08:51 +01:00
|
|
|
)
|
|
|
|
: null,
|
|
|
|
),
|
2022-12-26 16:02:45 +01:00
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2022-04-02 16:18:36 +02:00
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
2021-04-14 14:09:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ChatListPopupMenuItemActions {
|
|
|
|
createGroup,
|
2021-08-01 08:05:40 +02:00
|
|
|
createSpace,
|
2021-04-14 14:09:46 +02:00
|
|
|
discover,
|
|
|
|
setStatus,
|
|
|
|
inviteContact,
|
|
|
|
settings,
|
|
|
|
}
|