2022-02-03 09:06:44 -07:00
|
|
|
import 'package:flutter/material.dart';
|
2022-02-05 23:07:56 -07:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2022-02-03 09:06:44 -07:00
|
|
|
import 'package:immich_mobile/modules/home/ui/thumbnail_image.dart';
|
2022-07-13 05:23:48 -07:00
|
|
|
import 'package:openapi/api.dart';
|
2022-02-03 09:06:44 -07:00
|
|
|
|
2022-08-03 13:36:12 -07:00
|
|
|
// ignore: must_be_immutable
|
2022-02-05 23:07:56 -07:00
|
|
|
class ImageGrid extends ConsumerWidget {
|
2022-07-13 05:23:48 -07:00
|
|
|
final List<AssetResponseDto> assetGroup;
|
2022-08-03 13:36:12 -07:00
|
|
|
final List<AssetResponseDto> sortedAssetGroup;
|
2022-08-20 14:19:40 -07:00
|
|
|
final int tilesPerRow;
|
|
|
|
final bool showStorageIndicator;
|
2022-02-03 09:06:44 -07:00
|
|
|
|
2022-08-03 13:36:12 -07:00
|
|
|
ImageGrid({
|
|
|
|
Key? key,
|
|
|
|
required this.assetGroup,
|
|
|
|
required this.sortedAssetGroup,
|
2022-08-20 14:19:40 -07:00
|
|
|
this.tilesPerRow = 4,
|
|
|
|
this.showStorageIndicator = true,
|
2022-08-03 13:36:12 -07:00
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
List<AssetResponseDto> imageSortedList = [];
|
2022-02-03 09:06:44 -07:00
|
|
|
|
|
|
|
@override
|
2022-02-05 23:07:56 -07:00
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
2022-02-03 09:06:44 -07:00
|
|
|
return SliverGrid(
|
2022-08-20 14:19:40 -07:00
|
|
|
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
|
|
|
|
crossAxisCount: tilesPerRow,
|
2022-04-23 19:08:45 -07:00
|
|
|
crossAxisSpacing: 5.0,
|
|
|
|
mainAxisSpacing: 5,
|
|
|
|
),
|
2022-02-03 09:06:44 -07:00
|
|
|
delegate: SliverChildBuilderDelegate(
|
|
|
|
(BuildContext context, int index) {
|
2022-02-05 23:07:56 -07:00
|
|
|
var assetType = assetGroup[index].type;
|
2022-02-03 09:06:44 -07:00
|
|
|
return GestureDetector(
|
2022-04-23 19:08:45 -07:00
|
|
|
onTap: () {},
|
|
|
|
child: Stack(
|
|
|
|
children: [
|
2022-08-03 13:36:12 -07:00
|
|
|
ThumbnailImage(
|
|
|
|
asset: assetGroup[index],
|
|
|
|
assetList: sortedAssetGroup,
|
2022-08-20 14:19:40 -07:00
|
|
|
showStorageIndicator: showStorageIndicator,
|
2022-08-03 13:36:12 -07:00
|
|
|
),
|
2022-07-13 05:23:48 -07:00
|
|
|
if (assetType != AssetTypeEnum.IMAGE)
|
2022-06-30 18:08:49 -07:00
|
|
|
Positioned(
|
|
|
|
top: 5,
|
|
|
|
right: 5,
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
assetGroup[index].duration.toString().substring(0, 7),
|
|
|
|
style: const TextStyle(
|
|
|
|
color: Colors.white,
|
|
|
|
fontSize: 10,
|
|
|
|
),
|
2022-04-23 19:08:45 -07:00
|
|
|
),
|
2022-06-30 18:08:49 -07:00
|
|
|
const Icon(
|
|
|
|
Icons.play_circle_outline_rounded,
|
|
|
|
color: Colors.white,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2022-04-23 19:08:45 -07:00
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
childCount: assetGroup.length,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|