2021-11-22 11:49:52 +03:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
|
|
|
|
import '../../app/models.dart';
|
|
|
|
import '../state.dart';
|
|
|
|
import 'account_list.dart';
|
|
|
|
|
|
|
|
class OathScreen extends ConsumerWidget {
|
|
|
|
final DeviceNode device;
|
|
|
|
const OathScreen(this.device, {Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
final state = ref.watch(oathStateProvider(device.path));
|
|
|
|
|
|
|
|
if (state == null) {
|
|
|
|
return const CircularProgressIndicator();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state.locked) {
|
|
|
|
return Center(
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
2021-11-25 17:39:09 +03:00
|
|
|
const Text('YubiKey locked'),
|
|
|
|
TextField(
|
|
|
|
obscureText: true,
|
|
|
|
decoration: const InputDecoration(labelText: 'Password'),
|
|
|
|
onSubmitted: (value) {
|
|
|
|
ref.read(oathStateProvider(device.path).notifier).unlock(value);
|
|
|
|
},
|
|
|
|
),
|
2021-11-22 11:49:52 +03:00
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
final accounts = ref.watch(credentialListProvider(device.path));
|
|
|
|
if (accounts == null) {
|
|
|
|
return Column(
|
|
|
|
children: const [
|
|
|
|
Text('Reading...'),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
2021-12-02 13:44:17 +03:00
|
|
|
return AccountList(
|
|
|
|
device,
|
|
|
|
ref.watch(filteredCredentialsProvider(accounts)),
|
2021-11-22 11:49:52 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|