FurryChat/lib/views/sign_up.dart

192 lines
6.1 KiB
Dart
Raw Normal View History

2020-01-09 21:52:27 +00:00
import 'dart:math';
import 'package:famedlysdk/famedlysdk.dart';
2020-10-04 15:01:54 +00:00
import 'package:file_picker_cross/file_picker_cross.dart';
2020-01-09 21:52:27 +00:00
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-01-09 21:52:27 +00:00
2020-10-15 13:51:24 +00:00
import '../components/matrix.dart';
import '../utils/app_route.dart';
import 'login.dart';
import 'sign_up_password.dart';
2020-01-09 21:52:27 +00:00
class SignUp extends StatefulWidget {
2020-10-06 19:59:36 +00:00
SignUp({Key key, this.wellknown}) : super(key: key);
2020-06-14 12:12:47 +00:00
final WellKnownInformations wellknown;
2020-01-09 21:52:27 +00:00
@override
_SignUpState createState() => _SignUpState();
}
class _SignUpState extends State<SignUp> {
final TextEditingController usernameController = TextEditingController();
String usernameError;
bool loading = false;
2020-10-04 15:01:54 +00:00
MatrixFile avatar;
2020-01-09 21:52:27 +00:00
void setAvatarAction() async {
2020-10-04 15:01:54 +00:00
var file =
await FilePickerCross.importFromStorage(type: FileTypeCross.image);
if (file != null) {
setState(
() => avatar = MatrixFile(
bytes: file.toUint8List(),
name: file.fileName,
),
);
}
2020-01-09 21:52:27 +00:00
}
void signUpAction(BuildContext context) async {
2020-05-13 13:58:59 +00:00
var matrix = Matrix.of(context);
2020-01-09 21:52:27 +00:00
if (usernameController.text.isEmpty) {
2020-05-07 05:52:40 +00:00
setState(() => usernameError = L10n.of(context).pleaseChooseAUsername);
2020-01-09 21:52:27 +00:00
} else {
setState(() => usernameError = null);
}
if (usernameController.text.isEmpty) {
return;
}
2020-04-12 08:35:45 +00:00
setState(() => loading = true);
2020-01-09 21:52:27 +00:00
2020-05-13 13:58:59 +00:00
final preferredUsername =
usernameController.text.toLowerCase().replaceAll(' ', '-');
2020-01-09 21:52:27 +00:00
try {
2020-08-16 10:54:43 +00:00
await matrix.client.usernameAvailable(preferredUsername);
2020-01-09 21:52:27 +00:00
} on MatrixException catch (exception) {
setState(() => usernameError = exception.errorMessage);
return setState(() => loading = false);
} catch (exception) {
setState(() => usernameError = exception.toString());
return setState(() => loading = false);
}
setState(() => loading = false);
await Navigator.of(context).push(
2020-04-12 08:35:45 +00:00
AppRoute(
2020-06-14 12:12:47 +00:00
SignUpPassword(
preferredUsername,
avatar: avatar,
displayname: usernameController.text,
wellknown: widget.wellknown,
),
2020-01-09 21:52:27 +00:00
),
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
2020-04-12 08:35:45 +00:00
elevation: 0,
leading: loading ? Container() : null,
title: Text(
2020-06-10 08:07:01 +00:00
Matrix.of(context)
.client
.homeserver
.toString()
.replaceFirst('https://', ''),
2020-01-09 21:52:27 +00:00
),
),
body: ListView(
padding: EdgeInsets.symmetric(
horizontal:
2020-01-27 09:59:03 +00:00
max((MediaQuery.of(context).size.width - 600) / 2, 0)),
2020-01-09 21:52:27 +00:00
children: <Widget>[
ListTile(
leading: CircleAvatar(
2020-06-20 09:32:49 +00:00
backgroundImage:
avatar == null ? null : MemoryImage(avatar.bytes),
2020-01-09 21:52:27 +00:00
backgroundColor: avatar == null
2020-04-12 08:35:45 +00:00
? Theme.of(context).brightness == Brightness.dark
? Color(0xff121212)
: Colors.white
2020-01-09 21:52:27 +00:00
: Theme.of(context).secondaryHeaderColor,
2020-01-27 09:59:03 +00:00
child: avatar == null
? Icon(Icons.camera_alt,
color: Theme.of(context).primaryColor)
: null,
2020-01-09 21:52:27 +00:00
),
trailing: avatar == null
? null
: Icon(
Icons.close,
color: Colors.red,
),
2020-06-14 11:14:10 +00:00
title: Padding(
padding: const EdgeInsets.all(11.0),
child: Text(avatar == null
? L10n.of(context).setAProfilePicture
: L10n.of(context).discardPicture),
),
2020-01-09 21:52:27 +00:00
onTap: avatar == null
? setAvatarAction
: () => setState(() => avatar = null),
),
ListTile(
leading: CircleAvatar(
2020-04-12 08:35:45 +00:00
backgroundColor: Theme.of(context).brightness == Brightness.dark
? Color(0xff121212)
: Colors.white,
2020-01-27 09:59:03 +00:00
child: Icon(
Icons.account_circle,
color: Theme.of(context).primaryColor,
),
2020-01-09 21:52:27 +00:00
),
title: TextField(
2020-01-20 12:46:39 +00:00
autocorrect: false,
2020-01-09 21:52:27 +00:00
controller: usernameController,
onSubmitted: (s) => signUpAction(context),
decoration: InputDecoration(
2020-06-14 11:14:10 +00:00
hintText: L10n.of(context).username,
errorText: usernameError,
labelText: L10n.of(context).chooseAUsername,
border: OutlineInputBorder(),
),
2020-01-09 21:52:27 +00:00
),
),
SizedBox(height: 20),
2020-04-12 08:35:45 +00:00
Hero(
tag: 'loginButton',
child: Container(
height: 50,
padding: EdgeInsets.symmetric(horizontal: 12),
child: RaisedButton(
elevation: 7,
color: Theme.of(context).primaryColor,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(6),
),
child: loading
? CircularProgressIndicator()
: Text(
2020-05-07 05:52:40 +00:00
L10n.of(context).signUp.toUpperCase(),
2020-04-12 08:35:45 +00:00
style: TextStyle(color: Colors.white, fontSize: 16),
),
2020-06-20 09:35:54 +00:00
onPressed: loading ? null : () => signUpAction(context),
2020-01-09 21:52:27 +00:00
),
),
),
Center(
child: FlatButton(
child: Text(
2020-05-07 05:52:40 +00:00
L10n.of(context).alreadyHaveAnAccount,
2020-01-09 21:52:27 +00:00
style: TextStyle(
decoration: TextDecoration.underline,
color: Colors.blue,
2020-01-27 09:59:03 +00:00
fontSize: 16,
2020-01-09 21:52:27 +00:00
),
),
onPressed: () => Navigator.of(context).push(
2020-04-12 08:35:45 +00:00
AppRoute(Login()),
2020-01-09 21:52:27 +00:00
),
),
),
]),
);
}
}