2022-03-02 15:44:24 -07:00
|
|
|
import 'package:auto_route/auto_route.dart';
|
2022-07-07 11:40:54 -07:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2022-03-02 15:44:24 -07:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2022-10-01 01:33:06 -07:00
|
|
|
import 'package:immich_mobile/modules/home/ui/asset_grid/immich_asset_grid.dart';
|
2022-03-02 15:44:24 -07:00
|
|
|
import 'package:immich_mobile/modules/search/providers/search_page_state.provider.dart';
|
2022-03-16 08:19:31 -07:00
|
|
|
import 'package:immich_mobile/modules/search/providers/search_result_page.provider.dart';
|
2023-03-28 08:34:06 -07:00
|
|
|
import 'package:immich_mobile/modules/search/ui/search_result_grid.dart';
|
2022-03-02 15:44:24 -07:00
|
|
|
import 'package:immich_mobile/modules/search/ui/search_suggestion_list.dart';
|
2022-11-11 10:52:02 -07:00
|
|
|
import 'package:immich_mobile/shared/ui/immich_loading_indicator.dart';
|
2022-03-02 15:44:24 -07:00
|
|
|
|
2023-03-28 08:34:06 -07:00
|
|
|
class SearchType {
|
|
|
|
SearchType({required this.isClip, required this.searchTerm});
|
|
|
|
|
|
|
|
final bool isClip;
|
|
|
|
final String searchTerm;
|
|
|
|
}
|
|
|
|
|
|
|
|
SearchType _getSearchType(String searchTerm) {
|
|
|
|
if (searchTerm.startsWith('m:')) {
|
|
|
|
return SearchType(isClip: false, searchTerm: searchTerm.substring(2));
|
|
|
|
} else {
|
|
|
|
return SearchType(isClip: true, searchTerm: searchTerm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-02 15:44:24 -07:00
|
|
|
class SearchResultPage extends HookConsumerWidget {
|
2023-03-28 08:34:06 -07:00
|
|
|
const SearchResultPage({
|
|
|
|
Key? key,
|
|
|
|
required this.searchTerm,
|
|
|
|
}) : super(key: key);
|
2022-03-02 15:44:24 -07:00
|
|
|
|
|
|
|
final String searchTerm;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
final searchTermController = useTextEditingController(text: "");
|
|
|
|
final isNewSearch = useState(false);
|
|
|
|
final currentSearchTerm = useState(searchTerm);
|
2023-03-28 08:34:06 -07:00
|
|
|
final isDarkTheme = Theme.of(context).brightness == Brightness.dark;
|
|
|
|
final isDisplayDateGroup = useState(true);
|
2022-03-02 15:44:24 -07:00
|
|
|
|
2022-08-03 13:36:12 -07:00
|
|
|
FocusNode? searchFocusNode;
|
|
|
|
|
2022-07-13 05:23:48 -07:00
|
|
|
useEffect(
|
|
|
|
() {
|
|
|
|
searchFocusNode = FocusNode();
|
|
|
|
|
2023-03-28 08:34:06 -07:00
|
|
|
var searchType = _getSearchType(searchTerm);
|
|
|
|
searchType.isClip
|
|
|
|
? isDisplayDateGroup.value = false
|
|
|
|
: isDisplayDateGroup.value = true;
|
|
|
|
|
2022-07-13 05:23:48 -07:00
|
|
|
Future.delayed(
|
|
|
|
Duration.zero,
|
2023-03-28 08:34:06 -07:00
|
|
|
() => ref
|
|
|
|
.read(searchResultPageProvider.notifier)
|
|
|
|
.search(searchType.searchTerm, clipEnable: searchType.isClip),
|
2022-07-13 05:23:48 -07:00
|
|
|
);
|
2022-08-03 13:36:12 -07:00
|
|
|
return () => searchFocusNode?.dispose();
|
2022-07-13 05:23:48 -07:00
|
|
|
},
|
|
|
|
[],
|
|
|
|
);
|
2022-03-02 15:44:24 -07:00
|
|
|
|
2022-11-21 05:13:14 -07:00
|
|
|
onSearchSubmitted(String newSearchTerm) {
|
2022-03-02 15:44:24 -07:00
|
|
|
debugPrint("Re-Search with $newSearchTerm");
|
2022-08-03 13:36:12 -07:00
|
|
|
searchFocusNode?.unfocus();
|
2022-03-02 15:44:24 -07:00
|
|
|
isNewSearch.value = false;
|
|
|
|
currentSearchTerm.value = newSearchTerm;
|
2023-03-28 08:34:06 -07:00
|
|
|
|
|
|
|
var searchType = _getSearchType(newSearchTerm);
|
|
|
|
searchType.isClip
|
|
|
|
? isDisplayDateGroup.value = false
|
|
|
|
: isDisplayDateGroup.value = true;
|
|
|
|
|
|
|
|
ref
|
|
|
|
.watch(searchResultPageProvider.notifier)
|
|
|
|
.search(searchType.searchTerm, clipEnable: searchType.isClip);
|
2022-03-02 15:44:24 -07:00
|
|
|
}
|
|
|
|
|
2022-11-21 05:13:14 -07:00
|
|
|
buildTextField() {
|
2022-03-02 15:44:24 -07:00
|
|
|
return TextField(
|
|
|
|
controller: searchTermController,
|
|
|
|
focusNode: searchFocusNode,
|
|
|
|
autofocus: false,
|
|
|
|
onTap: () {
|
|
|
|
searchTermController.clear();
|
|
|
|
ref.watch(searchPageStateProvider.notifier).setSearchTerm("");
|
2022-08-03 13:36:12 -07:00
|
|
|
searchFocusNode?.requestFocus();
|
2022-03-02 15:44:24 -07:00
|
|
|
},
|
|
|
|
textInputAction: TextInputAction.search,
|
|
|
|
onSubmitted: (searchTerm) {
|
|
|
|
if (searchTerm.isNotEmpty) {
|
|
|
|
searchTermController.clear();
|
2022-11-21 05:13:14 -07:00
|
|
|
onSearchSubmitted(searchTerm);
|
2022-03-02 15:44:24 -07:00
|
|
|
} else {
|
|
|
|
isNewSearch.value = false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onChanged: (value) {
|
|
|
|
ref.watch(searchPageStateProvider.notifier).setSearchTerm(value);
|
|
|
|
},
|
2022-07-07 11:40:54 -07:00
|
|
|
decoration: InputDecoration(
|
|
|
|
hintText: 'search_result_page_new_search_hint'.tr(),
|
2022-07-13 05:23:48 -07:00
|
|
|
enabledBorder: const UnderlineInputBorder(
|
2022-03-02 15:44:24 -07:00
|
|
|
borderSide: BorderSide(color: Colors.transparent),
|
|
|
|
),
|
2022-07-13 05:23:48 -07:00
|
|
|
focusedBorder: const UnderlineInputBorder(
|
2022-03-02 15:44:24 -07:00
|
|
|
borderSide: BorderSide(color: Colors.transparent),
|
|
|
|
),
|
2023-03-28 08:34:06 -07:00
|
|
|
hintStyle: TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontSize: 16.0,
|
|
|
|
color:
|
|
|
|
isDarkTheme ? Colors.grey[500] : Colors.black.withOpacity(0.5),
|
|
|
|
),
|
2022-03-02 15:44:24 -07:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-11-21 05:13:14 -07:00
|
|
|
buildChip() {
|
2022-03-02 15:44:24 -07:00
|
|
|
return Chip(
|
|
|
|
label: Wrap(
|
|
|
|
spacing: 5,
|
2022-05-29 15:32:30 -07:00
|
|
|
runAlignment: WrapAlignment.center,
|
|
|
|
crossAxisAlignment: WrapCrossAlignment.center,
|
|
|
|
alignment: WrapAlignment.center,
|
2022-03-02 15:44:24 -07:00
|
|
|
children: [
|
2022-05-29 15:32:30 -07:00
|
|
|
Text(
|
|
|
|
currentSearchTerm.value,
|
2022-06-21 22:23:35 -07:00
|
|
|
style: TextStyle(
|
2022-07-13 05:23:48 -07:00
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
fontSize: 13,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
2022-05-29 15:32:30 -07:00
|
|
|
maxLines: 1,
|
2022-03-02 15:44:24 -07:00
|
|
|
),
|
|
|
|
Icon(
|
|
|
|
Icons.close_rounded,
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
size: 20,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
backgroundColor: Theme.of(context).primaryColor.withAlpha(50),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-11-21 05:13:14 -07:00
|
|
|
buildSearchResult() {
|
2022-03-16 08:19:31 -07:00
|
|
|
var searchResultPageState = ref.watch(searchResultPageProvider);
|
2023-01-18 08:59:23 -07:00
|
|
|
var allSearchAssets = ref.watch(searchResultPageProvider).searchResult;
|
2022-09-30 02:05:54 -07:00
|
|
|
|
2022-03-02 15:44:24 -07:00
|
|
|
if (searchResultPageState.isError) {
|
2023-03-15 14:29:07 -07:00
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.all(12),
|
|
|
|
child: const Text("common_server_error").tr(),
|
|
|
|
);
|
2022-03-02 15:44:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (searchResultPageState.isLoading) {
|
2022-11-11 10:52:02 -07:00
|
|
|
return const Center(child: ImmichLoadingIndicator());
|
2022-03-02 15:44:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (searchResultPageState.isSuccess) {
|
2023-03-28 08:34:06 -07:00
|
|
|
if (isDisplayDateGroup.value) {
|
|
|
|
return ImmichAssetGrid(
|
2023-03-24 20:44:53 -07:00
|
|
|
assets: allSearchAssets,
|
2023-03-28 08:34:06 -07:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return SearchResultGrid(
|
|
|
|
assets: allSearchAssets,
|
|
|
|
);
|
|
|
|
}
|
2022-03-02 15:44:24 -07:00
|
|
|
}
|
|
|
|
|
2022-06-30 18:08:49 -07:00
|
|
|
return const SizedBox();
|
2022-03-02 15:44:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
leading: IconButton(
|
|
|
|
splashRadius: 20,
|
|
|
|
onPressed: () {
|
|
|
|
if (isNewSearch.value) {
|
|
|
|
isNewSearch.value = false;
|
|
|
|
} else {
|
|
|
|
AutoRouter.of(context).pop(true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
|
|
),
|
|
|
|
title: GestureDetector(
|
2022-07-13 05:23:48 -07:00
|
|
|
onTap: () {
|
|
|
|
isNewSearch.value = true;
|
2022-08-03 13:36:12 -07:00
|
|
|
searchFocusNode?.requestFocus();
|
2022-07-13 05:23:48 -07:00
|
|
|
},
|
2022-11-21 05:13:14 -07:00
|
|
|
child: isNewSearch.value ? buildTextField() : buildChip(),
|
2022-07-13 05:23:48 -07:00
|
|
|
),
|
2022-03-02 15:44:24 -07:00
|
|
|
centerTitle: false,
|
|
|
|
),
|
|
|
|
body: GestureDetector(
|
|
|
|
onTap: () {
|
2022-08-03 13:36:12 -07:00
|
|
|
if (searchFocusNode != null) {
|
|
|
|
searchFocusNode?.unfocus();
|
|
|
|
}
|
|
|
|
|
2022-03-02 15:44:24 -07:00
|
|
|
ref.watch(searchPageStateProvider.notifier).disableSearch();
|
|
|
|
},
|
|
|
|
child: Stack(
|
|
|
|
children: [
|
2022-11-21 05:13:14 -07:00
|
|
|
buildSearchResult(),
|
2022-06-30 18:08:49 -07:00
|
|
|
if (isNewSearch.value)
|
2022-11-21 05:13:14 -07:00
|
|
|
SearchSuggestionList(onSubmitted: onSearchSubmitted),
|
2022-03-02 15:44:24 -07:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|