2020-06-10 08:07:01 +00:00
|
|
|
import 'package:famedlysdk/matrix_api.dart' as api;
|
2020-01-27 09:14:38 +00:00
|
|
|
import 'package:fluffychat/components/adaptive_page_layout.dart';
|
2020-04-27 11:36:39 +00:00
|
|
|
import 'package:fluffychat/components/dialogs/simple_dialogs.dart';
|
2020-01-27 09:14:38 +00:00
|
|
|
import 'package:fluffychat/components/matrix.dart';
|
2020-02-23 07:49:58 +00:00
|
|
|
import 'package:fluffychat/utils/app_route.dart';
|
2020-01-27 09:14:38 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2020-10-03 11:11:07 +00:00
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2020-01-27 09:14:38 +00:00
|
|
|
import 'package:pedantic/pedantic.dart';
|
|
|
|
|
|
|
|
import 'chat.dart';
|
|
|
|
import 'chat_list.dart';
|
|
|
|
import 'invitation_selection.dart';
|
|
|
|
|
|
|
|
class NewGroupView extends StatelessWidget {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return AdaptivePageLayout(
|
|
|
|
primaryPage: FocusPage.SECOND,
|
|
|
|
firstScaffold: ChatList(),
|
|
|
|
secondScaffold: _NewGroup(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _NewGroup extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_NewGroupState createState() => _NewGroupState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _NewGroupState extends State<_NewGroup> {
|
|
|
|
TextEditingController controller = TextEditingController();
|
|
|
|
bool publicGroup = false;
|
|
|
|
|
|
|
|
void submitAction(BuildContext context) async {
|
2020-05-13 13:58:59 +00:00
|
|
|
final matrix = Matrix.of(context);
|
2020-04-27 11:36:39 +00:00
|
|
|
final String roomID =
|
|
|
|
await SimpleDialogs(context).tryRequestWithLoadingDialog(
|
2020-08-16 10:54:43 +00:00
|
|
|
matrix.client.createRoom(
|
2020-06-10 08:07:01 +00:00
|
|
|
preset: publicGroup
|
|
|
|
? api.CreateRoomPreset.public_chat
|
|
|
|
: api.CreateRoomPreset.private_chat,
|
|
|
|
visibility: publicGroup ? api.Visibility.public : null,
|
|
|
|
roomAliasName:
|
|
|
|
publicGroup && controller.text.isNotEmpty ? controller.text : null,
|
|
|
|
name: controller.text.isNotEmpty ? controller.text : null,
|
|
|
|
),
|
2020-01-27 09:14:38 +00:00
|
|
|
);
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
if (roomID != null) {
|
|
|
|
unawaited(
|
2020-02-23 07:49:58 +00:00
|
|
|
Navigator.of(context).push(
|
|
|
|
AppRoute.defaultRoute(
|
|
|
|
context,
|
|
|
|
ChatView(roomID),
|
|
|
|
),
|
2020-01-27 09:14:38 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
await Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => InvitationSelection(
|
|
|
|
matrix.client.getRoomById(roomID),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2020-05-07 05:52:40 +00:00
|
|
|
title: Text(L10n.of(context).createNewGroup),
|
2020-01-27 09:14:38 +00:00
|
|
|
elevation: 0,
|
|
|
|
),
|
|
|
|
body: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(16.0),
|
|
|
|
child: TextField(
|
|
|
|
controller: controller,
|
|
|
|
autofocus: true,
|
|
|
|
autocorrect: false,
|
|
|
|
textInputAction: TextInputAction.go,
|
|
|
|
onSubmitted: (s) => submitAction(context),
|
|
|
|
decoration: InputDecoration(
|
|
|
|
border: OutlineInputBorder(),
|
2020-05-07 05:52:40 +00:00
|
|
|
labelText: L10n.of(context).optionalGroupName,
|
2020-01-27 09:14:38 +00:00
|
|
|
prefixIcon: Icon(Icons.people),
|
2020-05-07 05:52:40 +00:00
|
|
|
hintText: L10n.of(context).enterAGroupName),
|
2020-01-27 09:14:38 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
SwitchListTile(
|
2020-05-07 05:52:40 +00:00
|
|
|
title: Text(L10n.of(context).groupIsPublic),
|
2020-01-27 09:14:38 +00:00
|
|
|
value: publicGroup,
|
|
|
|
onChanged: (bool b) => setState(() => publicGroup = b),
|
|
|
|
),
|
2020-02-09 16:19:07 +00:00
|
|
|
Expanded(
|
2020-05-13 13:58:59 +00:00
|
|
|
child: Image.asset('assets/new_group_wallpaper.png'),
|
2020-02-09 16:19:07 +00:00
|
|
|
),
|
2020-01-27 09:14:38 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
floatingActionButton: FloatingActionButton(
|
2020-02-16 19:13:55 +00:00
|
|
|
foregroundColor: Colors.white,
|
2020-01-27 09:14:38 +00:00
|
|
|
backgroundColor: Theme.of(context).primaryColor,
|
|
|
|
onPressed: () => submitAction(context),
|
|
|
|
child: Icon(Icons.arrow_forward),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|