mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-23 00:57:26 +03:00
80 lines
2.3 KiB
Dart
80 lines
2.3 KiB
Dart
import 'package:flutter/services.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../app/models.dart';
|
|
import '../app/state.dart';
|
|
import 'devices.dart';
|
|
|
|
const _contextChannel = MethodChannel('android.state.appContext');
|
|
const _methodsChannel = MethodChannel('app.methods');
|
|
|
|
final androidAllowScreenshotsProvider =
|
|
StateNotifierProvider<AllowScreenshotsNotifier, bool>(
|
|
(ref) => AllowScreenshotsNotifier(),
|
|
);
|
|
|
|
class AllowScreenshotsNotifier extends StateNotifier<bool> {
|
|
AllowScreenshotsNotifier() : super(false);
|
|
|
|
void setAllowScreenshots(bool value) async {
|
|
final result =
|
|
await _methodsChannel.invokeMethod('allowScreenshots', value);
|
|
if (mounted) {
|
|
state = result;
|
|
}
|
|
}
|
|
}
|
|
|
|
final androidSubPageProvider =
|
|
StateNotifierProvider<CurrentAppNotifier, Application>((ref) {
|
|
return _AndroidSubPageNotifier(ref.watch(supportedAppsProvider));
|
|
});
|
|
|
|
class _AndroidSubPageNotifier extends CurrentAppNotifier {
|
|
_AndroidSubPageNotifier(super.supportedApps) {
|
|
_handleSubPage(state);
|
|
}
|
|
|
|
@override
|
|
void setCurrentApp(Application app) {
|
|
super.setCurrentApp(app);
|
|
_handleSubPage(app);
|
|
}
|
|
|
|
void _handleSubPage(Application subPage) async {
|
|
await _contextChannel.invokeMethod('setContext', {'index': subPage.index});
|
|
}
|
|
}
|
|
|
|
final androidAttachedDevicesProvider =
|
|
StateNotifierProvider<AttachedDevicesNotifier, List<DeviceNode>>((ref) {
|
|
var currentDeviceData = ref.watch(androidDeviceDataProvider);
|
|
List<DeviceNode> devs = currentDeviceData.maybeWhen(
|
|
data: (data) => [data.node], orElse: () => []);
|
|
return _AndroidAttachedDevicesNotifier(devs);
|
|
});
|
|
|
|
class _AndroidAttachedDevicesNotifier extends AttachedDevicesNotifier {
|
|
_AndroidAttachedDevicesNotifier(super.state);
|
|
}
|
|
|
|
final androidDeviceDataProvider = Provider<AsyncValue<YubiKeyData>>(
|
|
(ref) => ref.watch(androidYubikeyProvider));
|
|
|
|
final androidCurrentDeviceProvider =
|
|
StateNotifierProvider<CurrentDeviceNotifier, DeviceNode?>((ref) {
|
|
final provider =
|
|
_AndroidCurrentDeviceNotifier(ref.watch(androidYubikeyProvider));
|
|
return provider;
|
|
});
|
|
|
|
class _AndroidCurrentDeviceNotifier extends CurrentDeviceNotifier {
|
|
_AndroidCurrentDeviceNotifier(AsyncValue<YubiKeyData> device)
|
|
: super(device.whenOrNull(data: (data) => data.node));
|
|
|
|
@override
|
|
setCurrentDevice(DeviceNode? device) {
|
|
state = device;
|
|
}
|
|
}
|