mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-22 14:59:12 +00:00
241 lines
No EOL
7.9 KiB
Dart
241 lines
No EOL
7.9 KiB
Dart
// ignore_for_file: use_build_context_synchronously
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:animations/animations.dart';
|
|
import 'package:flutter/rendering.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
|
|
|
import 'package:adguard_home_manager/screens/clients/clients.dart';
|
|
import 'package:adguard_home_manager/screens/clients/client/client_screen_functions.dart';
|
|
import 'package:adguard_home_manager/screens/clients/client/added_client_tile.dart';
|
|
import 'package:adguard_home_manager/screens/clients/client/remove_client_modal.dart';
|
|
import 'package:adguard_home_manager/screens/clients/fab.dart';
|
|
import 'package:adguard_home_manager/widgets/tab_content_list.dart';
|
|
|
|
import 'package:adguard_home_manager/functions/snackbar.dart';
|
|
import 'package:adguard_home_manager/providers/status_provider.dart';
|
|
import 'package:adguard_home_manager/providers/clients_provider.dart';
|
|
import 'package:adguard_home_manager/constants/enums.dart';
|
|
import 'package:adguard_home_manager/classes/process_modal.dart';
|
|
import 'package:adguard_home_manager/models/clients.dart';
|
|
import 'package:adguard_home_manager/providers/app_config_provider.dart';
|
|
|
|
class AddedList extends StatefulWidget {
|
|
final ScrollController scrollController;
|
|
final List<Client> data;
|
|
final void Function(Client) onClientSelected;
|
|
final Client? selectedClient;
|
|
final bool splitView;
|
|
|
|
const AddedList({
|
|
super.key,
|
|
required this.scrollController,
|
|
required this.data,
|
|
required this.onClientSelected,
|
|
this.selectedClient,
|
|
required this.splitView
|
|
});
|
|
|
|
@override
|
|
State<AddedList> createState() => _AddedListState();
|
|
}
|
|
|
|
class _AddedListState extends State<AddedList> {
|
|
late bool isVisible;
|
|
|
|
@override
|
|
initState(){
|
|
super.initState();
|
|
|
|
isVisible = true;
|
|
widget.scrollController.addListener(() {
|
|
if (widget.scrollController.position.userScrollDirection == ScrollDirection.reverse) {
|
|
if (mounted && isVisible == true) {
|
|
setState(() => isVisible = false);
|
|
}
|
|
}
|
|
else {
|
|
if (widget.scrollController.position.userScrollDirection == ScrollDirection.forward) {
|
|
if (mounted && isVisible == false) {
|
|
setState(() => isVisible = true);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final statusProvider = Provider.of<StatusProvider>(context);
|
|
final clientsProvider = Provider.of<ClientsProvider>(context);
|
|
final appConfigProvider = Provider.of<AppConfigProvider>(context);
|
|
|
|
final width = MediaQuery.of(context).size.width;
|
|
|
|
void confirmEditClient(Client client) async {
|
|
ProcessModal processModal = ProcessModal();
|
|
processModal.open(AppLocalizations.of(context)!.savingChanges);
|
|
|
|
final result = await clientsProvider.editClient(client);
|
|
|
|
processModal.close();
|
|
|
|
if (result == true) {
|
|
showSnackbar(
|
|
appConfigProvider: appConfigProvider,
|
|
label: AppLocalizations.of(context)!.clientUpdatedSuccessfully,
|
|
color: Colors.green
|
|
);
|
|
}
|
|
else {
|
|
showSnackbar(
|
|
appConfigProvider: appConfigProvider,
|
|
label: AppLocalizations.of(context)!.clientNotUpdated,
|
|
color: Colors.red
|
|
);
|
|
}
|
|
}
|
|
|
|
void deleteClient(Client client) async {
|
|
ProcessModal processModal = ProcessModal();
|
|
processModal.open(AppLocalizations.of(context)!.removingClient);
|
|
|
|
final result = await clientsProvider.deleteClient(client);
|
|
|
|
processModal.close();
|
|
|
|
if (result == true) {
|
|
if (widget.splitView == true) {
|
|
Navigator.of(clientsNavigatorKey.currentContext!).popUntil((route) => false);
|
|
}
|
|
showSnackbar(
|
|
appConfigProvider: appConfigProvider,
|
|
label: AppLocalizations.of(context)!.clientDeletedSuccessfully,
|
|
color: Colors.green
|
|
);
|
|
}
|
|
else {
|
|
showSnackbar(
|
|
appConfigProvider: appConfigProvider,
|
|
label: AppLocalizations.of(context)!.clientNotDeleted,
|
|
color: Colors.red
|
|
);
|
|
}
|
|
}
|
|
|
|
void openClientModal(Client client) {
|
|
openClientFormModal(
|
|
context: context,
|
|
width: width,
|
|
client: client,
|
|
onConfirm: confirmEditClient,
|
|
onDelete: deleteClient
|
|
);
|
|
}
|
|
|
|
void openDeleteModal(Client client) {
|
|
showModal(
|
|
context: context,
|
|
builder: (ctx) => RemoveClientModal(
|
|
onConfirm: () => deleteClient(client)
|
|
)
|
|
);
|
|
}
|
|
final clientsDisplay = clientsProvider.searchTermClients != null && clientsProvider.searchTermClients != ""
|
|
? widget.data.where(
|
|
(c) => c.name.toLowerCase().contains(clientsProvider.searchTermClients.toString()) || c.ids.where((id) => id.contains(clientsProvider.searchTermClients.toString())).isNotEmpty
|
|
).toList()
|
|
: widget.data;
|
|
|
|
return CustomTabContentList(
|
|
listPadding: widget.splitView == true
|
|
? const EdgeInsets.only(top: 8)
|
|
: null,
|
|
loadingGenerator: () => SizedBox(
|
|
width: double.maxFinite,
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
const CircularProgressIndicator(),
|
|
const SizedBox(height: 30),
|
|
Text(
|
|
AppLocalizations.of(context)!.loadingStatus,
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
fontSize: 22,
|
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
itemsCount: clientsDisplay.length,
|
|
contentWidget: (index) => AddedClientTile(
|
|
selectedClient: widget.selectedClient,
|
|
client: clientsDisplay[index],
|
|
onTap: widget.onClientSelected,
|
|
onEdit: statusProvider.serverStatus != null
|
|
? (c) => openClientModal(c)
|
|
: null,
|
|
onDelete: openDeleteModal,
|
|
splitView: widget.splitView,
|
|
),
|
|
noData: SizedBox(
|
|
width: double.maxFinite,
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16),
|
|
child: Text(
|
|
AppLocalizations.of(context)!.noClientsList,
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
fontSize: 24,
|
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 30),
|
|
TextButton.icon(
|
|
onPressed: () => clientsProvider.fetchClients(updateLoading: true),
|
|
icon: const Icon(Icons.refresh_rounded),
|
|
label: Text(AppLocalizations.of(context)!.refresh),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
errorGenerator: () => SizedBox(
|
|
width: double.maxFinite,
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
const Icon(
|
|
Icons.error,
|
|
color: Colors.red,
|
|
size: 50,
|
|
),
|
|
const SizedBox(height: 30),
|
|
Text(
|
|
AppLocalizations.of(context)!.errorLoadServerStatus,
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
fontSize: 22,
|
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
loadStatus: statusProvider.loadStatus == LoadStatus.loading || clientsProvider.loadStatus == LoadStatus.loading
|
|
? LoadStatus.loading
|
|
: clientsProvider.loadStatus,
|
|
onRefresh: () => clientsProvider.fetchClients(updateLoading: false),
|
|
fab: const ClientsFab(),
|
|
fabVisible: isVisible,
|
|
);
|
|
}
|
|
} |