fluffychat/lib/pages/search.dart

151 lines
4.1 KiB
Dart
Raw Normal View History

2021-04-17 09:24:00 +00:00
import 'dart:async';
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
2021-04-17 09:24:00 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:future_loading_dialog/future_loading_dialog.dart';
2021-10-26 16:50:34 +00:00
import 'package:matrix/matrix.dart';
2021-05-23 11:11:55 +00:00
import 'package:vrouter/vrouter.dart';
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/widgets/matrix.dart';
import 'views/search_view.dart';
2021-04-17 09:24:00 +00:00
class Search extends StatefulWidget {
2021-05-23 11:11:55 +00:00
const Search({Key key}) : super(key: key);
2021-04-17 09:24:00 +00:00
@override
SearchController createState() => SearchController();
}
class SearchController extends State<Search> {
final TextEditingController controller = TextEditingController();
Future<QueryPublicRoomsResponse> publicRoomsResponse;
2021-04-17 09:24:00 +00:00
String lastServer;
Timer _coolDown;
String genericSearchTerm;
void search(String query) async {
setState(() => null);
_coolDown?.cancel();
_coolDown = Timer(
2021-10-14 16:09:30 +00:00
const Duration(milliseconds: 500),
2021-04-17 09:24:00 +00:00
() => setState(() {
genericSearchTerm = query;
publicRoomsResponse = null;
searchUser(context, controller.text);
}),
);
}
Future<String> _joinRoomAndWait(
BuildContext context,
String roomId,
String alias,
) async {
if (Matrix.of(context).client.getRoomById(roomId) != null) {
return roomId;
}
final newRoomId = await Matrix.of(context)
.client
2021-05-20 11:59:55 +00:00
.joinRoom(alias?.isNotEmpty ?? false ? alias : roomId);
2021-09-10 08:44:24 +00:00
await Matrix.of(context).client.onSync.stream.firstWhere(
(update) => update.rooms?.join?.containsKey(newRoomId) ?? false);
2021-04-17 09:24:00 +00:00
return newRoomId;
}
void joinGroupAction(PublicRoomsChunk room) async {
2021-04-17 09:24:00 +00:00
if (await showOkCancelAlertDialog(
2021-05-23 13:02:36 +00:00
useRootNavigator: false,
2021-04-17 09:24:00 +00:00
context: context,
okLabel: L10n.of(context).joinRoom,
title: '${room.name} (${room.numJoinedMembers ?? 0})',
message: room.topic ?? L10n.of(context).noDescription,
cancelLabel: L10n.of(context).cancel,
) ==
OkCancelResult.cancel) {
return;
}
final success = await showFutureLoadingDialog(
context: context,
future: () => _joinRoomAndWait(
context,
room.roomId,
2021-08-05 16:16:52 +00:00
room.canonicalAlias ?? room.aliases?.first,
2021-04-17 09:24:00 +00:00
),
);
if (success.error == null) {
2021-08-15 11:26:16 +00:00
VRouter.of(context).toSegments(['rooms', success.result]);
2021-04-17 09:24:00 +00:00
}
}
String server;
void setServer() async {
final newServer = await showTextInputDialog(
2021-05-23 13:02:36 +00:00
useRootNavigator: false,
2021-04-17 09:24:00 +00:00
title: L10n.of(context).changeTheHomeserver,
context: context,
okLabel: L10n.of(context).ok,
cancelLabel: L10n.of(context).cancel,
textFields: [
DialogTextField(
prefixText: 'https://',
hintText: Matrix.of(context).client.homeserver.host,
initialText: server,
keyboardType: TextInputType.url,
)
]);
if (newServer == null) return;
setState(() {
server = newServer.single;
});
}
String currentSearchTerm;
List<Profile> foundProfiles = [];
2021-10-26 16:47:05 +00:00
static const searchUserDirectoryLimit = 10;
2021-04-17 09:24:00 +00:00
void searchUser(BuildContext context, String text) async {
if (text.isEmpty) {
setState(() {
foundProfiles = [];
});
}
currentSearchTerm = text;
if (currentSearchTerm.isEmpty) return;
final matrix = Matrix.of(context);
SearchUserDirectoryResponse response;
2021-04-17 09:24:00 +00:00
try {
2021-10-26 16:47:05 +00:00
response = await matrix.client.searchUserDirectory(
text,
limit: searchUserDirectoryLimit,
);
2021-04-17 09:24:00 +00:00
} catch (_) {}
foundProfiles = List<Profile>.from(response?.results ?? []);
if (foundProfiles.isEmpty && text.isValidMatrixId && text.sigil == '@') {
foundProfiles.add(Profile.fromJson({
'displayname': text.localpart,
'user_id': text,
}));
}
2021-10-16 07:59:38 +00:00
setState(() => null);
2021-04-17 09:24:00 +00:00
}
2021-05-24 09:07:02 +00:00
bool _init = false;
2021-04-17 09:24:00 +00:00
@override
2021-05-23 11:11:55 +00:00
Widget build(BuildContext context) {
2021-05-24 09:07:02 +00:00
if (!_init) {
_init = true;
controller.text = VRouter.of(context).queryParameters['query'] ?? '';
WidgetsBinding.instance
.addPostFrameCallback((_) => search(controller.text));
}
2021-05-24 09:03:08 +00:00
2021-05-23 11:11:55 +00:00
return SearchView(this);
2021-04-17 09:24:00 +00:00
}
}
2021-05-24 10:16:46 +00:00
// #fluffychat:matrix.org