fluffychat/lib/views/new_private_chat.dart

225 lines
7.8 KiB
Dart
Raw Normal View History

2020-01-27 10:14:38 +01:00
import 'dart:async';
2021-01-16 12:46:38 +01:00
import 'package:adaptive_page_layout/adaptive_page_layout.dart';
2020-01-27 10:14:38 +01:00
import 'package:famedlysdk/famedlysdk.dart';
import 'package:fluffychat/components/avatar.dart';
2021-03-27 18:04:31 +01:00
import 'package:fluffychat/components/contacts_list.dart';
2020-12-25 09:58:34 +01:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
2020-01-27 10:14:38 +01:00
import 'package:fluffychat/components/matrix.dart';
2020-10-28 07:23:50 +01:00
import 'package:fluffychat/utils/fluffy_share.dart';
2020-01-27 10:14:38 +01:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-01-27 10:14:38 +01:00
2021-01-16 12:46:38 +01:00
class NewPrivateChat extends StatefulWidget {
2020-01-27 10:14:38 +01:00
@override
_NewPrivateChatState createState() => _NewPrivateChatState();
}
2021-01-16 12:46:38 +01:00
class _NewPrivateChatState extends State<NewPrivateChat> {
2020-01-27 10:14:38 +01:00
TextEditingController controller = TextEditingController();
final _formKey = GlobalKey<FormState>();
bool loading = false;
String currentSearchTerm;
2020-06-10 10:07:01 +02:00
List<Profile> foundProfiles = [];
2020-01-27 10:14:38 +01:00
Timer coolDown;
2020-06-10 10:07:01 +02:00
Profile get foundProfile =>
foundProfiles.firstWhere((user) => user.userId == '@$currentSearchTerm',
orElse: () => null);
2020-01-27 10:14:38 +01:00
bool get correctMxId =>
foundProfiles
2020-06-10 10:07:01 +02:00
.indexWhere((user) => user.userId == '@$currentSearchTerm') !=
2020-01-27 10:14:38 +01:00
-1;
void submitAction(BuildContext context) async {
2021-01-23 10:13:21 +01:00
controller.text = controller.text.replaceAll('@', '').trim();
2020-01-27 10:14:38 +01:00
if (controller.text.isEmpty) return;
if (!_formKey.currentState.validate()) return;
2020-05-13 15:58:59 +02:00
final matrix = Matrix.of(context);
2020-01-27 10:14:38 +01:00
2021-01-23 10:13:21 +01:00
if ('@' + controller.text == matrix.client.userID) return;
2020-01-27 10:14:38 +01:00
2020-05-13 15:58:59 +02:00
final user = User(
2021-01-23 10:13:21 +01:00
'@' + controller.text,
2020-05-13 15:58:59 +02:00
room: Room(id: '', client: matrix.client),
2020-01-27 10:14:38 +01:00
);
2020-12-25 09:58:34 +01:00
final roomID = await showFutureLoadingDialog(
context: context,
future: () => user.startDirectChat(),
);
2020-01-27 10:14:38 +01:00
2020-12-25 09:58:34 +01:00
if (roomID.error == null) {
2021-01-16 12:46:38 +01:00
await AdaptivePageLayout.of(context)
.popAndPushNamed('/rooms/${roomID.result}');
2020-01-27 10:14:38 +01:00
}
}
2021-01-18 08:43:29 +01:00
void searchUserWithCoolDown(BuildContext context) async {
2020-01-27 10:14:38 +01:00
coolDown?.cancel();
coolDown = Timer(
2021-01-23 10:13:21 +01:00
Duration(milliseconds: 500),
2021-01-18 08:43:29 +01:00
() => searchUser(context, controller.text),
2020-01-27 10:14:38 +01:00
);
}
void searchUser(BuildContext context, String text) async {
if (text.isEmpty) {
setState(() {
foundProfiles = [];
});
}
currentSearchTerm = text;
if (currentSearchTerm.isEmpty) return;
if (loading) return;
setState(() => loading = true);
2020-05-13 15:58:59 +02:00
final matrix = Matrix.of(context);
2021-01-23 10:13:21 +01:00
UserSearchResult response;
try {
response = await matrix.client.searchUser(text, limit: 10);
} catch (_) {}
2020-01-27 10:14:38 +01:00
setState(() => loading = false);
2021-01-23 10:13:21 +01:00
if (response?.results?.isEmpty ?? true) return;
2020-01-27 10:14:38 +01:00
setState(() {
2021-01-23 10:13:21 +01:00
foundProfiles = List<Profile>.from(response.results);
2020-01-27 10:14:38 +01:00
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
2021-01-16 14:24:52 +01:00
leading: BackButton(),
2021-02-03 15:47:51 +01:00
title: Text(L10n.of(context).newChat),
2020-01-27 10:14:38 +01:00
elevation: 0,
2021-02-03 15:47:51 +01:00
actions: [
2021-02-27 07:53:34 +01:00
TextButton(
2021-03-04 12:28:06 +01:00
onPressed: () => AdaptivePageLayout.of(context)
.pushNamedAndRemoveUntilIsFirst('/newgroup'),
2021-02-03 15:47:51 +01:00
child: Text(
L10n.of(context).createNewGroup,
style: TextStyle(color: Theme.of(context).accentColor),
),
)
],
2020-01-27 10:14:38 +01:00
),
body: Column(
children: <Widget>[
Padding(
2021-01-24 17:26:59 +01:00
padding: const EdgeInsets.all(12.0),
2020-01-27 10:14:38 +01:00
child: Form(
key: _formKey,
child: TextFormField(
controller: controller,
2021-03-27 18:04:31 +01:00
//autofocus: true,
2020-01-27 10:14:38 +01:00
autocorrect: false,
2021-01-18 08:43:29 +01:00
onChanged: (String text) => searchUserWithCoolDown(context),
2020-01-27 10:14:38 +01:00
textInputAction: TextInputAction.go,
onFieldSubmitted: (s) => submitAction(context),
validator: (value) {
if (value.isEmpty) {
2020-05-07 07:52:40 +02:00
return L10n.of(context).pleaseEnterAMatrixIdentifier;
2020-01-27 10:14:38 +01:00
}
2020-05-13 15:58:59 +02:00
final matrix = Matrix.of(context);
var mxid = '@' + controller.text.trim();
2020-01-27 10:14:38 +01:00
if (mxid == matrix.client.userID) {
2020-05-07 07:52:40 +02:00
return L10n.of(context).youCannotInviteYourself;
2020-01-27 10:14:38 +01:00
}
2020-05-13 15:58:59 +02:00
if (!mxid.contains('@')) {
2020-05-07 07:52:40 +02:00
return L10n.of(context).makeSureTheIdentifierIsValid;
2020-01-27 10:14:38 +01:00
}
2020-05-13 15:58:59 +02:00
if (!mxid.contains(':')) {
2020-05-07 07:52:40 +02:00
return L10n.of(context).makeSureTheIdentifierIsValid;
2020-01-27 10:14:38 +01:00
}
return null;
},
decoration: InputDecoration(
2020-05-07 07:52:40 +02:00
labelText: L10n.of(context).enterAUsername,
2020-01-27 10:14:38 +01:00
prefixIcon: loading
? Container(
padding: const EdgeInsets.all(8.0),
width: 12,
height: 12,
child: CircularProgressIndicator(),
)
: correctMxId
? Padding(
padding: const EdgeInsets.all(8.0),
child: Avatar(
2020-06-10 10:07:01 +02:00
foundProfile.avatarUrl,
foundProfile.displayname ?? foundProfile.userId,
2020-01-27 10:14:38 +01:00
size: 12,
),
)
2020-12-06 10:31:35 +01:00
: Icon(Icons.account_circle_outlined),
2020-05-13 15:58:59 +02:00
prefixText: '@',
2021-03-27 18:04:31 +01:00
suffixIcon: IconButton(
onPressed: () => submitAction(context),
icon: Icon(Icons.arrow_forward_outlined),
),
2020-05-13 15:58:59 +02:00
hintText: '${L10n.of(context).username.toLowerCase()}',
2020-01-27 10:14:38 +01:00
),
),
),
),
Divider(height: 1),
2021-03-27 18:04:31 +01:00
ListTile(
leading: CircleAvatar(
radius: Avatar.defaultSize / 2,
foregroundColor: Theme.of(context).accentColor,
backgroundColor: Theme.of(context).secondaryHeaderColor,
child: Icon(Icons.share_outlined),
),
onTap: () => FluffyShare.share(
L10n.of(context).inviteText(Matrix.of(context).client.userID,
'https://matrix.to/#/${Matrix.of(context).client.userID}'),
context),
title: Text('${L10n.of(context).yourOwnUsername}:'),
subtitle: Text(
Matrix.of(context).client.userID,
style: TextStyle(color: Theme.of(context).accentColor),
),
),
Divider(height: 1),
if (foundProfiles.isNotEmpty)
2020-01-27 10:14:38 +01:00
Expanded(
child: ListView.builder(
itemCount: foundProfiles.length,
itemBuilder: (BuildContext context, int i) {
2020-05-13 15:58:59 +02:00
var foundProfile = foundProfiles[i];
2020-01-27 10:14:38 +01:00
return ListTile(
onTap: () {
setState(() {
controller.text = currentSearchTerm =
2020-06-10 10:07:01 +02:00
foundProfile.userId.substring(1);
2020-01-27 10:14:38 +01:00
});
},
leading: Avatar(
2020-06-10 10:07:01 +02:00
foundProfile.avatarUrl,
foundProfile.displayname ?? foundProfile.userId,
2020-01-27 10:14:38 +01:00
//size: 24,
),
title: Text(
2020-06-10 10:07:01 +02:00
foundProfile.displayname ?? foundProfile.userId.localpart,
2020-01-27 10:14:38 +01:00
style: TextStyle(),
maxLines: 1,
),
subtitle: Text(
2020-06-10 10:07:01 +02:00
foundProfile.userId,
2020-01-27 10:14:38 +01:00
maxLines: 1,
style: TextStyle(
fontSize: 12,
),
),
);
},
),
),
2021-03-27 18:04:31 +01:00
if (foundProfiles.isEmpty)
2020-02-09 17:19:07 +01:00
Expanded(
2021-03-27 18:04:31 +01:00
child: ContactsList(searchController: controller),
2020-02-09 17:19:07 +01:00
),
2020-01-27 10:14:38 +01:00
],
),
);
}
}