mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 19:08:49 -07:00
0d0866d5d9
* Add API service * Added service, provider * merge main * update pubspec * styling * dev: add person search result page * dev: display person asset on page * dev: add rename form * style form * dev: mechanism to add name to faces * styling * fix bad merge * update api * test * revert * Add header widget * change name * show all people page * fix test * pr feedback * Add name to app bar * feedback * styling
69 lines
2.0 KiB
Dart
69 lines
2.0 KiB
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/modules/search/models/curated_content.dart';
|
|
import 'package:immich_mobile/modules/search/ui/thumbnail_with_info.dart';
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
import 'package:immich_mobile/shared/models/store.dart';
|
|
import 'package:immich_mobile/utils/image_url_builder.dart';
|
|
|
|
class ExploreGrid extends StatelessWidget {
|
|
final List<CuratedContent> curatedContent;
|
|
final bool isPeople;
|
|
|
|
const ExploreGrid({
|
|
super.key,
|
|
required this.curatedContent,
|
|
this.isPeople = false,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (curatedContent.isEmpty) {
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
|
child: SizedBox(
|
|
height: 100,
|
|
width: 100,
|
|
child: ThumbnailWithInfo(
|
|
textInfo: '',
|
|
onTap: () {},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
return GridView.builder(
|
|
gridDelegate: const SliverGridDelegateWithMaxCrossAxisExtent(
|
|
maxCrossAxisExtent: 140,
|
|
mainAxisSpacing: 4,
|
|
crossAxisSpacing: 4,
|
|
),
|
|
itemBuilder: (context, index) {
|
|
final content = curatedContent[index];
|
|
final thumbnailRequestUrl = isPeople
|
|
? getFaceThumbnailUrl(content.id)
|
|
: '${Store.get(StoreKey.serverEndpoint)}/asset/thumbnail/${content.id}';
|
|
|
|
return ThumbnailWithInfo(
|
|
imageUrl: thumbnailRequestUrl,
|
|
textInfo: content.label,
|
|
borderRadius: 0,
|
|
onTap: () {
|
|
isPeople
|
|
? AutoRouter.of(context).push(
|
|
PersonResultRoute(
|
|
personId: content.id,
|
|
personName: content.label,
|
|
),
|
|
)
|
|
: AutoRouter.of(context).push(
|
|
SearchResultRoute(searchTerm: 'm:${content.label}'),
|
|
);
|
|
},
|
|
);
|
|
},
|
|
itemCount: curatedContent.length,
|
|
);
|
|
}
|
|
}
|