Files
Qlyra/lib/frontend/screens/auth/password_2fa_screen.dart
T

228 lines
7.1 KiB
Dart

import 'package:flutter/material.dart';
import 'package:material_symbols_icons/symbols.dart';
import '../../../backend/modules/account/account_models.dart';
import '../../../core/protocol/packet.dart';
import '../../../l10n/app_localizations.dart';
import '../../../main.dart';
import '../../widgets/animated_slash_icon.dart';
import '../../widgets/custom_notification.dart';
import '../../widgets/login_success_screen.dart';
import '../../widgets/small_spinner.dart';
import 'session_stale_recovery.dart';
class Password2FAScreen extends StatefulWidget {
final String trackId;
final String? hint;
const Password2FAScreen({super.key, required this.trackId, this.hint});
@override
State<Password2FAScreen> createState() => _Password2FAScreenState();
}
class _Password2FAScreenState extends State<Password2FAScreen>
with SessionStaleRecovery {
final TextEditingController _passwordController = TextEditingController();
bool _isPasswordVisible = false;
bool _isLoading = false;
@override
String get connectionDroppedMessage => 'Соединение прервалось…';
@override
void initState() {
super.initState();
startSessionRecovery();
}
@override
void dispose() {
stopSessionRecovery();
_passwordController.dispose();
super.dispose();
}
@override
void recoverStaleSession() {
if (recovering || !mounted) return;
recovering = true;
showCustomNotification(context, 'Соединение прервалось — войдите заново');
Navigator.of(context).pop();
}
Future<void> _checkPassword() async {
if (_passwordController.text.isEmpty || _isLoading || recovering) return;
if (sessionStale) {
recoverStaleSession();
return;
}
setState(() {
_isLoading = true;
});
var passed = false;
try {
final result = await accountModule.checkPassword(
password: _passwordController.text,
trackId: widget.trackId,
);
passed = true;
if (!mounted) return;
final loginResult = await accountModule.login(
accountId: result.accountId,
token: result.loginToken,
);
if (!mounted) return;
final avatar = await precacheLoginAvatar(
context,
loginResult.profile.baseUrl,
);
if (!mounted) return;
Navigator.pushAndRemoveUntil(
context,
PageRouteBuilder(
transitionDuration: const Duration(milliseconds: 240),
pageBuilder: (_, _, _) => LoginSuccessScreen(avatar: avatar),
transitionsBuilder: (_, animation, _, child) =>
FadeTransition(opacity: animation, child: child),
),
(route) => false,
);
} catch (e) {
if (!mounted) return;
setState(() {
_isLoading = false;
});
final l10n = AppLocalizations.of(context)!;
if (!passed && (isSessionStateError(e) || sessionStale)) {
recoverStaleSession();
} else if (e is WrongPasswordException) {
showCustomNotification(context, l10n.passwordEntryWrongPassword);
} else {
showCustomNotification(context, l10n.devicesGenericError('$e'));
}
}
}
@override
Widget build(BuildContext context) {
final cs = Theme.of(context).colorScheme;
return Scaffold(
backgroundColor: cs.surface,
appBar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0,
leading: IconButton(
icon: Icon(Symbols.arrow_back, color: cs.onSurfaceVariant),
onPressed: () => Navigator.pop(context),
),
),
body: SafeArea(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const SizedBox(height: 16),
Text(
'Двухфакторная аутентификация',
style: TextStyle(
color: cs.onSurface,
fontSize: 22,
fontWeight: FontWeight.w500,
),
),
const SizedBox(height: 12),
Text(
'Введите пароль для завершения входа',
style: TextStyle(
color: cs.outline,
fontSize: 15,
fontWeight: FontWeight.w400,
height: 1.4,
),
),
if (widget.hint != null) ...[
const SizedBox(height: 8),
Text(
'Подсказка: ${widget.hint}',
style: TextStyle(
color: cs.tertiary,
fontSize: 14,
fontWeight: FontWeight.w400,
),
),
],
const SizedBox(height: 24),
TextField(
controller: _passwordController,
obscureText: !_isPasswordVisible,
autofocus: true,
enabled: !_isLoading,
decoration: InputDecoration(
hintText: 'Пароль',
filled: true,
fillColor: cs.surfaceContainerHigh,
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(12),
borderSide: BorderSide.none,
),
suffixIcon: IconButton(
icon: AnimatedSlashIcon(
icon: Symbols.visibility,
slashedIcon: Symbols.visibility_off,
slashed: _isPasswordVisible,
color: cs.onSurfaceVariant,
),
onPressed: () {
setState(() {
_isPasswordVisible = !_isPasswordVisible;
});
},
),
),
onSubmitted: (_) => _checkPassword(),
),
const Spacer(),
Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
FloatingActionButton(
onPressed: _isLoading ? null : _checkPassword,
backgroundColor: _passwordController.text.isNotEmpty
? cs.primaryContainer
: cs.surfaceContainerHighest,
elevation: 0,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(50),
),
child: _isLoading
? SmallSpinner(size: 24, color: cs.onPrimaryContainer)
: Icon(
Symbols.arrow_forward,
color: _passwordController.text.isNotEmpty
? cs.onPrimaryContainer
: cs.onSurfaceVariant,
),
),
],
),
const SizedBox(height: 24),
],
),
),
),
);
}
}