mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-27 06:14:58 +03:00
128 lines
4.5 KiB
Dart
128 lines
4.5 KiB
Dart
/*
|
|
* Copyright (C) 2023 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';
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../../app/shortcuts.dart';
|
|
import '../../app/state.dart';
|
|
import '../../app/views/action_list.dart';
|
|
import '../../app/views/fs_dialog.dart';
|
|
import '../models.dart';
|
|
import '../state.dart';
|
|
import 'actions.dart';
|
|
import 'cert_info_view.dart';
|
|
|
|
class SlotDialog extends ConsumerWidget {
|
|
final SlotId pivSlot;
|
|
const SlotDialog(this.pivSlot, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
// TODO: Solve this in a cleaner way
|
|
final node = ref.watch(currentDeviceDataProvider).valueOrNull?.node;
|
|
if (node == null) {
|
|
// The rest of this method assumes there is a device, and will throw an exception if not.
|
|
// This will never be shown, as the dialog will be immediately closed
|
|
return const SizedBox();
|
|
}
|
|
|
|
final l10n = AppLocalizations.of(context)!;
|
|
final textTheme = Theme.of(context).textTheme;
|
|
// This is what ListTile uses for subtitle
|
|
final subtitleStyle = textTheme.bodyMedium!.copyWith(
|
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
|
);
|
|
|
|
final pivState = ref.watch(pivStateProvider(node.path)).valueOrNull;
|
|
final slotData = ref.watch(pivSlotsProvider(node.path).select((value) =>
|
|
value.whenOrNull(
|
|
data: (data) =>
|
|
data.firstWhere((element) => element.slot == pivSlot))));
|
|
|
|
if (pivState == null || slotData == null) {
|
|
return const FsDialog(child: CircularProgressIndicator());
|
|
}
|
|
|
|
final certInfo = slotData.certInfo;
|
|
final metadata = slotData.metadata;
|
|
return PivActions(
|
|
devicePath: node.path,
|
|
pivState: pivState,
|
|
builder: (context) => ItemShortcuts(
|
|
item: slotData,
|
|
child: FocusScope(
|
|
autofocus: true,
|
|
child: FsDialog(
|
|
child: Column(
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 48, bottom: 16),
|
|
child: Column(
|
|
children: [
|
|
Text(
|
|
pivSlot.getDisplayName(l10n),
|
|
style: textTheme.headlineSmall,
|
|
softWrap: true,
|
|
textAlign: TextAlign.center,
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.all(16),
|
|
child: Column(
|
|
children: [
|
|
if (certInfo != null || metadata != null) ...[
|
|
Padding(
|
|
padding: const EdgeInsets.only(bottom: 16),
|
|
child: CertInfoTable(
|
|
certInfo,
|
|
metadata,
|
|
alwaysIncludePrivate: true,
|
|
),
|
|
),
|
|
],
|
|
if (certInfo == null) ...[
|
|
Padding(
|
|
padding: const EdgeInsets.only(bottom: 16),
|
|
child: Text(
|
|
l10n.l_no_certificate,
|
|
softWrap: true,
|
|
textAlign: TextAlign.center,
|
|
style: subtitleStyle,
|
|
),
|
|
),
|
|
],
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
ActionListSection.fromMenuActions(
|
|
context,
|
|
l10n.s_actions,
|
|
actions: buildSlotActions(pivState, slotData, l10n),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|