Spaces:
Build error
Build error
File size: 3,258 Bytes
3382f47 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
import 'package:auto_gpt_flutter_client/services/auth_service.dart';
import 'package:auto_gpt_flutter_client/services/shared_preferences_service.dart';
import 'package:auto_gpt_flutter_client/utils/rest_api_utility.dart';
import 'package:flutter/material.dart';
/// [SettingsViewModel] is responsible for managing the state and logic
/// for the [SettingsView]. It extends [ChangeNotifier] to provide
/// reactive state management.
class SettingsViewModel extends ChangeNotifier {
bool _isDarkModeEnabled = false; // State for Dark Mode
bool _isDeveloperModeEnabled = false; // State for Developer Mode
String _baseURL = ''; // State for Base URL
int _continuousModeSteps = 1; // State for Continuous Mode Steps
final RestApiUtility _restApiUtility;
final SharedPreferencesService _prefsService;
// Getters to access the private state variables
bool get isDarkModeEnabled => _isDarkModeEnabled;
bool get isDeveloperModeEnabled => _isDeveloperModeEnabled;
String get baseURL => _baseURL;
int get continuousModeSteps => _continuousModeSteps;
final AuthService _authService = AuthService();
SettingsViewModel(this._restApiUtility, this._prefsService) {
_loadPreferences();
}
// Method to load stored preferences
Future<void> _loadPreferences() async {
_isDarkModeEnabled =
await _prefsService.getBool('isDarkModeEnabled') ?? false;
_isDeveloperModeEnabled =
await _prefsService.getBool('isDeveloperModeEnabled') ?? true;
_baseURL = await _prefsService.getString('baseURL') ??
'http://127.0.0.1:8000/ap/v1';
_restApiUtility.updateBaseURL(_baseURL);
_continuousModeSteps =
await _prefsService.getInt('continuousModeSteps') ?? 10;
notifyListeners();
}
/// Toggles the state of Dark Mode and notifies listeners.
Future<void> toggleDarkMode(bool value) async {
_isDarkModeEnabled = value;
notifyListeners();
await _prefsService.setBool('isDarkModeEnabled', value);
}
/// Toggles the state of Developer Mode and notifies listeners.
Future<void> toggleDeveloperMode(bool value) async {
_isDeveloperModeEnabled = value;
notifyListeners();
await _prefsService.setBool('isDeveloperModeEnabled', value);
}
/// Updates the state of Base URL, notifies listeners, and updates the RestApiUtility baseURL.
Future<void> updateBaseURL(String value) async {
_baseURL = value;
notifyListeners();
await _prefsService.setString('baseURL', value);
_restApiUtility.updateBaseURL(value);
}
/// Increments the number of Continuous Mode Steps and notifies listeners.
Future<void> incrementContinuousModeSteps() async {
_continuousModeSteps += 1;
notifyListeners();
await _prefsService.setInt('continuousModeSteps', _continuousModeSteps);
}
/// Decrements the number of Continuous Mode Steps and notifies listeners.
Future<void> decrementContinuousModeSteps() async {
if (_continuousModeSteps > 1) {
// Ensure that the number of steps is at least 1
_continuousModeSteps -= 1;
notifyListeners();
await _prefsService.setInt('continuousModeSteps', _continuousModeSteps);
}
}
// Method to sign out
Future<void> signOut() async {
await _authService.signOut();
}
}
|