mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-26 11:43:44 +03:00
108 lines
3.3 KiB
Dart
Executable File
108 lines
3.3 KiB
Dart
Executable File
import 'package:flutter/material.dart';
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../../app/message.dart';
|
|
import '../../desktop/models.dart';
|
|
import '../../widgets/responsive_dialog.dart';
|
|
import '../../widgets/utf8_utils.dart';
|
|
import '../models.dart';
|
|
import '../state.dart';
|
|
import '../../app/models.dart';
|
|
|
|
class RenameFingerprintDialog extends ConsumerStatefulWidget {
|
|
final DevicePath devicePath;
|
|
final Fingerprint fingerprint;
|
|
const RenameFingerprintDialog(this.devicePath, this.fingerprint, {super.key});
|
|
|
|
@override
|
|
ConsumerState<ConsumerStatefulWidget> createState() =>
|
|
_RenameAccountDialogState();
|
|
}
|
|
|
|
class _RenameAccountDialogState extends ConsumerState<RenameFingerprintDialog> {
|
|
late String _label;
|
|
_RenameAccountDialogState();
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_label = widget.fingerprint.name ?? '';
|
|
}
|
|
|
|
_submit() async {
|
|
try {
|
|
final renamed = await ref
|
|
.read(fingerprintProvider(widget.devicePath).notifier)
|
|
.renameFingerprint(widget.fingerprint, _label);
|
|
if (!mounted) return;
|
|
Navigator.of(context).pop(renamed);
|
|
showMessage(
|
|
context, AppLocalizations.of(context)!.fido_fingerprint_renamed);
|
|
} catch (e) {
|
|
final String errorMessage;
|
|
// TODO: Make this cleaner than importing desktop specific RpcError.
|
|
if (e is RpcError) {
|
|
errorMessage = e.message;
|
|
} else {
|
|
errorMessage = e.toString();
|
|
}
|
|
showMessage(
|
|
context,
|
|
'${AppLocalizations.of(context)!.fido_error_renaming}: $errorMessage',
|
|
duration: const Duration(seconds: 4),
|
|
);
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ResponsiveDialog(
|
|
title: Text(AppLocalizations.of(context)!.fido_rename_fingerprint),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: _label.isNotEmpty ? _submit : null,
|
|
child: Text(AppLocalizations.of(context)!.fido_save),
|
|
),
|
|
],
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 18.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(AppLocalizations.of(context)!
|
|
.fido_rename(widget.fingerprint.label)),
|
|
Text(AppLocalizations.of(context)!.fido_will_change_label_fp),
|
|
TextFormField(
|
|
initialValue: _label,
|
|
maxLength: 15,
|
|
inputFormatters: [limitBytesLength(15)],
|
|
buildCounter: buildByteCounterFor(_label),
|
|
decoration: InputDecoration(
|
|
border: const OutlineInputBorder(),
|
|
labelText: AppLocalizations.of(context)!.fido_label,
|
|
prefixIcon: const Icon(Icons.fingerprint_outlined),
|
|
),
|
|
onChanged: (value) {
|
|
setState(() {
|
|
_label = value.trim();
|
|
});
|
|
},
|
|
onFieldSubmitted: (_) {
|
|
if (_label.isNotEmpty) {
|
|
_submit();
|
|
}
|
|
},
|
|
),
|
|
]
|
|
.map((e) => Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
child: e,
|
|
))
|
|
.toList(),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|