mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-23 00:57:26 +03:00
63 lines
2.0 KiB
Dart
Executable File
63 lines
2.0 KiB
Dart
Executable File
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../app/models.dart';
|
|
import '../core/state.dart';
|
|
import 'models.dart';
|
|
|
|
final fidoStateProvider = StateNotifierProvider.autoDispose
|
|
.family<FidoStateNotifier, AsyncValue<FidoState>, DevicePath>(
|
|
(ref, devicePath) => throw UnimplementedError(),
|
|
);
|
|
|
|
abstract class FidoStateNotifier extends ApplicationStateNotifier<FidoState> {
|
|
Stream<InteractionEvent> reset();
|
|
Future<PinResult> setPin(String newPin, {String? oldPin});
|
|
}
|
|
|
|
final fidoPinProvider =
|
|
StateNotifierProvider.autoDispose.family<PinNotifier, bool, DevicePath>(
|
|
(ref, devicePath) => throw UnimplementedError(),
|
|
);
|
|
|
|
abstract class PinNotifier extends StateNotifier<bool> {
|
|
PinNotifier(bool unlocked) : super(unlocked);
|
|
Future<PinResult> unlock(String pin);
|
|
}
|
|
|
|
abstract class LockedCollectionNotifier<T>
|
|
extends StateNotifier<AsyncValue<List<T>>> {
|
|
LockedCollectionNotifier() : super(const AsyncValue.loading());
|
|
|
|
@protected
|
|
void setItems(List<T> items) {
|
|
if (mounted) {
|
|
state = AsyncValue.data(List.unmodifiable(items));
|
|
}
|
|
}
|
|
}
|
|
|
|
final fingerprintProvider = StateNotifierProvider.autoDispose.family<
|
|
FidoFingerprintsNotifier, AsyncValue<List<Fingerprint>>, DevicePath>(
|
|
(ref, arg) => throw UnimplementedError(),
|
|
);
|
|
|
|
abstract class FidoFingerprintsNotifier
|
|
extends LockedCollectionNotifier<Fingerprint> {
|
|
Stream<FingerprintEvent> registerFingerprint({String? name});
|
|
Future<Fingerprint> renameFingerprint(Fingerprint fingerprint, String name);
|
|
Future<void> deleteFingerprint(Fingerprint fingerprint);
|
|
}
|
|
|
|
final credentialProvider = StateNotifierProvider.autoDispose.family<
|
|
FidoCredentialsNotifier, AsyncValue<List<FidoCredential>>, DevicePath>(
|
|
(ref, arg) => throw UnimplementedError(),
|
|
);
|
|
|
|
abstract class FidoCredentialsNotifier
|
|
extends LockedCollectionNotifier<FidoCredential> {
|
|
Future<FidoCredential> renameCredential(
|
|
FidoCredential credential, String label);
|
|
Future<void> deleteCredential(FidoCredential credential);
|
|
}
|