mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-21 14:29:12 +00:00
111 lines
No EOL
3.5 KiB
Dart
111 lines
No EOL
3.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
|
|
|
import 'package:adguard_home_manager/screens/clients/client/active_client_tile.dart';
|
|
|
|
import 'package:adguard_home_manager/widgets/tab_content_list.dart';
|
|
|
|
import 'package:adguard_home_manager/providers/clients_provider.dart';
|
|
import 'package:adguard_home_manager/models/clients.dart';
|
|
|
|
class ClientsList extends StatelessWidget {
|
|
final List<AutoClient> data;
|
|
final void Function(AutoClient) onClientSelected;
|
|
final AutoClient? selectedClient;
|
|
final bool splitView;
|
|
|
|
const ClientsList({
|
|
super.key,
|
|
required this.data,
|
|
required this.onClientSelected,
|
|
this.selectedClient,
|
|
required this.splitView,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final clientsProvider = Provider.of<ClientsProvider>(context);
|
|
|
|
return CustomTabContentList(
|
|
listPadding: splitView == true
|
|
? const EdgeInsets.only(top: 8)
|
|
: null,
|
|
loadingGenerator: () => SizedBox(
|
|
width: double.maxFinite,
|
|
height: MediaQuery.of(context).size.height-171,
|
|
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: data.length,
|
|
contentWidget: (index) => ActiveClientTile(
|
|
client: data[index],
|
|
onTap: onClientSelected,
|
|
splitView: splitView,
|
|
selectedClient: selectedClient,
|
|
),
|
|
noData: SizedBox(
|
|
width: double.maxFinite,
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
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: false),
|
|
icon: const Icon(Icons.refresh_rounded),
|
|
label: Text(AppLocalizations.of(context)!.refresh)
|
|
)
|
|
],
|
|
),
|
|
),
|
|
errorGenerator: () => SizedBox(
|
|
width: double.maxFinite,
|
|
height: MediaQuery.of(context).size.height-171,
|
|
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: clientsProvider.loadStatus,
|
|
onRefresh: () => clientsProvider.fetchClients(updateLoading: false),
|
|
);
|
|
}
|
|
} |