fluffychat/lib/views/chat_list.dart

396 lines
17 KiB
Dart
Raw Normal View History

2020-01-02 14:10:21 +00:00
import 'dart:async';
2020-04-02 12:05:32 +00:00
import 'dart:io';
2020-01-02 14:10:21 +00:00
2020-11-14 09:08:13 +00:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
2020-01-01 18:10:13 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2020-07-04 08:22:51 +00:00
import 'package:fluffychat/components/connection_status_header.dart';
2020-12-06 11:51:40 +00:00
import 'package:fluffychat/components/default_app_bar_search_field.dart';
import 'package:fluffychat/components/default_drawer.dart';
import 'package:fluffychat/components/dialogs/simple_dialogs.dart';
2020-12-11 13:14:33 +00:00
import 'package:fluffychat/app_config.dart';
2020-09-26 18:27:15 +00:00
import 'package:fluffychat/utils/platform_infos.dart';
import 'package:flutter/foundation.dart';
2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-04-02 12:05:32 +00:00
import 'package:receive_sharing_intent/receive_sharing_intent.dart';
import '../components/adaptive_page_layout.dart';
import '../components/list_items/chat_list_item.dart';
import '../components/matrix.dart';
import '../utils/app_route.dart';
2020-09-04 10:56:25 +00:00
import '../utils/matrix_file_extension.dart';
import '../utils/url_launcher.dart';
2020-12-06 11:51:40 +00:00
import 'empty_page.dart';
2020-05-12 09:58:47 +00:00
import 'homeserver_picker.dart';
import 'new_private_chat.dart';
2020-10-02 13:50:59 +00:00
enum SelectMode { normal, share, select }
2020-01-17 10:37:02 +00:00
2020-01-01 18:10:13 +00:00
class ChatListView extends StatelessWidget {
@override
Widget build(BuildContext context) {
return AdaptivePageLayout(
primaryPage: FocusPage.FIRST,
firstScaffold: ChatList(),
2020-12-06 11:51:40 +00:00
secondScaffold: EmptyPage(),
2020-01-01 18:10:13 +00:00
);
}
}
class ChatList extends StatefulWidget {
final String activeChat;
const ChatList({this.activeChat, Key key}) : super(key: key);
2020-01-01 18:10:13 +00:00
@override
_ChatListState createState() => _ChatListState();
}
class _ChatListState extends State<ChatList> {
bool get searchMode => searchController.text?.isNotEmpty ?? false;
2020-01-02 21:55:12 +00:00
final TextEditingController searchController = TextEditingController();
2020-10-02 13:50:59 +00:00
final _selectedRoomIds = <String>{};
2020-01-01 18:10:13 +00:00
2020-05-09 07:30:03 +00:00
final ScrollController _scrollController = ScrollController();
2020-12-06 11:51:40 +00:00
bool _scrolledToTop = true;
2020-05-09 07:30:03 +00:00
2020-10-02 13:50:59 +00:00
void _toggleSelection(String roomId) =>
setState(() => _selectedRoomIds.contains(roomId)
? _selectedRoomIds.remove(roomId)
: _selectedRoomIds.add(roomId));
2020-05-09 05:17:55 +00:00
Future<void> waitForFirstSync(BuildContext context) async {
2020-05-13 13:58:59 +00:00
var client = Matrix.of(context).client;
2020-01-02 21:31:39 +00:00
if (client.prevBatch?.isEmpty ?? true) {
2020-01-02 14:10:21 +00:00
await client.onFirstSync.stream.first;
2020-01-02 21:31:39 +00:00
}
2020-01-02 14:10:21 +00:00
return true;
2020-01-01 18:10:13 +00:00
}
2020-01-02 21:55:12 +00:00
@override
void initState() {
2020-05-09 07:30:03 +00:00
_scrollController.addListener(() async {
if (_scrollController.position.pixels > 0 && _scrolledToTop) {
setState(() => _scrolledToTop = false);
} else if (_scrollController.position.pixels == 0 && !_scrolledToTop) {
setState(() => _scrolledToTop = true);
}
});
2020-09-04 10:56:25 +00:00
_initReceiveSharingIntent();
2020-01-02 21:55:12 +00:00
super.initState();
}
2020-01-19 18:28:12 +00:00
StreamSubscription _intentDataStreamSubscription;
2020-04-02 12:05:32 +00:00
StreamSubscription _intentFileStreamSubscription;
2020-01-19 18:28:12 +00:00
2020-04-02 12:05:32 +00:00
void _processIncomingSharedFiles(List<SharedMediaFile> files) {
if (files?.isEmpty ?? true) return;
if (Navigator.of(context).canPop()) {
Navigator.of(context).popUntil((r) => r.isFirst);
}
2020-05-13 13:58:59 +00:00
final file = File(files.first.path);
2020-04-02 12:05:32 +00:00
Matrix.of(context).shareContent = {
2020-05-13 13:58:59 +00:00
'msgtype': 'chat.fluffy.shared_file',
'file': MatrixFile(
2020-04-02 12:05:32 +00:00
bytes: file.readAsBytesSync(),
2020-07-02 09:30:59 +00:00
name: file.path,
2020-09-04 10:56:25 +00:00
).detectFileType,
2020-04-02 12:05:32 +00:00
};
}
void _processIncomingSharedText(String text) {
if (text == null) return;
if (Navigator.of(context).canPop()) {
Navigator.of(context).popUntil((r) => r.isFirst);
}
2020-12-11 13:14:33 +00:00
if (text.startsWith(AppConfig.inviteLinkPrefix)) {
2020-04-02 12:05:32 +00:00
UrlLauncher(context, text).openMatrixToUrl();
return;
}
Matrix.of(context).shareContent = {
2020-05-13 13:58:59 +00:00
'msgtype': 'm.text',
'body': text,
2020-04-02 12:05:32 +00:00
};
}
2020-09-04 10:56:25 +00:00
void _initReceiveSharingIntent() {
2020-09-26 18:27:15 +00:00
if (!PlatformInfos.isMobile) return;
2020-04-02 12:05:32 +00:00
// For sharing images coming from outside the app while the app is in the memory
_intentFileStreamSubscription = ReceiveSharingIntent.getMediaStream()
.listen(_processIncomingSharedFiles, onError: print);
// For sharing images coming from outside the app while the app is closed
ReceiveSharingIntent.getInitialMedia().then(_processIncomingSharedFiles);
// For sharing or opening urls/text coming from outside the app while the app is in the memory
_intentDataStreamSubscription = ReceiveSharingIntent.getTextStream()
.listen(_processIncomingSharedText, onError: print);
// For sharing or opening urls/text coming from outside the app while the app is closed
ReceiveSharingIntent.getInitialText().then(_processIncomingSharedText);
2020-01-19 18:28:12 +00:00
}
2020-01-01 18:10:13 +00:00
@override
void dispose() {
2020-01-19 18:28:12 +00:00
_intentDataStreamSubscription?.cancel();
2020-04-02 12:05:32 +00:00
_intentFileStreamSubscription?.cancel();
2020-01-01 18:10:13 +00:00
super.dispose();
}
Future<void> _toggleUnread(BuildContext context) {
final room = Matrix.of(context).client.getRoomById(_selectedRoomIds.single);
return SimpleDialogs(context).tryRequestWithLoadingDialog(
room.setUnread(!room.isUnread),
);
}
2020-10-02 13:50:59 +00:00
Future<void> _toggleFavouriteRoom(BuildContext context) {
final room = Matrix.of(context).client.getRoomById(_selectedRoomIds.single);
return SimpleDialogs(context).tryRequestWithLoadingDialog(
room.setFavourite(!room.isFavourite),
);
}
Future<void> _toggleMuted(BuildContext context) {
final room = Matrix.of(context).client.getRoomById(_selectedRoomIds.single);
return SimpleDialogs(context).tryRequestWithLoadingDialog(
room.setPushRuleState(room.pushRuleState == PushRuleState.notify
? PushRuleState.mentions_only
: PushRuleState.notify),
);
}
Future<void> _archiveAction(BuildContext context) async {
2020-11-14 09:08:13 +00:00
final confirmed = await showOkCancelAlertDialog(
context: context,
title: L10n.of(context).areYouSure,
) ==
OkCancelResult.ok;
2020-10-02 13:50:59 +00:00
if (!confirmed) return;
await SimpleDialogs(context)
.tryRequestWithLoadingDialog(_archiveSelectedRooms(context));
setState(() => null);
}
Future<void> _archiveSelectedRooms(BuildContext context) async {
final client = Matrix.of(context).client;
while (_selectedRoomIds.isNotEmpty) {
final roomId = _selectedRoomIds.first;
await client.getRoomById(roomId).leave();
_selectedRoomIds.remove(roomId);
}
}
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
2020-05-12 09:58:47 +00:00
return StreamBuilder<LoginState>(
stream: Matrix.of(context).client.onLoginStateChanged.stream,
2020-05-09 05:17:55 +00:00
builder: (context, snapshot) {
2020-05-12 09:58:47 +00:00
if (snapshot.data == LoginState.loggedOut) {
Timer(Duration(seconds: 1), () {
Matrix.of(context).clean();
Navigator.of(context).pushAndRemoveUntil(
AppRoute.defaultRoute(context, HomeserverPicker()),
(r) => false);
});
}
return StreamBuilder(
stream: Matrix.of(context).onShareContentChanged.stream,
builder: (context, snapshot) {
final selectMode = Matrix.of(context).shareContent == null
2020-10-02 13:50:59 +00:00
? _selectedRoomIds.isEmpty
? SelectMode.normal
: SelectMode.select
2020-05-12 09:58:47 +00:00
: SelectMode.share;
2020-10-02 13:50:59 +00:00
if (selectMode == SelectMode.share) {
_selectedRoomIds.clear();
}
2020-12-20 15:44:55 +00:00
Room selectedRoom;
if (_selectedRoomIds.length == 1) {
selectedRoom = Matrix.of(context)
.client
.getRoomById(_selectedRoomIds.single);
}
2020-05-12 09:58:47 +00:00
return Scaffold(
2020-12-06 11:51:40 +00:00
drawer:
selectMode != SelectMode.normal ? null : DefaultDrawer(),
2020-05-12 09:58:47 +00:00
appBar: AppBar(
2020-10-02 13:50:59 +00:00
centerTitle: false,
2020-09-20 12:14:46 +00:00
elevation: _scrolledToTop ? 0 : null,
2020-10-02 13:50:59 +00:00
leading: selectMode == SelectMode.share
? IconButton(
2020-05-12 09:58:47 +00:00
icon: Icon(Icons.close),
onPressed: () =>
Matrix.of(context).shareContent = null,
2020-10-02 13:50:59 +00:00
)
: selectMode == SelectMode.select
? IconButton(
icon: Icon(Icons.close),
onPressed: () =>
setState(_selectedRoomIds.clear),
)
: null,
2020-05-12 09:58:47 +00:00
titleSpacing: 0,
2020-10-02 13:50:59 +00:00
actions: selectMode != SelectMode.select
? null
: [
if (_selectedRoomIds.length == 1)
IconButton(
tooltip: L10n.of(context).toggleUnread,
2020-12-20 15:44:55 +00:00
icon: Icon(selectedRoom.isUnread
? Icons.mark_chat_read_outlined
: Icons.mark_chat_unread_outlined),
onPressed: () => _toggleUnread(context),
),
if (_selectedRoomIds.length == 1)
IconButton(
tooltip: L10n.of(context).toggleFavorite,
2020-12-20 15:44:55 +00:00
icon: Icon(Icons.push_pin_outlined),
2020-10-02 13:50:59 +00:00
onPressed: () => _toggleFavouriteRoom(context),
),
if (_selectedRoomIds.length == 1)
IconButton(
2020-12-20 15:44:55 +00:00
icon: Icon(selectedRoom.pushRuleState ==
PushRuleState.notify
? Icons.notifications_off_outlined
: Icons.notifications_outlined),
tooltip: L10n.of(context).toggleMuted,
2020-10-02 13:50:59 +00:00
onPressed: () => _toggleMuted(context),
),
IconButton(
2020-12-06 09:31:35 +00:00
icon: Icon(Icons.archive_outlined),
tooltip: L10n.of(context).archive,
2020-10-02 13:50:59 +00:00
onPressed: () => _archiveAction(context),
),
],
2020-05-12 09:58:47 +00:00
title: selectMode == SelectMode.share
? Text(L10n.of(context).share)
2020-10-02 13:50:59 +00:00
: selectMode == SelectMode.select
? Text(_selectedRoomIds.length.toString())
2020-12-06 11:51:40 +00:00
: DefaultAppBarSearchField(
searchController: searchController,
2020-12-20 16:00:09 +00:00
hintText: L10n.of(context).searchForAChat,
2020-12-06 11:51:40 +00:00
onChanged: (_) => setState(() => null),
2020-05-12 09:58:47 +00:00
),
2020-04-26 17:08:55 +00:00
),
floatingActionButton: AdaptivePageLayout.columnMode(context)
? null
2020-10-28 06:23:50 +00:00
: FloatingActionButton(
2020-12-06 09:31:35 +00:00
child: Icon(Icons.add_outlined),
2020-10-28 06:23:50 +00:00
backgroundColor: Theme.of(context).primaryColor,
onPressed: () => Navigator.of(context)
.pushAndRemoveUntil(
AppRoute.defaultRoute(
context, NewPrivateChatView()),
(r) => r.isFirst),
),
2020-08-22 09:02:08 +00:00
body: Column(
children: [
ConnectionStatusHeader(),
Expanded(
child: StreamBuilder(
2020-10-04 18:30:06 +00:00
stream:
Matrix.of(context).client.onSync.stream.where(
(s) =>
s.hasRoomUpdate ||
s.accountData
.where((a) =>
a.type ==
MatrixState.userStatusesType)
.isNotEmpty,
),
2020-08-22 09:02:08 +00:00
builder: (context, snapshot) {
return FutureBuilder<void>(
future: waitForFirstSync(context),
builder: (BuildContext context, snapshot) {
if (snapshot.hasData) {
var rooms = List<Room>.from(
Matrix.of(context).client.rooms);
rooms.removeWhere((Room room) =>
room.lastEvent == null ||
(searchMode &&
!room.displayname
.toLowerCase()
.contains(searchController.text
.toLowerCase() ??
'')));
2020-12-06 11:51:40 +00:00
if (rooms.isEmpty && (!searchMode)) {
2020-08-22 09:02:08 +00:00
return Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Icon(
searchMode
2020-12-06 09:31:35 +00:00
? Icons.search_outlined
2020-08-22 09:02:08 +00:00
: Icons.chat_bubble_outline,
size: 80,
color: Colors.grey,
),
Text(searchMode
? L10n.of(context).noRoomsFound
: L10n.of(context)
.startYourFirstChat),
],
),
2020-07-04 08:22:51 +00:00
);
2020-05-12 09:58:47 +00:00
}
2020-12-06 11:51:40 +00:00
final totalCount = rooms.length;
2020-08-22 09:02:08 +00:00
return ListView.separated(
2020-10-28 06:23:50 +00:00
controller: _scrollController,
separatorBuilder: (BuildContext context,
int i) =>
2020-12-06 11:51:40 +00:00
i == totalCount
2020-10-28 06:23:50 +00:00
? ListTile(
title: Text(
L10n.of(context)
.publicRooms +
':',
style: TextStyle(
fontWeight:
FontWeight.bold,
color: Theme.of(context)
.primaryColor,
2020-08-22 09:02:08 +00:00
),
2020-10-28 06:23:50 +00:00
),
)
: Container(),
itemCount: totalCount,
2020-12-06 11:51:40 +00:00
itemBuilder:
(BuildContext context, int i) =>
ChatListItem(
rooms[i],
selected: _selectedRoomIds
.contains(rooms[i].id),
onTap: selectMode == SelectMode.select
? () =>
_toggleSelection(rooms[i].id)
: null,
onLongPress: selectMode !=
SelectMode.share
? () =>
_toggleSelection(rooms[i].id)
: null,
activeChat:
widget.activeChat == rooms[i].id,
),
2020-10-28 06:23:50 +00:00
);
2020-08-22 09:02:08 +00:00
} else {
return Center(
child: CircularProgressIndicator(),
);
}
},
2020-05-12 09:58:47 +00:00
);
2020-08-22 09:02:08 +00:00
}),
),
],
),
2020-05-12 09:58:47 +00:00
);
});
2020-05-09 05:17:55 +00:00
});
2020-01-01 18:10:13 +00:00
}
}