fixes
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2025-03-22 02:52:48 -05:00
parent aad26b8529
commit c05b4f6652
2 changed files with 24 additions and 7 deletions

View File

@ -623,17 +623,22 @@ class _MountSettingsWidgetState extends State<MountSettingsWidget> {
widget.settings,
);
if (settings.isNotEmpty) {
final authProvider = Provider.of<Auth>(context, listen: false);
convertAllToString(settings, authProvider.key).then((map) {
final mount = widget.mount;
final key =
Provider.of<Auth>(
constants.navigatorKey.currentContext!,
listen: false,
).key;
convertAllToString(settings, key).then((map) {
map.forEach((key, value) {
if (value is Map<String, dynamic>) {
value.forEach((subKey, subValue) {
widget.mount.setValue('$key.$subKey', subValue);
mount.setValue('$key.$subKey', subValue);
});
return;
}
widget.mount.setValue(key, value);
mount.setValue(key, value);
});
});
}

View File

@ -3,6 +3,7 @@ import 'dart:convert' show jsonEncode;
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:provider/provider.dart';
import 'package:repertory/constants.dart' as constants;
import 'package:repertory/helpers.dart'
show
convertAllToString,
@ -105,11 +106,23 @@ class _UISettingsWidgetState extends State<UISettingsWidget> {
void dispose() {
final settings = getChanged(widget.origSettings, widget.settings);
if (settings.isNotEmpty) {
final authProvider = Provider.of<Auth>(context, listen: false);
convertAllToString(settings, authProvider.key)
debugPrint("start");
final key =
Provider.of<Auth>(
constants.navigatorKey.currentContext!,
listen: false,
).key;
convertAllToString(settings, key)
.then((map) async {
debugPrint("map");
try {
final authProvider = Provider.of<Auth>(
constants.navigatorKey.currentContext!,
listen: false,
);
final auth = await authProvider.createAuth();
debugPrint("auth");
final response = await http.put(
Uri.parse(
Uri.encodeFull(
@ -121,7 +134,6 @@ class _UISettingsWidgetState extends State<UISettingsWidget> {
if (response.statusCode == 401) {
displayAuthError();
authProvider.logoff();
return;
}
} catch (e) {
debugPrint('$e');