mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-25 03:03:50 +03:00
60 lines
1.8 KiB
Dart
Executable File
60 lines
1.8 KiB
Dart
Executable File
// ignore_for_file: sort_child_properties_last
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../../app/message.dart';
|
|
import '../../widgets/responsive_dialog.dart';
|
|
import '../models.dart';
|
|
import '../state.dart';
|
|
import '../../app/models.dart';
|
|
import '../../app/state.dart';
|
|
|
|
class DeleteCredentialDialog extends ConsumerWidget {
|
|
final DevicePath devicePath;
|
|
final FidoCredential credential;
|
|
const DeleteCredentialDialog(this.devicePath, this.credential, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
// If current device changes, we need to pop back to the main Page.
|
|
ref.listen<DeviceNode?>(currentDeviceProvider, (previous, next) {
|
|
Navigator.of(context).pop(false);
|
|
});
|
|
|
|
final label = credential.userName;
|
|
|
|
return ResponsiveDialog(
|
|
title: const Text('Delete credential'),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const Text('This will delete the credential from your YubiKey.'),
|
|
Text('Credential: $label'),
|
|
]
|
|
.map((e) => Padding(
|
|
child: e,
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
))
|
|
.toList(),
|
|
),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: () async {
|
|
await ref
|
|
.read(credentialProvider(devicePath).notifier)
|
|
.deleteCredential(credential);
|
|
await ref.read(withContextProvider)(
|
|
(context) async {
|
|
Navigator.of(context).pop(true);
|
|
showMessage(context, 'Credential deleted');
|
|
},
|
|
);
|
|
},
|
|
child: const Text('Delete'),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|