2022-10-04 13:12:54 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022 Yubico.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-01-21 17:45:04 +03:00
|
|
|
import 'package:flutter/material.dart';
|
2022-09-05 16:10:44 +03:00
|
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
2022-01-21 17:45:04 +03:00
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
|
2022-03-25 17:43:32 +03:00
|
|
|
import '../../app/message.dart';
|
2022-06-10 18:51:14 +03:00
|
|
|
import '../../app/models.dart';
|
|
|
|
import '../../app/state.dart';
|
2023-01-09 19:22:34 +03:00
|
|
|
import '../../exception/cancellation_exception.dart';
|
2022-03-31 12:50:40 +03:00
|
|
|
import '../../widgets/responsive_dialog.dart';
|
2022-01-21 17:45:04 +03:00
|
|
|
import '../models.dart';
|
|
|
|
import '../state.dart';
|
2022-09-12 13:58:17 +03:00
|
|
|
import '../keys.dart' as keys;
|
2022-01-21 17:45:04 +03:00
|
|
|
|
|
|
|
class DeleteAccountDialog extends ConsumerWidget {
|
|
|
|
final DeviceNode device;
|
|
|
|
final OathCredential credential;
|
2022-05-12 10:56:55 +03:00
|
|
|
const DeleteAccountDialog(this.device, this.credential, {super.key});
|
2022-01-21 17:45:04 +03:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
final label = credential.issuer != null
|
|
|
|
? '${credential.issuer} (${credential.name})'
|
|
|
|
: credential.name;
|
|
|
|
|
2022-03-16 11:13:17 +03:00
|
|
|
return ResponsiveDialog(
|
2022-09-05 16:10:44 +03:00
|
|
|
title: Text(AppLocalizations.of(context)!.oath_delete_account),
|
2022-05-12 09:34:51 +03:00
|
|
|
actions: [
|
|
|
|
TextButton(
|
2022-09-12 13:58:17 +03:00
|
|
|
key: keys.deleteButton,
|
2022-05-12 09:34:51 +03:00
|
|
|
onPressed: () async {
|
2022-06-10 13:23:52 +03:00
|
|
|
try {
|
|
|
|
await ref
|
|
|
|
.read(credentialListProvider(device.path).notifier)
|
|
|
|
.deleteAccount(credential);
|
|
|
|
await ref.read(withContextProvider)(
|
2022-06-10 18:51:14 +03:00
|
|
|
(context) async {
|
|
|
|
Navigator.of(context).pop(true);
|
2022-09-05 16:10:44 +03:00
|
|
|
showMessage(
|
|
|
|
context,
|
|
|
|
AppLocalizations.of(context)!
|
|
|
|
.oath_success_delete_account);
|
2022-06-10 13:23:52 +03:00
|
|
|
},
|
|
|
|
);
|
2022-06-20 10:47:34 +03:00
|
|
|
} on CancellationException catch (_) {
|
2022-06-10 13:23:52 +03:00
|
|
|
// ignored
|
|
|
|
}
|
2022-05-12 09:34:51 +03:00
|
|
|
},
|
2022-09-05 16:10:44 +03:00
|
|
|
child: Text(AppLocalizations.of(context)!.oath_delete),
|
2022-05-12 09:34:51 +03:00
|
|
|
),
|
|
|
|
],
|
2022-09-07 11:25:22 +03:00
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 18.0),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Text(AppLocalizations.of(context)!
|
|
|
|
.oath_warning_this_will_delete_account_from_key),
|
|
|
|
Text(
|
|
|
|
AppLocalizations.of(context)!.oath_warning_disable_this_cred,
|
2023-01-26 13:52:01 +03:00
|
|
|
style: Theme.of(context).textTheme.bodyLarge,
|
2022-09-07 11:25:22 +03:00
|
|
|
),
|
|
|
|
Text('${AppLocalizations.of(context)!.oath_account} $label'),
|
|
|
|
]
|
|
|
|
.map((e) => Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
|
|
child: e,
|
|
|
|
))
|
|
|
|
.toList(),
|
|
|
|
),
|
2022-01-21 17:45:04 +03:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|