2019-10-03 06:55:17 +02:00
|
|
|
import 'package:flutter/cupertino.dart';
|
2019-02-07 07:35:19 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2019-09-27 14:52:38 +02:00
|
|
|
import 'package:git_touch/models/auth.dart';
|
2019-10-03 06:55:17 +02:00
|
|
|
import 'package:git_touch/models/theme.dart';
|
2019-09-25 11:06:36 +02:00
|
|
|
import 'package:git_touch/scaffolds/single.dart';
|
2019-10-02 09:39:47 +02:00
|
|
|
import 'package:git_touch/utils/utils.dart';
|
2019-09-11 13:59:47 +02:00
|
|
|
import 'package:git_touch/widgets/app_bar_title.dart';
|
2019-09-08 14:07:35 +02:00
|
|
|
import 'package:provider/provider.dart';
|
2019-02-08 12:34:07 +01:00
|
|
|
import '../widgets/link.dart';
|
2019-02-10 06:17:25 +01:00
|
|
|
import '../widgets/loading.dart';
|
2019-03-09 10:03:33 +01:00
|
|
|
import '../widgets/avatar.dart';
|
2019-12-13 06:13:45 +01:00
|
|
|
|
2019-02-07 07:35:19 +01:00
|
|
|
class LoginScreen extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_LoginScreenState createState() => _LoginScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _LoginScreenState extends State<LoginScreen> {
|
2019-10-03 06:55:17 +02:00
|
|
|
String _token = '';
|
2019-10-06 13:20:38 +02:00
|
|
|
String _gitlabToken = '';
|
|
|
|
String _gitlabDomain = 'https://gitlab.com';
|
2020-01-29 10:33:54 +01:00
|
|
|
String _giteaToken = '';
|
|
|
|
String _giteaDomain = 'https://try.gitea.io';
|
2019-10-03 06:55:17 +02:00
|
|
|
|
2019-09-26 16:14:14 +02:00
|
|
|
Widget _buildAccountItem(int index) {
|
2019-11-08 11:29:08 +01:00
|
|
|
final theme = Provider.of<ThemeModel>(context);
|
|
|
|
final auth = Provider.of<AuthModel>(context);
|
|
|
|
final account = auth.accounts[index];
|
2019-02-21 14:21:16 +01:00
|
|
|
|
|
|
|
return Link(
|
|
|
|
onTap: () {
|
2020-01-24 16:29:08 +01:00
|
|
|
auth.setActiveAccountIndex(null);
|
|
|
|
// FIXME: trigger scaffold reload
|
|
|
|
Future.delayed(Duration(milliseconds: 100), () {
|
|
|
|
auth.setActiveAccountIndex(index);
|
|
|
|
});
|
2019-02-21 14:21:16 +01:00
|
|
|
},
|
|
|
|
child: Container(
|
2019-10-02 10:09:54 +02:00
|
|
|
padding: CommonStyle.padding,
|
2019-02-21 14:21:16 +01:00
|
|
|
decoration: BoxDecoration(
|
2020-01-27 08:11:51 +01:00
|
|
|
border: Border(bottom: BorderSide(color: theme.palette.border)),
|
2019-02-21 14:21:16 +01:00
|
|
|
),
|
2019-09-26 16:14:14 +02:00
|
|
|
child: Row(
|
|
|
|
children: <Widget>[
|
2019-12-22 04:11:13 +01:00
|
|
|
Avatar(url: account.avatarUrl, size: AvatarSize.large),
|
2019-09-26 16:14:14 +02:00
|
|
|
Padding(padding: EdgeInsets.only(left: 10)),
|
|
|
|
Expanded(
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(account.login, style: TextStyle(fontSize: 20)),
|
|
|
|
Padding(padding: EdgeInsets.only(top: 6)),
|
|
|
|
Text(account.domain)
|
|
|
|
],
|
|
|
|
),
|
2019-02-21 14:21:16 +01:00
|
|
|
),
|
2019-11-08 11:29:08 +01:00
|
|
|
(index == auth.activeAccountIndex)
|
2019-09-26 16:14:14 +02:00
|
|
|
? Icon(Icons.check)
|
|
|
|
: Container(),
|
|
|
|
],
|
|
|
|
),
|
2019-02-21 14:21:16 +01:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-09-24 15:04:30 +02:00
|
|
|
Widget _buildAddItem({String text, Function onTap}) {
|
2019-11-08 11:29:08 +01:00
|
|
|
final theme = Provider.of<ThemeModel>(context);
|
|
|
|
|
2019-02-21 11:43:41 +01:00
|
|
|
return Link(
|
|
|
|
child: Container(
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 20),
|
|
|
|
decoration: BoxDecoration(
|
2020-01-27 08:11:51 +01:00
|
|
|
border: Border(bottom: BorderSide(color: theme.palette.border)),
|
2019-02-21 11:43:41 +01:00
|
|
|
),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
|
|
|
Icon(Icons.add),
|
|
|
|
Text(text, style: TextStyle(fontSize: 16)),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
onTap: onTap,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-02-07 07:35:19 +01:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2019-10-03 06:55:17 +02:00
|
|
|
final auth = Provider.of<AuthModel>(context);
|
2019-11-08 11:29:08 +01:00
|
|
|
final theme = Provider.of<ThemeModel>(context);
|
2019-02-21 15:36:19 +01:00
|
|
|
|
2019-09-25 11:06:36 +02:00
|
|
|
return SingleScaffold(
|
2019-09-11 13:59:47 +02:00
|
|
|
title: AppBarTitle('Select account'),
|
2019-10-03 06:55:17 +02:00
|
|
|
body: auth.loading
|
2019-09-25 08:24:20 +02:00
|
|
|
? Center(child: Loading())
|
|
|
|
: Container(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
2019-10-03 06:55:17 +02:00
|
|
|
...List.generate(auth.accounts.length, _buildAccountItem),
|
2019-09-25 08:24:20 +02:00
|
|
|
_buildAddItem(
|
2019-10-03 06:55:17 +02:00
|
|
|
text: 'GitHub Account by OAuth',
|
|
|
|
onTap: auth.redirectToGithubOauth,
|
2019-09-25 08:24:20 +02:00
|
|
|
),
|
2019-10-03 06:55:17 +02:00
|
|
|
_buildAddItem(
|
|
|
|
text: 'GitHub Account by Token',
|
|
|
|
onTap: () async {
|
|
|
|
var result =
|
|
|
|
await Provider.of<ThemeModel>(context).showConfirm(
|
|
|
|
context,
|
|
|
|
Column(
|
|
|
|
children: <Widget>[
|
|
|
|
CupertinoTextField(
|
|
|
|
placeholder: 'Access token',
|
|
|
|
onChanged: (v) {
|
|
|
|
setState(() {
|
|
|
|
_token = v;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
|
|
|
SizedBox(height: 8),
|
|
|
|
Text(
|
|
|
|
'GitTouch needs these permissions',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14, fontWeight: FontWeight.w400),
|
|
|
|
),
|
|
|
|
SizedBox(height: 8),
|
|
|
|
Text(
|
2020-01-20 07:33:46 +01:00
|
|
|
'user, repo, read:org, notifications',
|
2019-10-03 06:55:17 +02:00
|
|
|
style: TextStyle(
|
2020-01-27 08:11:51 +01:00
|
|
|
fontSize: 16, color: theme.palette.primary),
|
2019-10-03 06:55:17 +02:00
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
if (result == true) {
|
|
|
|
try {
|
|
|
|
await auth.loginWithToken(_token);
|
|
|
|
} catch (err) {
|
|
|
|
Provider.of<ThemeModel>(context).showConfirm(
|
|
|
|
context, Text('Token invalid: $err'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-10-06 10:13:56 +02:00
|
|
|
),
|
2020-01-14 07:01:26 +01:00
|
|
|
// _buildAddItem(
|
|
|
|
// text: 'GitLab Account by Token',
|
|
|
|
// onTap: () async {
|
2020-01-29 10:33:54 +01:00
|
|
|
// final result =
|
2020-01-14 07:01:26 +01:00
|
|
|
// await Provider.of<ThemeModel>(context).showConfirm(
|
|
|
|
// context,
|
|
|
|
// Column(
|
|
|
|
// children: <Widget>[
|
|
|
|
// CupertinoTextField(
|
|
|
|
// placeholder: 'Domain',
|
|
|
|
// onChanged: (v) {
|
|
|
|
// setState(() {
|
|
|
|
// _gitlabDomain = v;
|
|
|
|
// });
|
|
|
|
// },
|
|
|
|
// ),
|
|
|
|
// SizedBox(height: 8),
|
|
|
|
// CupertinoTextField(
|
|
|
|
// placeholder: 'Access token',
|
|
|
|
// onChanged: (v) {
|
|
|
|
// setState(() {
|
|
|
|
// _gitlabToken = v;
|
|
|
|
// });
|
|
|
|
// },
|
|
|
|
// ),
|
|
|
|
// SizedBox(height: 8),
|
|
|
|
// Text(
|
|
|
|
// 'GitTouch needs these permissions',
|
|
|
|
// style: TextStyle(
|
|
|
|
// fontSize: 14, fontWeight: FontWeight.w400),
|
|
|
|
// ),
|
|
|
|
// SizedBox(height: 8),
|
|
|
|
// Text(
|
|
|
|
// 'api, read_user, read_repository',
|
|
|
|
// style: TextStyle(
|
2020-01-27 08:11:51 +01:00
|
|
|
// fontSize: 16, color: theme.palette.primary),
|
2020-01-14 07:01:26 +01:00
|
|
|
// )
|
|
|
|
// ],
|
|
|
|
// ),
|
|
|
|
// );
|
|
|
|
// if (result == true) {
|
|
|
|
// try {
|
|
|
|
// await auth.loginToGitlab(_gitlabDomain, _gitlabToken);
|
|
|
|
// // TODO: Custom domain
|
|
|
|
// } catch (err) {
|
|
|
|
// Provider.of<ThemeModel>(context).showConfirm(
|
|
|
|
// context, Text('Token invalid: $err'));
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// },
|
2020-01-29 10:33:54 +01:00
|
|
|
// ),
|
|
|
|
// _buildAddItem(
|
|
|
|
// text: 'Gitea Account by Token',
|
|
|
|
// onTap: () async {
|
|
|
|
// final result =
|
|
|
|
// await Provider.of<ThemeModel>(context).showConfirm(
|
|
|
|
// context,
|
|
|
|
// Column(
|
|
|
|
// children: <Widget>[
|
|
|
|
// CupertinoTextField(
|
|
|
|
// placeholder: 'Domain',
|
|
|
|
// onChanged: (v) {
|
|
|
|
// setState(() {
|
|
|
|
// _giteaDomain = v;
|
|
|
|
// });
|
|
|
|
// },
|
|
|
|
// ),
|
|
|
|
// SizedBox(height: 8),
|
|
|
|
// CupertinoTextField(
|
|
|
|
// placeholder: 'Access token',
|
|
|
|
// onChanged: (v) {
|
|
|
|
// setState(() {
|
|
|
|
// _giteaToken = v;
|
|
|
|
// });
|
|
|
|
// },
|
|
|
|
// ),
|
|
|
|
// ],
|
|
|
|
// ),
|
|
|
|
// );
|
|
|
|
// if (result == true) {
|
|
|
|
// try {
|
|
|
|
// await auth.loginToGitea(_giteaDomain, _giteaToken);
|
|
|
|
// } catch (err) {
|
|
|
|
// Provider.of<ThemeModel>(context).showConfirm(
|
|
|
|
// context, Text('Token invalid: $err'));
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// },
|
2020-01-14 07:01:26 +01:00
|
|
|
// )
|
2019-09-25 08:24:20 +02:00
|
|
|
],
|
2019-05-12 08:01:12 +02:00
|
|
|
),
|
2019-09-25 08:24:20 +02:00
|
|
|
),
|
2019-02-07 07:35:19 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|