mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
983473261b
* build(mobile): add riverpod_lint * refactor(mobile): riverpod_generator for providers * test(mobile): fix integration test helper * refactor: ApiService to riverpod codegen * refactor(mobile): return curatedcontent instead of people dto * refactor: person provider to asyncnotifier * mobile: update service providers to use lambda * mobile: update scaffoldbody default error icon * remove logger mixin --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
267 lines
8.9 KiB
Dart
267 lines
8.9 KiB
Dart
import 'dart:math' as math;
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart' hide Store;
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/modules/search/models/curated_content.dart';
|
|
import 'package:immich_mobile/modules/search/providers/people.provider.dart';
|
|
import 'package:immich_mobile/modules/search/providers/search_page_state.provider.dart';
|
|
import 'package:immich_mobile/modules/search/ui/curated_people_row.dart';
|
|
import 'package:immich_mobile/modules/search/ui/curated_places_row.dart';
|
|
import 'package:immich_mobile/modules/search/ui/immich_search_bar.dart';
|
|
import 'package:immich_mobile/modules/search/ui/person_name_edit_form.dart';
|
|
import 'package:immich_mobile/modules/search/ui/search_row_title.dart';
|
|
import 'package:immich_mobile/modules/search/ui/search_suggestion_list.dart';
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
import 'package:immich_mobile/shared/providers/server_info.provider.dart';
|
|
import 'package:immich_mobile/shared/ui/immich_loading_indicator.dart';
|
|
|
|
// ignore: must_be_immutable
|
|
class SearchPage extends HookConsumerWidget {
|
|
SearchPage({Key? key}) : super(key: key);
|
|
|
|
FocusNode searchFocusNode = FocusNode();
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final isSearchEnabled = ref.watch(searchPageStateProvider).isSearchEnabled;
|
|
final curatedLocation = ref.watch(getCuratedLocationProvider);
|
|
final curatedPeople = ref.watch(getCuratedPeopleProvider);
|
|
final isMapEnabled =
|
|
ref.watch(serverInfoProvider.select((v) => v.serverFeatures.map));
|
|
double imageSize = math.min(context.width / 3, 150);
|
|
|
|
TextStyle categoryTitleStyle = const TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 14.0,
|
|
);
|
|
|
|
Color categoryIconColor = context.isDarkTheme ? Colors.white : Colors.black;
|
|
|
|
useEffect(
|
|
() {
|
|
searchFocusNode = FocusNode();
|
|
return () => searchFocusNode.dispose();
|
|
},
|
|
[],
|
|
);
|
|
|
|
onSearchSubmitted(String searchTerm) async {
|
|
searchFocusNode.unfocus();
|
|
ref.watch(searchPageStateProvider.notifier).disableSearch();
|
|
|
|
context.autoPush(
|
|
SearchResultRoute(
|
|
searchTerm: searchTerm,
|
|
),
|
|
);
|
|
}
|
|
|
|
showNameEditModel(
|
|
String personId,
|
|
String personName,
|
|
) {
|
|
return showDialog(
|
|
context: context,
|
|
builder: (BuildContext context) {
|
|
return PersonNameEditForm(personId: personId, personName: personName);
|
|
},
|
|
);
|
|
}
|
|
|
|
buildPeople() {
|
|
return SizedBox(
|
|
height: imageSize,
|
|
child: curatedPeople.when(
|
|
loading: () => const Center(child: ImmichLoadingIndicator()),
|
|
error: (err, stack) => Center(child: Text('Error: $err')),
|
|
data: (people) => CuratedPeopleRow(
|
|
content: people.take(12).toList(),
|
|
onTap: (content, index) {
|
|
context.autoPush(
|
|
PersonResultRoute(
|
|
personId: content.id,
|
|
personName: content.label,
|
|
),
|
|
);
|
|
},
|
|
onNameTap: (person, index) => {
|
|
showNameEditModel(person.id, person.label),
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
buildPlaces() {
|
|
return SizedBox(
|
|
height: imageSize,
|
|
child: curatedLocation.when(
|
|
loading: () => const Center(child: ImmichLoadingIndicator()),
|
|
error: (err, stack) => Center(child: Text('Error: $err')),
|
|
data: (locations) => CuratedPlacesRow(
|
|
isMapEnabled: isMapEnabled,
|
|
content: locations
|
|
.map(
|
|
(o) => CuratedContent(
|
|
id: o.id,
|
|
label: o.city,
|
|
),
|
|
)
|
|
.toList(),
|
|
imageSize: imageSize,
|
|
onTap: (content, index) {
|
|
context.autoPush(
|
|
SearchResultRoute(
|
|
searchTerm: 'm:${content.label}',
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
return Scaffold(
|
|
appBar: ImmichSearchBar(
|
|
searchFocusNode: searchFocusNode,
|
|
onSubmitted: onSearchSubmitted,
|
|
),
|
|
body: GestureDetector(
|
|
onTap: () {
|
|
searchFocusNode.unfocus();
|
|
ref.watch(searchPageStateProvider.notifier).disableSearch();
|
|
},
|
|
child: Stack(
|
|
children: [
|
|
ListView(
|
|
children: [
|
|
SearchRowTitle(
|
|
title: "search_page_people".tr(),
|
|
onViewAllPressed: () =>
|
|
context.autoPush(const AllPeopleRoute()),
|
|
),
|
|
buildPeople(),
|
|
SearchRowTitle(
|
|
title: "search_page_places".tr(),
|
|
onViewAllPressed: () =>
|
|
context.autoPush(const CuratedLocationRoute()),
|
|
top: 0,
|
|
),
|
|
const SizedBox(height: 10.0),
|
|
buildPlaces(),
|
|
const SizedBox(height: 24.0),
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16),
|
|
child: Text(
|
|
'search_page_your_activity',
|
|
style: context.textTheme.titleSmall,
|
|
).tr(),
|
|
),
|
|
ListTile(
|
|
leading: Icon(
|
|
Icons.favorite_border_rounded,
|
|
color: categoryIconColor,
|
|
),
|
|
title:
|
|
Text('search_page_favorites', style: categoryTitleStyle)
|
|
.tr(),
|
|
onTap: () => context.autoPush(const FavoritesRoute()),
|
|
),
|
|
const CategoryDivider(),
|
|
ListTile(
|
|
leading: Icon(
|
|
Icons.schedule_outlined,
|
|
color: categoryIconColor,
|
|
),
|
|
title: Text(
|
|
'search_page_recently_added',
|
|
style: categoryTitleStyle,
|
|
).tr(),
|
|
onTap: () => context.autoPush(const RecentlyAddedRoute()),
|
|
),
|
|
const SizedBox(height: 24.0),
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
|
child: Text(
|
|
'search_page_categories',
|
|
style: context.textTheme.titleSmall,
|
|
).tr(),
|
|
),
|
|
ListTile(
|
|
title: Text('search_page_screenshots', style: categoryTitleStyle).tr(),
|
|
leading: Icon(
|
|
Icons.screenshot,
|
|
color: categoryIconColor,
|
|
),
|
|
onTap: () => context.autoPush(
|
|
SearchResultRoute(
|
|
searchTerm: 'screenshots',
|
|
),
|
|
),
|
|
),
|
|
const CategoryDivider(),
|
|
ListTile(
|
|
title: Text('search_page_selfies', style: categoryTitleStyle)
|
|
.tr(),
|
|
leading: Icon(
|
|
Icons.photo_camera_front_outlined,
|
|
color: categoryIconColor,
|
|
),
|
|
onTap: () => context.autoPush(
|
|
SearchResultRoute(
|
|
searchTerm: 'selfies',
|
|
),
|
|
),
|
|
),
|
|
const CategoryDivider(),
|
|
ListTile(
|
|
title: Text('search_page_videos', style: categoryTitleStyle)
|
|
.tr(),
|
|
leading: Icon(
|
|
Icons.play_circle_outline,
|
|
color: categoryIconColor,
|
|
),
|
|
onTap: () => context.autoPush(const AllVideosRoute()),
|
|
),
|
|
const CategoryDivider(),
|
|
ListTile(
|
|
title: Text(
|
|
'search_page_motion_photos',
|
|
style: categoryTitleStyle,
|
|
).tr(),
|
|
leading: Icon(
|
|
Icons.motion_photos_on_outlined,
|
|
color: categoryIconColor,
|
|
),
|
|
onTap: () => context.autoPush(const AllMotionPhotosRoute()),
|
|
),
|
|
],
|
|
),
|
|
if (isSearchEnabled)
|
|
SearchSuggestionList(onSubmitted: onSearchSubmitted),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class CategoryDivider extends StatelessWidget {
|
|
const CategoryDivider({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Padding(
|
|
padding: EdgeInsets.only(
|
|
left: 72,
|
|
right: 16,
|
|
),
|
|
child: Divider(
|
|
height: 0,
|
|
),
|
|
);
|
|
}
|
|
}
|