mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 19:08:49 -07:00
40a8115101
* Fixed app not resuming backup after closing and reopening the app * Fixed cosmetic effect of backup button doesn't change state right away after pressing start backup * Fixed grammar * Fixed deep copy problem that cause incorrect asset count when backing up * Format code
66 lines
2.3 KiB
Dart
66 lines
2.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/search/providers/search_page_state.provider.dart';
|
|
|
|
class SearchBar extends HookConsumerWidget with PreferredSizeWidget {
|
|
SearchBar(
|
|
{Key? key, required this.searchFocusNode, required this.onSubmitted})
|
|
: super(key: key);
|
|
|
|
final FocusNode searchFocusNode;
|
|
final Function(String) onSubmitted;
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final searchTermController = useTextEditingController(text: "");
|
|
final isSearchEnabled = ref.watch(searchPageStateProvider).isSearchEnabled;
|
|
|
|
return AppBar(
|
|
automaticallyImplyLeading: false,
|
|
leading: isSearchEnabled
|
|
? IconButton(
|
|
onPressed: () {
|
|
searchFocusNode.unfocus();
|
|
ref.watch(searchPageStateProvider.notifier).disableSearch();
|
|
searchTermController.clear();
|
|
},
|
|
icon: const Icon(Icons.arrow_back_ios_rounded))
|
|
: const Icon(Icons.search_rounded),
|
|
title: TextField(
|
|
controller: searchTermController,
|
|
focusNode: searchFocusNode,
|
|
autofocus: false,
|
|
onTap: () {
|
|
searchTermController.clear();
|
|
ref.watch(searchPageStateProvider.notifier).getSuggestedSearchTerms();
|
|
ref.watch(searchPageStateProvider.notifier).enableSearch();
|
|
ref.watch(searchPageStateProvider.notifier).setSearchTerm("");
|
|
|
|
searchFocusNode.requestFocus();
|
|
},
|
|
onSubmitted: (searchTerm) {
|
|
onSubmitted(searchTerm);
|
|
searchTermController.clear();
|
|
ref.watch(searchPageStateProvider.notifier).setSearchTerm("");
|
|
},
|
|
onChanged: (value) {
|
|
ref.watch(searchPageStateProvider.notifier).setSearchTerm(value);
|
|
},
|
|
decoration: const InputDecoration(
|
|
hintText: 'Search your photos',
|
|
enabledBorder: UnderlineInputBorder(
|
|
borderSide: BorderSide(color: Colors.transparent),
|
|
),
|
|
focusedBorder: UnderlineInputBorder(
|
|
borderSide: BorderSide(color: Colors.transparent),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Size get preferredSize => const Size.fromHeight(kToolbarHeight);
|
|
}
|