2023-03-24 20:44:53 -07:00
|
|
|
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/shared/models/store.dart';
|
|
|
|
|
|
|
|
class CuratedRow extends StatelessWidget {
|
|
|
|
final List<CuratedContent> content;
|
|
|
|
final double imageSize;
|
2023-03-28 08:34:06 -07:00
|
|
|
|
2023-03-24 20:44:53 -07:00
|
|
|
/// Callback with the content and the index when tapped
|
|
|
|
final Function(CuratedContent, int)? onTap;
|
|
|
|
|
|
|
|
const CuratedRow({
|
|
|
|
super.key,
|
|
|
|
required this.content,
|
|
|
|
this.imageSize = 200,
|
|
|
|
this.onTap,
|
|
|
|
});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
// Guard empty [content]
|
|
|
|
if (content.isEmpty) {
|
|
|
|
// Return empty thumbnail
|
|
|
|
return Align(
|
|
|
|
alignment: Alignment.centerLeft,
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
|
|
|
child: SizedBox(
|
|
|
|
width: imageSize,
|
|
|
|
height: imageSize,
|
|
|
|
child: ThumbnailWithInfo(
|
|
|
|
textInfo: '',
|
|
|
|
onTap: () {},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ListView.builder(
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
padding: const EdgeInsets.symmetric(
|
|
|
|
horizontal: 16,
|
|
|
|
),
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
final object = content[index];
|
|
|
|
final thumbnailRequestUrl =
|
|
|
|
'${Store.get(StoreKey.serverEndpoint)}/asset/thumbnail/${object.id}';
|
|
|
|
return SizedBox(
|
|
|
|
width: imageSize,
|
|
|
|
height: imageSize,
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.only(right: 4.0),
|
|
|
|
child: ThumbnailWithInfo(
|
|
|
|
imageUrl: thumbnailRequestUrl,
|
|
|
|
textInfo: object.label,
|
|
|
|
onTap: () => onTap?.call(object, index),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
itemCount: content.length,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|