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';
|
2023-11-27 13:41:05 +03:00
|
|
|
import '../keys.dart' as keys;
|
2022-01-21 17:45:04 +03:00
|
|
|
import '../models.dart';
|
|
|
|
import '../state.dart';
|
2023-02-24 16:19:34 +03:00
|
|
|
import 'utils.dart';
|
2022-01-21 17:45:04 +03:00
|
|
|
|
|
|
|
class DeleteAccountDialog extends ConsumerWidget {
|
2024-01-17 18:29:28 +03:00
|
|
|
final DevicePath devicePath;
|
2022-01-21 17:45:04 +03:00
|
|
|
final OathCredential credential;
|
2024-01-17 18:29:28 +03:00
|
|
|
const DeleteAccountDialog(this.devicePath, this.credential, {super.key});
|
2022-01-21 17:45:04 +03:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
2023-02-28 21:05:46 +03:00
|
|
|
final l10n = AppLocalizations.of(context)!;
|
2022-03-16 11:13:17 +03:00
|
|
|
return ResponsiveDialog(
|
2023-03-02 14:45:55 +03:00
|
|
|
title: Text(l10n.s_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
|
2024-01-17 18:29:28 +03:00
|
|
|
.read(credentialListProvider(devicePath).notifier)
|
2022-06-10 13:23:52 +03:00
|
|
|
.deleteAccount(credential);
|
|
|
|
await ref.read(withContextProvider)(
|
2022-06-10 18:51:14 +03:00
|
|
|
(context) async {
|
|
|
|
Navigator.of(context).pop(true);
|
2023-03-02 14:45:55 +03:00
|
|
|
showMessage(context, l10n.s_account_deleted);
|
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
|
|
|
},
|
2023-03-02 14:45:55 +03:00
|
|
|
child: Text(l10n.s_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: [
|
2024-01-26 16:30:16 +03:00
|
|
|
Text(
|
|
|
|
l10n.p_warning_delete_account,
|
|
|
|
style: Theme.of(context)
|
|
|
|
.textTheme
|
|
|
|
.bodyMedium
|
|
|
|
?.copyWith(fontWeight: FontWeight.w700),
|
|
|
|
),
|
2022-09-07 11:25:22 +03:00
|
|
|
Text(
|
2023-02-28 21:05:46 +03:00
|
|
|
l10n.p_warning_disable_credential,
|
2022-09-07 11:25:22 +03:00
|
|
|
),
|
2023-03-01 12:30:32 +03:00
|
|
|
Text(l10n.l_account(getTextName(credential))),
|
2022-09-07 11:25:22 +03:00
|
|
|
]
|
|
|
|
.map((e) => Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
|
|
child: e,
|
|
|
|
))
|
|
|
|
.toList(),
|
|
|
|
),
|
2022-01-21 17:45:04 +03:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|