yubioath-flutter/lib/android/state.dart

71 lines
2.0 KiB
Dart
Raw Normal View History

2022-08-16 15:05:53 +03:00
import 'package:flutter/services.dart';
2022-03-03 18:43:36 +03:00
import 'package:flutter_riverpod/flutter_riverpod.dart';
import '../app/models.dart';
import '../app/state.dart';
2022-08-16 15:05:53 +03:00
import 'devices.dart';
const _contextChannel =
MethodChannel('com.yubico.authenticator.channel.appContext');
2022-03-03 18:43:36 +03:00
2022-03-04 19:01:55 +03:00
final androidSubPageProvider =
StateNotifierProvider<CurrentAppNotifier, Application>((ref) {
return _AndroidSubPageNotifier(ref.watch(supportedAppsProvider));
2022-03-04 19:01:55 +03:00
});
2022-03-03 18:43:36 +03:00
class _AndroidSubPageNotifier extends CurrentAppNotifier {
2022-05-12 10:56:55 +03:00
_AndroidSubPageNotifier(super.supportedApps) {
_handleSubPage(state);
2022-03-03 18:43:36 +03:00
}
@override
void setCurrentApp(Application app) {
super.setCurrentApp(app);
_handleSubPage(app);
2022-03-03 18:43:36 +03:00
}
void _handleSubPage(Application subPage) async {
2022-08-16 15:05:53 +03:00
await _contextChannel.invokeMethod('setContext', {'index': subPage.index});
2022-03-03 18:43:36 +03:00
}
}
2022-03-11 15:53:28 +03:00
final androidAttachedDevicesProvider =
StateNotifierProvider<AttachedDevicesNotifier, List<DeviceNode>>((ref) {
2022-03-03 18:43:36 +03:00
var currentDeviceData = ref.watch(androidDeviceDataProvider);
List<DeviceNode> devs = currentDeviceData.maybeWhen(
data: (data) => [data.node], orElse: () => []);
return _AndroidAttachedDevicesNotifier(devs);
2022-03-03 18:43:36 +03:00
});
2022-03-11 15:53:28 +03:00
class _AndroidAttachedDevicesNotifier extends AttachedDevicesNotifier {
2022-05-12 10:56:55 +03:00
_AndroidAttachedDevicesNotifier(super.state);
2022-03-11 15:53:28 +03:00
}
final androidDeviceDataProvider = Provider<AsyncValue<YubiKeyData>>(
(ref) => ref.watch(androidYubikeyProvider));
final androidCurrentDeviceProvider =
StateNotifierProvider<CurrentDeviceNotifier, DeviceNode?>((ref) {
final provider = _AndroidCurrentDeviceNotifier();
ref.listen(attachedDevicesProvider, provider._updateAttachedDevices);
return provider;
});
class _AndroidCurrentDeviceNotifier extends CurrentDeviceNotifier {
_AndroidCurrentDeviceNotifier() : super(null);
_updateAttachedDevices(
List<DeviceNode>? previous, List<DeviceNode?> devices) {
if (devices.isNotEmpty) {
state = devices.first;
} else {
state = null;
}
}
@override
setCurrentDevice(DeviceNode? device) {
state = device;
}
}