mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-02 13:55:13 +03:00
198 lines
6.6 KiB
Dart
Executable File
198 lines
6.6 KiB
Dart
Executable File
import 'package:flutter/material.dart';
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../../app/message.dart';
|
|
import '../../app/models.dart';
|
|
import '../../app/views/app_page.dart';
|
|
import '../../app/views/graphics.dart';
|
|
import '../../app/views/message_page.dart';
|
|
import '../../widgets/list_title.dart';
|
|
import '../../widgets/menu_list_tile.dart';
|
|
import '../models.dart';
|
|
import '../state.dart';
|
|
import 'add_fingerprint_dialog.dart';
|
|
import 'delete_credential_dialog.dart';
|
|
import 'delete_fingerprint_dialog.dart';
|
|
import 'pin_dialog.dart';
|
|
import 'rename_fingerprint_dialog.dart';
|
|
import 'reset_dialog.dart';
|
|
|
|
class FidoUnlockedPage extends ConsumerWidget {
|
|
final DeviceNode node;
|
|
final FidoState state;
|
|
|
|
const FidoUnlockedPage(this.node, this.state, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
List<Widget> children = [];
|
|
if (state.credMgmt) {
|
|
final data = ref.watch(credentialProvider(node.path)).asData;
|
|
if (data == null) {
|
|
return _buildLoadingPage(context);
|
|
}
|
|
final creds = data.value;
|
|
if (creds.isNotEmpty) {
|
|
children.add(ListTitle(AppLocalizations.of(context)!.fido_credentials));
|
|
children.addAll(
|
|
creds.map(
|
|
(cred) => ListTile(
|
|
leading: CircleAvatar(
|
|
foregroundColor: Theme.of(context).colorScheme.onPrimary,
|
|
backgroundColor: Theme.of(context).colorScheme.primary,
|
|
child: const Icon(Icons.person),
|
|
),
|
|
title: Text(
|
|
cred.userName,
|
|
softWrap: false,
|
|
overflow: TextOverflow.fade,
|
|
),
|
|
subtitle: Text(
|
|
cred.rpId,
|
|
softWrap: false,
|
|
overflow: TextOverflow.fade,
|
|
),
|
|
trailing: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
IconButton(
|
|
onPressed: () {
|
|
showBlurDialog(
|
|
context: context,
|
|
builder: (context) =>
|
|
DeleteCredentialDialog(node.path, cred),
|
|
);
|
|
},
|
|
icon: const Icon(Icons.delete_outline)),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
int nFingerprints = 0;
|
|
if (state.bioEnroll != null) {
|
|
final data = ref.watch(fingerprintProvider(node.path)).asData;
|
|
if (data == null) {
|
|
return _buildLoadingPage(context);
|
|
}
|
|
final fingerprints = data.value;
|
|
if (fingerprints.isNotEmpty) {
|
|
nFingerprints = fingerprints.length;
|
|
children
|
|
.add(ListTitle(AppLocalizations.of(context)!.fido_fingerprints));
|
|
children.addAll(fingerprints.map((fp) => ListTile(
|
|
leading: CircleAvatar(
|
|
foregroundColor: Theme.of(context).colorScheme.onSecondary,
|
|
backgroundColor: Theme.of(context).colorScheme.secondary,
|
|
child: const Icon(Icons.fingerprint),
|
|
),
|
|
title: Text(
|
|
fp.label,
|
|
softWrap: false,
|
|
overflow: TextOverflow.fade,
|
|
),
|
|
trailing: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
IconButton(
|
|
onPressed: () {
|
|
showBlurDialog(
|
|
context: context,
|
|
builder: (context) =>
|
|
RenameFingerprintDialog(node.path, fp),
|
|
);
|
|
},
|
|
icon: const Icon(Icons.edit_outlined)),
|
|
IconButton(
|
|
onPressed: () {
|
|
showBlurDialog(
|
|
context: context,
|
|
builder: (context) =>
|
|
DeleteFingerprintDialog(node.path, fp),
|
|
);
|
|
},
|
|
icon: const Icon(Icons.delete_outline)),
|
|
],
|
|
),
|
|
)));
|
|
}
|
|
}
|
|
|
|
if (children.isNotEmpty) {
|
|
return AppPage(
|
|
title: Text(AppLocalizations.of(context)!.fido_webauthn),
|
|
keyActions: _buildKeyActions(context, nFingerprints),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start, children: children),
|
|
);
|
|
}
|
|
|
|
if (state.bioEnroll != null) {
|
|
return MessagePage(
|
|
title: Text(AppLocalizations.of(context)!.fido_webauthn),
|
|
graphic: noFingerprints,
|
|
header: AppLocalizations.of(context)!.fido_no_fingerprints,
|
|
message: AppLocalizations.of(context)!.fido_add_one_or_more,
|
|
keyActions: _buildKeyActions(context, 0),
|
|
);
|
|
}
|
|
|
|
return MessagePage(
|
|
title: Text(AppLocalizations.of(context)!.fido_webauthn),
|
|
graphic: manageAccounts,
|
|
header: AppLocalizations.of(context)!.fido_no_discoverable_acc,
|
|
message: AppLocalizations.of(context)!.fido_register_as_a_key,
|
|
keyActions: _buildKeyActions(context, 0),
|
|
);
|
|
}
|
|
|
|
Widget _buildLoadingPage(BuildContext context) => AppPage(
|
|
title: Text(AppLocalizations.of(context)!.fido_webauthn),
|
|
centered: true,
|
|
child: const CircularProgressIndicator(),
|
|
);
|
|
|
|
List<PopupMenuEntry> _buildKeyActions(
|
|
BuildContext context, int fingerprints) =>
|
|
[
|
|
if (state.bioEnroll != null)
|
|
buildMenuItem(
|
|
title: Text(AppLocalizations.of(context)!.fido_add_fingerprint),
|
|
leading: const Icon(Icons.fingerprint),
|
|
trailing: '$fingerprints/5',
|
|
action: fingerprints < 5
|
|
? () {
|
|
showBlurDialog(
|
|
context: context,
|
|
builder: (context) => AddFingerprintDialog(node.path),
|
|
);
|
|
}
|
|
: null,
|
|
),
|
|
buildMenuItem(
|
|
title: Text(AppLocalizations.of(context)!.fido_change_pin),
|
|
leading: const Icon(Icons.pin),
|
|
action: () {
|
|
showBlurDialog(
|
|
context: context,
|
|
builder: (context) => FidoPinDialog(node.path, state),
|
|
);
|
|
},
|
|
),
|
|
buildMenuItem(
|
|
title: Text(AppLocalizations.of(context)!.fido_reset_fido),
|
|
leading: const Icon(Icons.delete),
|
|
action: () {
|
|
showBlurDialog(
|
|
context: context,
|
|
builder: (context) => ResetDialog(node),
|
|
);
|
|
},
|
|
),
|
|
];
|
|
}
|