yubioath-flutter/lib/fido/views/unlocked_page.dart

195 lines
7.2 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import '../../app/message.dart';
import '../../app/models.dart';
import '../../app/views/app_page.dart';
2022-05-18 15:11:17 +03:00
import '../../app/views/graphics.dart';
import '../../app/views/message_page.dart';
2022-05-20 14:00:07 +03:00
import '../../theme.dart';
import '../models.dart';
2022-04-04 12:15:38 +03:00
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;
2022-05-12 10:56:55 +03:00
const FidoUnlockedPage(this.node, this.state, {super.key});
@override
Widget build(BuildContext context, WidgetRef ref) {
List<Widget> children = [
if (state.credMgmt)
...ref.watch(credentialProvider(node.path)).maybeWhen(
data: (creds) => creds.isNotEmpty
? [
const ListTile(title: Text('Credentials')),
...creds.map((cred) => ListTile(
2022-05-20 15:10:17 +03:00
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: () {
showDialog(
context: context,
builder: (context) =>
DeleteCredentialDialog(
node.path, cred),
);
},
2022-05-20 15:10:17 +03:00
icon: const Icon(Icons.delete_outline)),
],
),
)),
]
: [],
orElse: () => [],
),
if (state.bioEnroll != null)
...ref.watch(fingerprintProvider(node.path)).maybeWhen(
data: (fingerprints) => fingerprints.isNotEmpty
? [
const ListTile(title: Text('Fingerprints')),
...fingerprints.map((fp) => ListTile(
2022-05-20 15:10:17 +03:00
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,
2022-05-20 12:10:49 +03:00
),
trailing: Row(
mainAxisSize: MainAxisSize.min,
children: [
IconButton(
onPressed: () {
showDialog(
context: context,
builder: (context) =>
RenameFingerprintDialog(
node.path, fp),
);
},
2022-05-20 15:10:17 +03:00
icon: const Icon(Icons.edit_outlined)),
IconButton(
onPressed: () {
showDialog(
context: context,
builder: (context) =>
DeleteFingerprintDialog(
node.path, fp),
);
},
2022-05-20 15:10:17 +03:00
icon: const Icon(Icons.delete_outline)),
],
),
))
]
: [],
orElse: () => [],
),
];
if (children.isNotEmpty) {
return AppPage(
title: const Text('WebAuthn'),
2022-05-20 14:00:07 +03:00
actions: _buildActions(context),
child: Column(
children: children,
),
);
}
if (state.bioEnroll == false) {
return MessagePage(
title: const Text('WebAuthn'),
2022-05-20 12:11:20 +03:00
graphic: noFingerprints,
header: 'No fingerprints',
message: 'Add one or more (up to five) fingerprints',
2022-05-20 14:00:07 +03:00
actions: _buildActions(context),
);
}
return MessagePage(
title: const Text('WebAuthn'),
2022-05-20 12:11:20 +03:00
graphic: noDiscoverable,
header: 'No discoverable accounts',
message: 'Register as a Security Key on websites',
2022-05-20 14:00:07 +03:00
actions: _buildActions(context),
);
}
2022-05-20 14:00:07 +03:00
List<Widget> _buildActions(BuildContext context) => [
2022-05-20 12:11:20 +03:00
if (state.bioEnroll != null)
2022-05-20 14:00:07 +03:00
OutlinedButton.icon(
2022-05-20 15:10:17 +03:00
style: state.bioEnroll == true
? null
: AppTheme.primaryOutlinedButtonStyle(context),
2022-05-20 14:00:07 +03:00
label: const Text('Add fingerprint'),
2022-05-20 12:11:20 +03:00
icon: const Icon(Icons.fingerprint),
2022-05-20 14:00:07 +03:00
onPressed: () {
showDialog(
context: context,
2022-05-20 12:11:20 +03:00
builder: (context) => AddFingerprintDialog(node.path),
);
},
),
2022-05-20 14:00:07 +03:00
OutlinedButton.icon(
label: const Text('Options'),
2022-05-20 12:11:20 +03:00
icon: const Icon(Icons.tune),
2022-05-20 14:00:07 +03:00
onPressed: () {
2022-05-20 12:11:20 +03:00
showBottomMenu(context, [
MenuAction(
text: 'Change PIN',
icon: const Icon(Icons.pin),
action: (context) {
showDialog(
context: context,
builder: (context) => FidoPinDialog(node.path, state),
);
},
),
MenuAction(
text: 'Reset FIDO',
icon: const Icon(Icons.delete),
action: (context) {
showDialog(
context: context,
builder: (context) => ResetDialog(node),
);
},
),
]);
},
),
];
}