mirror of
https://github.com/immich-app/immich.git
synced 2025-11-20 14:52:40 +09:00
Some checks are pending
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Docker / pre-job (push) Waiting to run
Docker / Re-Tag ML () (push) Blocked by required conditions
Docker / Re-Tag ML (-armnn) (push) Blocked by required conditions
Docker / Re-Tag ML (-cuda) (push) Blocked by required conditions
Docker / Re-Tag ML (-openvino) (push) Blocked by required conditions
Docker / Re-Tag ML (-rknn) (push) Blocked by required conditions
Docker / Re-Tag ML (-rocm) (push) Blocked by required conditions
Docker / Re-Tag Server () (push) Blocked by required conditions
Docker / Build and Push ML (armnn, linux/arm64, -armnn) (push) Blocked by required conditions
Docker / Build and Push ML (cpu, ) (push) Blocked by required conditions
Docker / Build and Push ML (cuda, linux/amd64, -cuda) (push) Blocked by required conditions
Docker / Build and Push ML (openvino, linux/amd64, -openvino) (push) Blocked by required conditions
Docker / Build and Push ML (rknn, linux/arm64, -rknn) (push) Blocked by required conditions
Docker / Build and Push ML (rocm, linux/amd64, {"linux/amd64": "mich"}, -rocm) (push) Blocked by required conditions
Docker / Build and Push Server (push) Blocked by required conditions
Docker / Docker Build & Push Server Success (push) Blocked by required conditions
Docker / Docker Build & Push ML Success (push) Blocked by required conditions
Docs build / pre-job (push) Waiting to run
Docs build / Docs Build (push) Blocked by required conditions
Static Code Analysis / pre-job (push) Waiting to run
Static Code Analysis / Run Dart Code Analysis (push) Blocked by required conditions
Static Code Analysis / zizmor (push) Waiting to run
Test / pre-job (push) Waiting to run
Test / Test & Lint Server (push) Blocked by required conditions
Test / Unit Test CLI (push) Blocked by required conditions
Test / Unit Test CLI (Windows) (push) Blocked by required conditions
Test / Lint Web (push) Blocked by required conditions
Test / Test Web (push) Blocked by required conditions
Test / Test i18n (push) Blocked by required conditions
Test / End-to-End Lint (push) Blocked by required conditions
Test / Medium Tests (Server) (push) Blocked by required conditions
Test / End-to-End Tests (Server & CLI) (ubuntu-24.04-arm) (push) Blocked by required conditions
Test / End-to-End Tests (Server & CLI) (ubuntu-latest) (push) Blocked by required conditions
Test / End-to-End Tests (Web) (ubuntu-24.04-arm) (push) Blocked by required conditions
Test / End-to-End Tests (Web) (ubuntu-latest) (push) Blocked by required conditions
Test / End-to-End Tests Success (push) Blocked by required conditions
Test / Unit Test Mobile (push) Blocked by required conditions
Test / Unit Test ML (push) Blocked by required conditions
Test / .github Files Formatting (push) Blocked by required conditions
Test / ShellCheck (push) Waiting to run
Test / OpenAPI Clients (push) Waiting to run
Test / SQL Schema Checks (push) Waiting to run
179 lines
5.6 KiB
Dart
179 lines
5.6 KiB
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/providers/album/album.provider.dart';
|
|
import 'package:immich_mobile/providers/asset.provider.dart';
|
|
import 'package:immich_mobile/providers/asset_viewer/scroll_notifier.provider.dart';
|
|
import 'package:immich_mobile/providers/haptic_feedback.provider.dart';
|
|
import 'package:immich_mobile/providers/multiselect.provider.dart';
|
|
import 'package:immich_mobile/providers/search/search_input_focus.provider.dart';
|
|
import 'package:immich_mobile/providers/tab.provider.dart';
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
|
|
@RoutePage()
|
|
class TabControllerPage extends HookConsumerWidget {
|
|
const TabControllerPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final isRefreshingAssets = ref.watch(assetProvider);
|
|
final isRefreshingRemoteAlbums = ref.watch(isRefreshingRemoteAlbumProvider);
|
|
final isScreenLandscape = MediaQuery.orientationOf(context) == Orientation.landscape;
|
|
|
|
Widget buildIcon({required Widget icon, required bool isProcessing}) {
|
|
if (!isProcessing) return icon;
|
|
return Stack(
|
|
alignment: Alignment.center,
|
|
clipBehavior: Clip.none,
|
|
children: [
|
|
icon,
|
|
Positioned(
|
|
right: -18,
|
|
child: SizedBox(
|
|
height: 20,
|
|
width: 20,
|
|
child: CircularProgressIndicator(
|
|
strokeWidth: 2,
|
|
valueColor: AlwaysStoppedAnimation<Color>(
|
|
context.primaryColor,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
void onNavigationSelected(TabsRouter router, int index) {
|
|
// On Photos page menu tapped
|
|
if (router.activeIndex == 0 && index == 0) {
|
|
scrollToTopNotifierProvider.scrollToTop();
|
|
}
|
|
|
|
// On Search page tapped
|
|
if (router.activeIndex == 1 && index == 1) {
|
|
ref.read(searchInputFocusProvider).requestFocus();
|
|
}
|
|
|
|
ref.read(hapticFeedbackProvider.notifier).selectionClick();
|
|
router.setActiveIndex(index);
|
|
ref.read(tabProvider.notifier).state = TabEnum.values[index];
|
|
}
|
|
|
|
final navigationDestinations = [
|
|
NavigationDestination(
|
|
label: 'photos'.tr(),
|
|
icon: const Icon(
|
|
Icons.photo_library_outlined,
|
|
),
|
|
selectedIcon: buildIcon(
|
|
isProcessing: isRefreshingAssets,
|
|
icon: Icon(
|
|
Icons.photo_library,
|
|
color: context.primaryColor,
|
|
),
|
|
),
|
|
),
|
|
NavigationDestination(
|
|
label: 'search'.tr(),
|
|
icon: const Icon(
|
|
Icons.search_rounded,
|
|
),
|
|
selectedIcon: Icon(
|
|
Icons.search,
|
|
color: context.primaryColor,
|
|
),
|
|
),
|
|
NavigationDestination(
|
|
label: 'albums'.tr(),
|
|
icon: const Icon(
|
|
Icons.photo_album_outlined,
|
|
),
|
|
selectedIcon: buildIcon(
|
|
isProcessing: isRefreshingRemoteAlbums,
|
|
icon: Icon(
|
|
Icons.photo_album_rounded,
|
|
color: context.primaryColor,
|
|
),
|
|
),
|
|
),
|
|
NavigationDestination(
|
|
label: 'library'.tr(),
|
|
icon: const Icon(
|
|
Icons.space_dashboard_outlined,
|
|
),
|
|
selectedIcon: buildIcon(
|
|
isProcessing: isRefreshingAssets,
|
|
icon: Icon(
|
|
Icons.space_dashboard_rounded,
|
|
color: context.primaryColor,
|
|
),
|
|
),
|
|
),
|
|
];
|
|
|
|
Widget bottomNavigationBar(TabsRouter tabsRouter) {
|
|
return NavigationBar(
|
|
selectedIndex: tabsRouter.activeIndex,
|
|
onDestinationSelected: (index) => onNavigationSelected(tabsRouter, index),
|
|
destinations: navigationDestinations,
|
|
);
|
|
}
|
|
|
|
Widget navigationRail(TabsRouter tabsRouter) {
|
|
return NavigationRail(
|
|
destinations: navigationDestinations
|
|
.map(
|
|
(e) => NavigationRailDestination(
|
|
icon: e.icon,
|
|
label: Text(e.label),
|
|
selectedIcon: e.selectedIcon,
|
|
),
|
|
)
|
|
.toList(),
|
|
onDestinationSelected: (index) => onNavigationSelected(tabsRouter, index),
|
|
selectedIndex: tabsRouter.activeIndex,
|
|
labelType: NavigationRailLabelType.all,
|
|
groupAlignment: 0.0,
|
|
);
|
|
}
|
|
|
|
final multiselectEnabled = ref.watch(multiselectProvider);
|
|
return AutoTabsRouter(
|
|
routes: [
|
|
const PhotosRoute(),
|
|
SearchRoute(),
|
|
const AlbumsRoute(),
|
|
const LibraryRoute(),
|
|
],
|
|
duration: const Duration(milliseconds: 600),
|
|
transitionBuilder: (context, child, animation) => FadeTransition(
|
|
opacity: animation,
|
|
child: child,
|
|
),
|
|
builder: (context, child) {
|
|
final tabsRouter = AutoTabsRouter.of(context);
|
|
return PopScope(
|
|
canPop: tabsRouter.activeIndex == 0,
|
|
onPopInvokedWithResult: (didPop, _) => !didPop ? tabsRouter.setActiveIndex(0) : null,
|
|
child: Scaffold(
|
|
resizeToAvoidBottomInset: false,
|
|
body: isScreenLandscape
|
|
? Row(
|
|
children: [
|
|
navigationRail(tabsRouter),
|
|
const VerticalDivider(),
|
|
Expanded(child: child),
|
|
],
|
|
)
|
|
: child,
|
|
bottomNavigationBar: multiselectEnabled || isScreenLandscape ? null : bottomNavigationBar(tabsRouter),
|
|
),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|