mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-30 17:57:46 +03:00
45 lines
1.2 KiB
Dart
Executable File
45 lines
1.2 KiB
Dart
Executable File
import 'dart:async';
|
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:yubico_authenticator/management/models.dart';
|
|
|
|
import '../../app/models.dart';
|
|
import '../../app/state.dart';
|
|
import '../../management/state.dart';
|
|
|
|
final androidManagementState = StateNotifierProvider.autoDispose
|
|
.family<ManagementStateNotifier, AsyncValue<DeviceInfo>, DevicePath>(
|
|
(ref, devicePath) {
|
|
// Make sure to rebuild if currentDevice changes (as on reboot)
|
|
ref.watch(currentDeviceProvider);
|
|
final notifier = _AndroidManagementStateNotifier(ref);
|
|
return notifier..refresh();
|
|
},
|
|
);
|
|
|
|
class _AndroidManagementStateNotifier extends ManagementStateNotifier {
|
|
final Ref _ref;
|
|
|
|
_AndroidManagementStateNotifier(this._ref) : super();
|
|
|
|
void refresh() async {}
|
|
|
|
@override
|
|
Future<void> setMode(
|
|
{required int interfaces,
|
|
int challengeResponseTimeout = 0,
|
|
int? autoEjectTimeout}) async {}
|
|
|
|
@override
|
|
Future<void> writeConfig(DeviceConfig config,
|
|
{String currentLockCode = '',
|
|
String newLockCode = '',
|
|
bool reboot = false}) async {
|
|
if (reboot) {
|
|
state = const AsyncValue.loading();
|
|
}
|
|
|
|
_ref.read(attachedDevicesProvider.notifier).refresh();
|
|
}
|
|
}
|