111 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Dart
		
	
	
	
			
		
		
	
	
			111 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Dart
		
	
	
	
| import 'package:flutter/material.dart';
 | |
| 
 | |
| import 'package:go_router/go_router.dart';
 | |
| import 'package:shared_preferences/shared_preferences.dart';
 | |
| 
 | |
| import 'package:extera_next/config/setting_keys.dart';
 | |
| import 'package:extera_next/widgets/adaptive_dialogs/show_text_input_dialog.dart';
 | |
| import 'package:extera_next/widgets/matrix.dart';
 | |
| 
 | |
| class ConfigViewer extends StatelessWidget {
 | |
|   const ConfigViewer({super.key});
 | |
| 
 | |
|   void _changeSetting(
 | |
|     BuildContext context,
 | |
|     AppSettings appSetting,
 | |
|     SharedPreferences store,
 | |
|     Function setState,
 | |
|     String initialValue,
 | |
|   ) async {
 | |
|     if (appSetting is AppSettings<bool>) {
 | |
|       appSetting.setItem(store, !(initialValue == 'true'));
 | |
|       return;
 | |
|     }
 | |
| 
 | |
|     final value = await showTextInputDialog(
 | |
|       context: context,
 | |
|       title: appSetting.name,
 | |
|       hintText: appSetting.defaultValue.toString(),
 | |
|       initialText: initialValue,
 | |
|     );
 | |
|     if (value == null) return;
 | |
| 
 | |
|     if (appSetting is AppSettings<String>) {
 | |
|       appSetting.setItem(store, value);
 | |
|     }
 | |
|     if (appSetting is AppSettings<int>) {
 | |
|       appSetting.setItem(store, int.parse(value));
 | |
|     }
 | |
|     if (appSetting is AppSettings<double>) {
 | |
|       appSetting.setItem(store, double.parse(value));
 | |
|     }
 | |
| 
 | |
|     setState(() {});
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context) {
 | |
|     final theme = Theme.of(context);
 | |
|     return Scaffold(
 | |
|       appBar: AppBar(
 | |
|         title: const Text('Advanced configurations'),
 | |
|         leading: BackButton(
 | |
|           onPressed: () => context.go('/'),
 | |
|         ),
 | |
|       ),
 | |
|       body: Column(
 | |
|         children: [
 | |
|           Container(
 | |
|             margin: const EdgeInsets.all(16),
 | |
|             padding: const EdgeInsets.all(16),
 | |
|             color: theme.colorScheme.errorContainer,
 | |
|             child: Text(
 | |
|               'Changing configs by hand is untested! Use without any warranty!',
 | |
|               style: TextStyle(
 | |
|                 color: theme.colorScheme.onErrorContainer,
 | |
|               ),
 | |
|             ),
 | |
|           ),
 | |
|           Expanded(
 | |
|             child: StatefulBuilder(
 | |
|               builder: (context, setState) {
 | |
|                 return ListView.builder(
 | |
|                   itemCount: AppSettings.values.length,
 | |
|                   itemBuilder: (context, i) {
 | |
|                     final store = Matrix.of(context).store;
 | |
|                     final appSetting = AppSettings.values[i];
 | |
|                     var value = '';
 | |
|                     if (appSetting is AppSettings<String>) {
 | |
|                       value = appSetting.getItem(store);
 | |
|                     }
 | |
|                     if (appSetting is AppSettings<int>) {
 | |
|                       value = appSetting.getItem(store).toString();
 | |
|                     }
 | |
|                     if (appSetting is AppSettings<bool>) {
 | |
|                       value = appSetting.getItem(store).toString();
 | |
|                     }
 | |
|                     if (appSetting is AppSettings<double>) {
 | |
|                       value = appSetting.getItem(store).toString();
 | |
|                     }
 | |
|                     return ListTile(
 | |
|                       title: Text(appSetting.name),
 | |
|                       subtitle: Text(value),
 | |
|                       onTap: () => _changeSetting(
 | |
|                         context,
 | |
|                         appSetting,
 | |
|                         store,
 | |
|                         setState,
 | |
|                         value,
 | |
|                       ),
 | |
|                     );
 | |
|                   },
 | |
|                 );
 | |
|               },
 | |
|             ),
 | |
|           ),
 | |
|         ],
 | |
|       ),
 | |
|     );
 | |
|   }
 | |
| }
 |