fluffychat/lib/pages/search/search.dart

121 lines
3.1 KiB
Dart
Raw Normal View History

2021-04-17 11:24:00 +02:00
import 'dart:async';
import 'package:flutter/material.dart';
2021-10-26 18:50:34 +02:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
2021-04-17 11:24:00 +02:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-10-26 18:50:34 +02:00
import 'package:matrix/matrix.dart';
2021-05-23 13:11:55 +02:00
import 'package:vrouter/vrouter.dart';
2021-10-26 18:50:34 +02:00
import 'package:fluffychat/widgets/matrix.dart';
import 'package:fluffychat/widgets/public_room_bottom_sheet.dart';
2021-11-09 21:32:16 +01:00
import 'search_view.dart';
2021-04-17 11:24:00 +02:00
class Search extends StatefulWidget {
2021-05-23 13:11:55 +02:00
const Search({Key key}) : super(key: key);
2021-04-17 11:24:00 +02:00
@override
SearchController createState() => SearchController();
}
class SearchController extends State<Search> {
final TextEditingController controller = TextEditingController();
Future<QueryPublicRoomsResponse> publicRoomsResponse;
2021-04-17 11:24:00 +02:00
String lastServer;
Timer _coolDown;
String genericSearchTerm;
void search(String query) async {
setState(() => null);
_coolDown?.cancel();
_coolDown = Timer(
2021-10-14 18:09:30 +02:00
const Duration(milliseconds: 500),
2021-04-17 11:24:00 +02:00
() => setState(() {
genericSearchTerm = query;
publicRoomsResponse = null;
searchUser(context, controller.text);
}),
);
}
2021-11-14 13:56:36 +01:00
void joinGroupAction(PublicRoomsChunk room) {
showModalBottomSheet(
2021-04-17 11:24:00 +02:00
context: context,
2021-11-14 13:56:36 +01:00
builder: (c) => PublicRoomBottomSheet(
roomAlias: room.canonicalAlias,
outerContext: context,
chunk: room,
2021-04-17 11:24:00 +02:00
),
);
}
String server;
void setServer() async {
final newServer = await showTextInputDialog(
2021-05-23 15:02:36 +02:00
useRootNavigator: false,
2021-04-17 11:24:00 +02: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 18:47:05 +02:00
static const searchUserDirectoryLimit = 10;
2021-04-17 11:24:00 +02: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 11:24:00 +02:00
try {
2021-10-26 18:47:05 +02:00
response = await matrix.client.searchUserDirectory(
text,
limit: searchUserDirectoryLimit,
);
2021-04-17 11:24:00 +02: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 09:59:38 +02:00
setState(() => null);
2021-04-17 11:24:00 +02:00
}
2021-05-24 11:07:02 +02:00
bool _init = false;
2021-04-17 11:24:00 +02:00
@override
2021-05-23 13:11:55 +02:00
Widget build(BuildContext context) {
2021-05-24 11:07:02 +02:00
if (!_init) {
_init = true;
controller.text = VRouter.of(context).queryParameters['query'] ?? '';
WidgetsBinding.instance
.addPostFrameCallback((_) => search(controller.text));
}
2021-05-24 11:03:08 +02:00
2021-05-23 13:11:55 +02:00
return SearchView(this);
2021-04-17 11:24:00 +02:00
}
}
2021-05-24 12:16:46 +02:00
// #fluffychat:matrix.org