167 lines
5.5 KiB
Dart
167 lines
5.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hiddify/core/localization/translations.dart';
|
|
import 'package:hiddify/core/model/failures.dart';
|
|
import 'package:hiddify/features/common/nested_app_bar.dart';
|
|
import 'package:hiddify/features/proxy/overview/proxies_overview_notifier.dart';
|
|
import 'package:hiddify/features/proxy/widget/proxy_tile.dart';
|
|
import 'package:hiddify/utils/utils.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
class ProxiesOverviewPage extends HookConsumerWidget with PresLogger {
|
|
const ProxiesOverviewPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final t = ref.watch(translationsProvider);
|
|
|
|
final asyncProxies = ref.watch(proxiesOverviewNotifierProvider);
|
|
final notifier = ref.watch(proxiesOverviewNotifierProvider.notifier);
|
|
final sortBy = ref.watch(proxiesSortNotifierProvider);
|
|
|
|
final selectActiveProxyMutation = useMutation(
|
|
initialOnFailure: (error) =>
|
|
CustomToast.error(t.presentShortError(error)).show(context),
|
|
);
|
|
|
|
final appBar = NestedAppBar(
|
|
title: Text(t.proxies.pageTitle),
|
|
actions: [
|
|
PopupMenuButton<ProxiesSort>(
|
|
initialValue: sortBy,
|
|
onSelected: ref.read(proxiesSortNotifierProvider.notifier).update,
|
|
icon: const Icon(Icons.sort),
|
|
tooltip: t.proxies.sortTooltip,
|
|
itemBuilder: (context) {
|
|
return [
|
|
...ProxiesSort.values.map(
|
|
(e) => PopupMenuItem(
|
|
value: e,
|
|
child: Text(e.present(t)),
|
|
),
|
|
),
|
|
];
|
|
},
|
|
),
|
|
],
|
|
);
|
|
|
|
switch (asyncProxies) {
|
|
case AsyncData(value: final groups):
|
|
if (groups.isEmpty) {
|
|
return Scaffold(
|
|
body: CustomScrollView(
|
|
slivers: [
|
|
appBar,
|
|
SliverFillRemaining(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Text(t.proxies.emptyProxiesMsg),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
final group = groups.first;
|
|
|
|
return Scaffold(
|
|
body: CustomScrollView(
|
|
slivers: [
|
|
appBar,
|
|
SliverLayoutBuilder(
|
|
builder: (context, constraints) {
|
|
final width = constraints.crossAxisExtent;
|
|
if (!PlatformUtils.isDesktop && width < 648) {
|
|
return SliverPadding(
|
|
padding: const EdgeInsets.only(bottom: 86),
|
|
sliver: SliverList.builder(
|
|
itemBuilder: (_, index) {
|
|
final proxy = group.items[index];
|
|
return ProxyTile(
|
|
proxy,
|
|
selected: group.selected == proxy.tag,
|
|
onSelect: () async {
|
|
if (selectActiveProxyMutation
|
|
.state.isInProgress) {
|
|
return;
|
|
}
|
|
selectActiveProxyMutation.setFuture(
|
|
notifier.changeProxy(group.tag, proxy.tag),
|
|
);
|
|
},
|
|
);
|
|
},
|
|
itemCount: group.items.length,
|
|
),
|
|
);
|
|
}
|
|
|
|
return SliverGrid.builder(
|
|
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
|
|
crossAxisCount: (width / 268).floor(),
|
|
mainAxisExtent: 68,
|
|
),
|
|
itemBuilder: (context, index) {
|
|
final proxy = group.items[index];
|
|
return ProxyTile(
|
|
proxy,
|
|
selected: group.selected == proxy.tag,
|
|
onSelect: () async {
|
|
if (selectActiveProxyMutation.state.isInProgress) {
|
|
return;
|
|
}
|
|
selectActiveProxyMutation.setFuture(
|
|
notifier.changeProxy(
|
|
group.tag,
|
|
proxy.tag,
|
|
),
|
|
);
|
|
},
|
|
);
|
|
},
|
|
itemCount: group.items.length,
|
|
);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
floatingActionButton: FloatingActionButton(
|
|
onPressed: () async => notifier.urlTest(group.tag),
|
|
tooltip: t.proxies.delayTestTooltip,
|
|
child: const Icon(Icons.bolt),
|
|
),
|
|
);
|
|
|
|
case AsyncError(:final error):
|
|
return Scaffold(
|
|
body: CustomScrollView(
|
|
slivers: [
|
|
appBar,
|
|
SliverErrorBodyPlaceholder(
|
|
t.presentShortError(error),
|
|
icon: null,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
|
|
case AsyncLoading():
|
|
return Scaffold(
|
|
body: CustomScrollView(
|
|
slivers: [
|
|
appBar,
|
|
const SliverLoadingBodyPlaceholder(),
|
|
],
|
|
),
|
|
);
|
|
|
|
// TODO: remove
|
|
default:
|
|
return const Scaffold();
|
|
}
|
|
}
|
|
}
|