stack_wallet/lib/pages_desktop_specific/desktop_login_view.dart

251 lines
8.2 KiB
Dart
Raw Normal View History

import 'dart:async';
2022-11-04 19:32:02 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
2022-11-08 19:50:53 +00:00
import 'package:flutter_svg/svg.dart';
import 'package:stackwallet/notifications/show_flush_bar.dart';
2022-11-08 20:04:00 +00:00
import 'package:stackwallet/pages_desktop_specific/forgot_password_desktop_view.dart';
2022-11-04 19:32:02 +00:00
import 'package:stackwallet/pages_desktop_specific/home/desktop_home_view.dart';
import 'package:stackwallet/providers/desktop/storage_crypto_handler_provider.dart';
import 'package:stackwallet/providers/global/secure_store_provider.dart';
2022-11-08 19:50:53 +00:00
import 'package:stackwallet/utilities/assets.dart';
import 'package:stackwallet/utilities/constants.dart';
import 'package:stackwallet/utilities/flutter_secure_storage_interface.dart';
2022-11-04 19:32:02 +00:00
import 'package:stackwallet/utilities/text_styles.dart';
2022-11-08 19:50:53 +00:00
import 'package:stackwallet/utilities/theme/stack_colors.dart';
import 'package:stackwallet/widgets/custom_buttons/blue_text_button.dart';
import 'package:stackwallet/widgets/desktop/desktop_scaffold.dart';
2022-11-04 19:32:02 +00:00
import 'package:stackwallet/widgets/desktop/primary_button.dart';
2022-11-15 17:59:53 +00:00
import 'package:stackwallet/widgets/loading_indicator.dart';
2022-11-08 19:50:53 +00:00
import 'package:stackwallet/widgets/stack_text_field.dart';
2022-11-04 19:32:02 +00:00
class DesktopLoginView extends ConsumerStatefulWidget {
2022-11-04 19:32:02 +00:00
const DesktopLoginView({
Key? key,
this.startupWalletId,
this.load,
2022-11-04 19:32:02 +00:00
}) : super(key: key);
static const String routeName = "/desktopLogin";
final String? startupWalletId;
final Future<void> Function()? load;
2022-11-04 19:32:02 +00:00
@override
ConsumerState<DesktopLoginView> createState() => _DesktopLoginViewState();
2022-11-04 19:32:02 +00:00
}
class _DesktopLoginViewState extends ConsumerState<DesktopLoginView> {
2022-11-08 19:50:53 +00:00
late final TextEditingController passwordController;
late final FocusNode passwordFocusNode;
bool hidePassword = true;
bool _continueEnabled = false;
Future<void> login() async {
try {
2022-11-15 17:59:53 +00:00
unawaited(
showDialog(
context: context,
2022-11-19 15:20:58 +00:00
builder: (context) => Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: const [
LoadingIndicator(
width: 200,
height: 200,
),
],
2022-11-15 17:59:53 +00:00
),
),
);
2022-11-16 19:29:51 +00:00
await Future<void>.delayed(const Duration(seconds: 1));
await ref
.read(storageCryptoHandlerProvider)
.initFromExisting(passwordController.text);
await (ref.read(secureStoreProvider).store as DesktopSecureStore).init();
await widget.load?.call();
// if no errors passphrase is correct
if (mounted) {
2022-11-15 17:59:53 +00:00
// pop loading indicator
Navigator.of(context).pop();
unawaited(
Navigator.of(context).pushNamedAndRemoveUntil(
DesktopHomeView.routeName,
(route) => false,
),
);
}
} catch (e) {
2022-11-15 17:59:53 +00:00
// pop loading indicator
Navigator.of(context).pop();
2022-11-16 19:29:51 +00:00
await Future<void>.delayed(const Duration(seconds: 1));
await showFloatingFlushBar(
type: FlushBarType.warning,
message: e.toString(),
context: context,
);
}
}
2022-11-08 19:50:53 +00:00
@override
void initState() {
passwordController = TextEditingController();
passwordFocusNode = FocusNode();
super.initState();
}
@override
void dispose() {
passwordController.dispose();
passwordFocusNode.dispose();
super.dispose();
}
2022-11-04 19:32:02 +00:00
@override
Widget build(BuildContext context) {
2022-11-08 19:50:53 +00:00
return DesktopScaffold(
body: Column(
2022-11-04 19:32:02 +00:00
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
2022-11-08 19:50:53 +00:00
SizedBox(
width: 480,
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
SvgPicture.asset(
Assets.svg.stackIcon(context),
width: 100,
),
const SizedBox(
height: 42,
),
Text(
"Stack Wallet",
style: STextStyles.desktopH1(context),
),
const SizedBox(
height: 24,
),
SizedBox(
width: 350,
child: Text(
"Open source multicoin wallet for everyone",
textAlign: TextAlign.center,
style: STextStyles.desktopSubtitleH1(context),
),
),
const SizedBox(
height: 24,
),
ClipRRect(
borderRadius: BorderRadius.circular(
Constants.size.circularBorderRadius,
),
child: TextField(
key: const Key("desktopLoginPasswordFieldKey"),
focusNode: passwordFocusNode,
controller: passwordController,
style: STextStyles.desktopTextMedium(context).copyWith(
height: 2,
),
obscureText: hidePassword,
enableSuggestions: false,
autocorrect: false,
2022-11-22 13:13:03 +00:00
autofocus: true,
onSubmitted: (_) {
if (_continueEnabled) {
login();
}
},
2022-11-08 19:50:53 +00:00
decoration: standardInputDecoration(
"Enter password",
passwordFocusNode,
context,
).copyWith(
suffixIcon: UnconstrainedBox(
child: SizedBox(
height: 70,
child: Row(
children: [
const SizedBox(
width: 24,
),
GestureDetector(
key: const Key(
"restoreFromFilePasswordFieldShowPasswordButtonKey"),
onTap: () async {
setState(() {
hidePassword = !hidePassword;
});
},
2022-11-15 22:22:45 +00:00
child: MouseRegion(
cursor: SystemMouseCursors.click,
child: SvgPicture.asset(
hidePassword
? Assets.svg.eye
: Assets.svg.eyeSlash,
color: Theme.of(context)
.extension<StackColors>()!
.textDark3,
width: 24,
height: 24,
),
2022-11-08 19:50:53 +00:00
),
),
const SizedBox(
width: 12,
),
],
),
),
),
),
onChanged: (newValue) {
setState(() {
_continueEnabled = passwordController.text.isNotEmpty;
});
},
),
),
const SizedBox(
height: 24,
),
PrimaryButton(
label: "Continue",
enabled: _continueEnabled,
onPressed: login,
2022-11-08 19:50:53 +00:00
),
const SizedBox(
height: 60,
),
BlueTextButton(
text: "Forgot password?",
textSize: 20,
onTap: () {
2022-11-08 20:04:00 +00:00
Navigator.of(context).pushNamed(
ForgotPasswordDesktopView.routeName,
);
2022-11-08 19:50:53 +00:00
},
),
],
),
2022-11-04 19:32:02 +00:00
),
],
),
);
}
}