2024-09-17 07:59:17 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:get/get_connect/http/src/exceptions/exceptions.dart';
|
|
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
import 'package:solian/exceptions/request.dart';
|
|
|
|
import 'package:solian/exts.dart';
|
|
|
|
import 'package:solian/providers/auth.dart';
|
2024-10-14 13:13:57 +00:00
|
|
|
import 'package:solian/widgets/loading_indicator.dart';
|
2024-09-17 07:59:17 +00:00
|
|
|
|
|
|
|
class NotificationPreferencesScreen extends StatefulWidget {
|
|
|
|
const NotificationPreferencesScreen({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<NotificationPreferencesScreen> createState() =>
|
|
|
|
_NotificationPreferencesScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _NotificationPreferencesScreenState
|
|
|
|
extends State<NotificationPreferencesScreen> {
|
|
|
|
bool _isBusy = true;
|
|
|
|
|
|
|
|
Map<String, bool> _config = {};
|
|
|
|
|
|
|
|
final Map<String, String> _topicMap = {
|
|
|
|
'interactive.feedback': 'notificationTopicPostFeedback'.tr,
|
|
|
|
'interactive.subscription': 'notificationTopicPostSubscription'.tr,
|
|
|
|
};
|
|
|
|
|
|
|
|
Future<void> _getPreferences() async {
|
|
|
|
setState(() => _isBusy = true);
|
|
|
|
|
|
|
|
final auth = Get.find<AuthProvider>();
|
|
|
|
if (!auth.isAuthorized.value) throw UnauthorizedException();
|
|
|
|
|
|
|
|
final client = await auth.configureClient('id');
|
|
|
|
final resp = await client.get('/preferences/notifications');
|
|
|
|
if (resp.statusCode != 200 && resp.statusCode != 404) {
|
|
|
|
context.showErrorDialog(RequestException(resp));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resp.statusCode == 200) {
|
|
|
|
_config = resp.body['config']
|
|
|
|
.map((k, v) => MapEntry(k, v as bool))
|
|
|
|
.cast<String, bool>();
|
|
|
|
}
|
|
|
|
|
|
|
|
setState(() => _isBusy = false);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _savePreferences() async {
|
|
|
|
setState(() => _isBusy = true);
|
|
|
|
|
|
|
|
final auth = Get.find<AuthProvider>();
|
|
|
|
if (!auth.isAuthorized.value) throw UnauthorizedException();
|
|
|
|
|
|
|
|
final client = await auth.configureClient('id');
|
|
|
|
final resp = await client.put('/preferences/notifications', {
|
|
|
|
'config': _config,
|
|
|
|
});
|
|
|
|
if (resp.statusCode != 200) {
|
|
|
|
context.showErrorDialog(RequestException(resp));
|
2024-10-13 06:13:16 +00:00
|
|
|
} else {
|
|
|
|
context.showSnackbar('preferencesApplied'.tr);
|
2024-09-17 07:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setState(() => _isBusy = false);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
_getPreferences();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-10-06 15:06:33 +00:00
|
|
|
return Column(
|
|
|
|
children: [
|
2024-10-14 13:13:57 +00:00
|
|
|
LoadingIndicator(isActive: _isBusy),
|
2024-10-06 15:06:33 +00:00
|
|
|
ListTile(
|
|
|
|
tileColor: Theme.of(context).colorScheme.surfaceContainer,
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 24),
|
|
|
|
leading: const Icon(Icons.save),
|
|
|
|
title: Text('save'.tr),
|
|
|
|
enabled: !_isBusy,
|
|
|
|
onTap: () {
|
|
|
|
_savePreferences();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
child: ListView.builder(
|
|
|
|
itemCount: _topicMap.length,
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
final element = _topicMap.entries.elementAt(index);
|
|
|
|
return CheckboxListTile(
|
|
|
|
title: Text(element.value),
|
|
|
|
subtitle: Text(
|
|
|
|
element.key,
|
|
|
|
style: GoogleFonts.robotoMono(fontSize: 12),
|
|
|
|
),
|
|
|
|
value: _config[element.key] ?? true,
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 24),
|
|
|
|
onChanged: (value) {
|
|
|
|
setState(() {
|
|
|
|
_config[element.key] = value ?? false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
2024-09-17 07:59:17 +00:00
|
|
|
},
|
|
|
|
),
|
2024-10-06 15:06:33 +00:00
|
|
|
),
|
|
|
|
],
|
2024-09-17 07:59:17 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|