yubioath-flutter/lib/android/state.dart

129 lines
3.8 KiB
Dart
Raw Normal View History

2022-10-04 13:12:54 +03:00
/*
* Copyright (C) 2022 Yubico.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import 'package:flutter/material.dart';
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';
import 'app_methods.dart';
2022-08-16 15:05:53 +03:00
import 'devices.dart';
const _contextChannel = MethodChannel('android.state.appContext');
final androidAllowScreenshotsProvider =
StateNotifierProvider<AllowScreenshotsNotifier, bool>(
(ref) => AllowScreenshotsNotifier(),
);
class AllowScreenshotsNotifier extends StateNotifier<bool> {
AllowScreenshotsNotifier() : super(false);
void setAllowScreenshots(bool value) async {
final result =
await appMethodsChannel.invokeMethod('allowScreenshots', value);
if (mounted) {
state = result;
}
}
}
2022-03-03 18:43:36 +03:00
final androidClipboardProvider = Provider<AppClipboard>(
(ref) => _AndroidClipboard(ref),
);
class _AndroidClipboard extends AppClipboard {
final ProviderRef<AppClipboard> _ref;
const _AndroidClipboard(this._ref);
@override
bool platformGivesFeedback() {
2022-09-22 18:28:52 +03:00
return _ref.read(androidSdkVersionProvider) >= 33;
}
@override
Future<void> setText(String toClipboard, {bool isSensitive = false}) async {
await setPrimaryClip(toClipboard, isSensitive);
}
}
2022-09-22 18:28:52 +03:00
final androidSdkVersionProvider = Provider<int>((ref) => -1);
final androidSupportedThemesProvider = StateProvider<List<ThemeMode>>((ref) {
2022-09-22 18:28:52 +03:00
if (ref.read(androidSdkVersionProvider) < 29) {
2022-10-07 15:02:24 +03:00
// the user can select from light or dark theme of the app
return [ThemeMode.light, ThemeMode.dark];
} else {
2022-10-07 15:02:24 +03:00
// the user can also select system theme on newer Android versions
return ThemeMode.values;
}
});
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.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;
}
}