lemmur-app-android/lib/pages/add_account.dart

184 lines
6.1 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:flutter_hooks/flutter_hooks.dart';
2021-04-05 20:14:39 +02:00
import 'package:lemmy_api_client/v3.dart';
2021-04-23 19:32:10 +02:00
import 'package:provider/provider.dart';
import 'package:url_launcher/url_launcher.dart' as ul;
import '../hooks/delayed_loading.dart';
import '../hooks/stores.dart';
2021-02-27 17:02:55 +01:00
import '../l10n/l10n.dart';
2021-04-23 19:32:10 +02:00
import '../stores/config_store.dart';
2021-10-21 14:40:28 +02:00
import '../widgets/cached_network_image.dart';
2020-09-20 00:15:36 +02:00
import '../widgets/fullscreenable_image.dart';
2021-02-09 15:12:13 +01:00
import '../widgets/radio_picker.dart';
import 'add_instance.dart';
2020-09-30 19:05:00 +02:00
/// A modal where an account can be added for a given instance
class AddAccountPage extends HookWidget {
final String instanceHost;
const AddAccountPage({required this.instanceHost});
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
2021-02-09 15:12:13 +01:00
final usernameController = useListenable(useTextEditingController());
final passwordController = useListenable(useTextEditingController());
2021-04-11 17:19:44 +02:00
final passwordFocusNode = useFocusNode();
final accountsStore = useAccountsStore();
2020-09-30 19:05:00 +02:00
final loading = useDelayedLoading();
final selectedInstance = useState(instanceHost);
final icon = useState<String?>(null);
2021-02-09 15:12:13 +01:00
useEffect(() {
2021-04-05 20:14:39 +02:00
LemmyApiV3(selectedInstance.value)
2021-02-24 20:52:18 +01:00
.run(const GetSite())
.then((site) => icon.value = site.siteView?.site.icon);
return null;
}, [selectedInstance.value]);
handleOnAdd() async {
try {
2021-04-23 19:32:10 +02:00
final isFirstAccount = accountsStore.hasNoAccount;
loading.start();
await accountsStore.addAccount(
selectedInstance.value,
usernameController.text,
passwordController.text,
);
2021-04-23 19:32:10 +02:00
// if first account try to import settings
if (isFirstAccount) {
try {
await context.read<ConfigStore>().importLemmyUserSettings(
accountsStore
.userDataFor(
selectedInstance.value, usernameController.text)!
.jwt);
// ignore: empty_catches
2021-04-23 19:32:10 +02:00
} catch (e) {}
}
Navigator.of(context).pop();
} on Exception catch (err) {
2021-03-10 08:34:30 +01:00
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text(err.toString()),
));
}
loading.cancel();
}
2021-04-11 17:19:44 +02:00
final handleSubmit =
usernameController.text.isEmpty || passwordController.text.isEmpty
? null
: loading.pending
? () {}
: handleOnAdd;
return Scaffold(
appBar: AppBar(
2021-01-03 19:43:39 +01:00
leading: const CloseButton(),
2021-03-03 12:31:36 +01:00
title: const Text('Add account'),
),
2021-04-11 20:52:11 +02:00
body: AutofillGroup(
child: ListView(
padding: const EdgeInsets.all(15),
children: [
if (icon.value == null)
const SizedBox(height: 150)
else
SizedBox(
height: 150,
child: FullscreenableImage(
url: icon.value!,
child: CachedNetworkImage(
imageUrl: icon.value!,
2021-10-21 14:40:28 +02:00
errorBuilder: (_, ___) => const SizedBox.shrink(),
2021-04-11 20:52:11 +02:00
),
2020-09-20 00:15:36 +02:00
),
),
2021-04-11 20:52:11 +02:00
RadioPicker<String>(
title: 'select instance',
values: accountsStore.instances.toList(),
groupValue: selectedInstance.value,
onChanged: (value) => selectedInstance.value = value,
buttonBuilder: (context, displayValue, onPressed) => TextButton(
onPressed: onPressed,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(displayValue),
const Icon(Icons.arrow_drop_down),
],
),
),
2021-04-11 20:52:11 +02:00
trailing: ListTile(
leading: const Padding(
padding: EdgeInsets.all(8),
child: Icon(Icons.add),
),
title: const Text('Add instance'),
onTap: () async {
final value =
await Navigator.of(context).push(AddInstancePage.route());
2021-04-11 20:52:11 +02:00
Navigator.of(context).pop(value);
},
),
),
2021-04-11 20:52:11 +02:00
TextField(
autofocus: true,
controller: usernameController,
autofillHints: const [
AutofillHints.email,
AutofillHints.username
],
onSubmitted: (_) => passwordFocusNode.requestFocus(),
decoration: InputDecoration(
labelText: L10n.of(context)!.email_or_username),
),
const SizedBox(height: 5),
TextField(
controller: passwordController,
obscureText: true,
focusNode: passwordFocusNode,
onSubmitted: (_) => handleSubmit?.call(),
autofillHints: const [AutofillHints.password],
keyboardType: TextInputType.visiblePassword,
decoration:
InputDecoration(labelText: L10n.of(context)!.password),
),
ElevatedButton(
onPressed: handleSubmit,
child: !loading.loading
? const Text('Sign in')
: SizedBox(
width: 20,
height: 20,
child: CircularProgressIndicator(
valueColor:
AlwaysStoppedAnimation<Color>(theme.canvasColor),
),
2021-02-09 15:12:13 +01:00
),
2021-04-11 20:52:11 +02:00
),
TextButton(
onPressed: () {
// TODO: extract to LemmyUrls or something
ul.launch('https://${selectedInstance.value}/login');
},
child: const Text('Register'),
),
],
),
),
);
}
static Route<String> route(String instanceHost) => MaterialPageRoute(
builder: (context) => AddAccountPage(instanceHost: instanceHost),
fullscreenDialog: true,
);
}