82 lines
2.8 KiB
Dart
82 lines
2.8 KiB
Dart
import "package:flutter/material.dart";
|
|
import "package:flutter_hooks/flutter_hooks.dart";
|
|
import "package:hooks_riverpod/hooks_riverpod.dart";
|
|
import "package:nexus/controllers/client_controller.dart";
|
|
import "package:nexus/widgets/form_text_input.dart";
|
|
|
|
class VerifyPage extends HookConsumerWidget {
|
|
const VerifyPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final passphraseController = useTextEditingController();
|
|
final isVerifying = useState(false);
|
|
return AlertDialog(
|
|
title: Text("Verify"),
|
|
content: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
"Enter your recovery key or passphrase below to unlock encrypted messages.\nYour passphrase is usually not the same as your password.",
|
|
),
|
|
SizedBox(height: 12),
|
|
FormTextInput(
|
|
required: false,
|
|
autofocus: true,
|
|
capitalize: true,
|
|
controller: passphraseController,
|
|
obscure: true,
|
|
title: "Recovery Key or Passphrase",
|
|
),
|
|
],
|
|
),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: isVerifying.value
|
|
? null
|
|
: () async {
|
|
final scaffoldMessenger = ScaffoldMessenger.of(context);
|
|
final snackbar = scaffoldMessenger.showSnackBar(
|
|
SnackBar(
|
|
content: Text(
|
|
"Attempting to verify with recovery key...",
|
|
),
|
|
duration: Duration(days: 999),
|
|
),
|
|
);
|
|
|
|
isVerifying.value = true;
|
|
|
|
final success = await ref
|
|
.watch(ClientController.provider.notifier)
|
|
.verify(passphraseController.text);
|
|
|
|
snackbar.close();
|
|
if (!success) {
|
|
isVerifying.value = false;
|
|
if (context.mounted) {
|
|
scaffoldMessenger.showSnackBar(
|
|
SnackBar(
|
|
backgroundColor: Theme.of(
|
|
context,
|
|
).colorScheme.errorContainer,
|
|
content: Text(
|
|
"Verification failed. Is your passphrase correct?",
|
|
style: TextStyle(
|
|
color: Theme.of(
|
|
context,
|
|
).colorScheme.onErrorContainer,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
},
|
|
child: Text("Verify"),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|