You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			117 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			117 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Dart
		
	
import 'dart:async';
 | 
						|
 | 
						|
import 'package:flutter/material.dart';
 | 
						|
 | 
						|
import 'package:matrix/matrix.dart';
 | 
						|
 | 
						|
import 'package:fluffychat/l10n/l10n.dart';
 | 
						|
import 'package:fluffychat/pages/invitation_selection/invitation_selection_view.dart';
 | 
						|
import 'package:fluffychat/widgets/future_loading_dialog.dart';
 | 
						|
import 'package:fluffychat/widgets/matrix.dart';
 | 
						|
import '../../utils/localized_exception_extension.dart';
 | 
						|
 | 
						|
class InvitationSelection extends StatefulWidget {
 | 
						|
  final String roomId;
 | 
						|
  const InvitationSelection({
 | 
						|
    super.key,
 | 
						|
    required this.roomId,
 | 
						|
  });
 | 
						|
 | 
						|
  @override
 | 
						|
  InvitationSelectionController createState() =>
 | 
						|
      InvitationSelectionController();
 | 
						|
}
 | 
						|
 | 
						|
class InvitationSelectionController extends State<InvitationSelection> {
 | 
						|
  TextEditingController controller = TextEditingController();
 | 
						|
  late String currentSearchTerm;
 | 
						|
  bool loading = false;
 | 
						|
  List<Profile> foundProfiles = [];
 | 
						|
  Timer? coolDown;
 | 
						|
 | 
						|
  String? get roomId => widget.roomId;
 | 
						|
 | 
						|
  Future<List<User>> getContacts(BuildContext context) async {
 | 
						|
    final client = Matrix.of(context).client;
 | 
						|
    final room = client.getRoomById(roomId!)!;
 | 
						|
 | 
						|
    final participants = (room.summary.mJoinedMemberCount ?? 0) > 100
 | 
						|
        ? room.getParticipants()
 | 
						|
        : await room.requestParticipants();
 | 
						|
    participants.removeWhere(
 | 
						|
      (u) => ![Membership.join, Membership.invite].contains(u.membership),
 | 
						|
    );
 | 
						|
    final contacts = client.rooms
 | 
						|
        .where((r) => r.isDirectChat)
 | 
						|
        .map((r) => r.unsafeGetUserFromMemoryOrFallback(r.directChatMatrixID!))
 | 
						|
        .toList();
 | 
						|
    contacts.sort(
 | 
						|
      (a, b) => a.calcDisplayname().toLowerCase().compareTo(
 | 
						|
            b.calcDisplayname().toLowerCase(),
 | 
						|
          ),
 | 
						|
    );
 | 
						|
    return contacts;
 | 
						|
  }
 | 
						|
 | 
						|
  void inviteAction(BuildContext context, String id, String displayname) async {
 | 
						|
    final room = Matrix.of(context).client.getRoomById(roomId!)!;
 | 
						|
 | 
						|
    final success = await showFutureLoadingDialog(
 | 
						|
      context: context,
 | 
						|
      future: () => room.invite(id),
 | 
						|
    );
 | 
						|
    if (success.error == null) {
 | 
						|
      ScaffoldMessenger.of(context).showSnackBar(
 | 
						|
        SnackBar(
 | 
						|
          content: Text(L10n.of(context).contactHasBeenInvitedToTheGroup),
 | 
						|
        ),
 | 
						|
      );
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  void searchUserWithCoolDown(String text) async {
 | 
						|
    coolDown?.cancel();
 | 
						|
    coolDown = Timer(
 | 
						|
      const Duration(milliseconds: 500),
 | 
						|
      () => searchUser(context, text),
 | 
						|
    );
 | 
						|
  }
 | 
						|
 | 
						|
  void searchUser(BuildContext context, String text) async {
 | 
						|
    coolDown?.cancel();
 | 
						|
    if (text.isEmpty) {
 | 
						|
      setState(() => foundProfiles = []);
 | 
						|
    }
 | 
						|
    currentSearchTerm = text;
 | 
						|
    if (currentSearchTerm.isEmpty) return;
 | 
						|
    if (loading) return;
 | 
						|
    setState(() => loading = true);
 | 
						|
    final matrix = Matrix.of(context);
 | 
						|
    SearchUserDirectoryResponse response;
 | 
						|
    try {
 | 
						|
      response = await matrix.client.searchUserDirectory(text, limit: 10);
 | 
						|
    } catch (e) {
 | 
						|
      ScaffoldMessenger.of(context).showSnackBar(
 | 
						|
        SnackBar(content: Text((e).toLocalizedString(context))),
 | 
						|
      );
 | 
						|
      return;
 | 
						|
    } finally {
 | 
						|
      setState(() => loading = false);
 | 
						|
    }
 | 
						|
    setState(() {
 | 
						|
      foundProfiles = List<Profile>.from(response.results);
 | 
						|
      if (text.isValidMatrixId &&
 | 
						|
          foundProfiles.indexWhere((profile) => text == profile.userId) == -1) {
 | 
						|
        setState(
 | 
						|
          () => foundProfiles = [
 | 
						|
            Profile.fromJson({'user_id': text}),
 | 
						|
          ],
 | 
						|
        );
 | 
						|
      }
 | 
						|
    });
 | 
						|
  }
 | 
						|
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context) => InvitationSelectionView(this);
 | 
						|
}
 |