2020-01-09 21:52:27 +00:00
|
|
|
import 'dart:io';
|
|
|
|
import 'dart:math';
|
|
|
|
|
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
import 'package:fluffychat/components/matrix.dart';
|
2020-05-07 05:52:40 +00:00
|
|
|
import 'package:fluffychat/l10n/l10n.dart';
|
2020-01-09 21:52:27 +00:00
|
|
|
import 'package:fluffychat/utils/app_route.dart';
|
|
|
|
import 'package:fluffychat/views/login.dart';
|
|
|
|
import 'package:fluffychat/views/sign_up_password.dart';
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:image_picker/image_picker.dart';
|
|
|
|
|
|
|
|
class SignUp extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_SignUpState createState() => _SignUpState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _SignUpState extends State<SignUp> {
|
|
|
|
final TextEditingController usernameController = TextEditingController();
|
|
|
|
String usernameError;
|
|
|
|
bool loading = false;
|
|
|
|
File avatar;
|
|
|
|
|
|
|
|
void setAvatarAction() async {
|
2020-05-13 13:58:59 +00:00
|
|
|
var file = await ImagePicker.pickImage(
|
2020-01-09 21:52:27 +00:00
|
|
|
source: ImageSource.gallery,
|
|
|
|
maxHeight: 512,
|
|
|
|
maxWidth: 512,
|
|
|
|
imageQuality: 50,
|
|
|
|
);
|
|
|
|
if (file != null) setState(() => avatar = file);
|
|
|
|
}
|
|
|
|
|
|
|
|
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-06-10 08:07:01 +00:00
|
|
|
await matrix.client.api.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-01-09 21:52:27 +00:00
|
|
|
SignUpPassword(preferredUsername,
|
|
|
|
avatar: avatar, displayname: usernameController.text),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@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
|
|
|
|
.api
|
|
|
|
.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>[
|
2020-04-12 08:35:45 +00:00
|
|
|
Hero(
|
|
|
|
tag: 'loginBanner',
|
2020-05-13 13:58:59 +00:00
|
|
|
child: Image.asset('assets/fluffychat-banner.png'),
|
2020-04-12 08:35:45 +00:00
|
|
|
),
|
2020-01-09 21:52:27 +00:00
|
|
|
ListTile(
|
|
|
|
leading: CircleAvatar(
|
|
|
|
backgroundImage: avatar == null ? null : FileImage(avatar),
|
|
|
|
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-01-20 12:46:39 +00:00
|
|
|
title: Text(avatar == null
|
2020-05-07 05:52:40 +00:00
|
|
|
? 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-05-07 05:52:40 +00:00
|
|
|
hintText: L10n.of(context).username,
|
2020-01-09 21:52:27 +00:00
|
|
|
errorText: usernameError,
|
2020-05-07 05:52:40 +00:00
|
|
|
labelText: L10n.of(context).chooseAUsername),
|
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),
|
|
|
|
),
|
|
|
|
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
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|