You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-07 06:16:05 +02:00
49 lines
1.4 KiB
Dart
49 lines
1.4 KiB
Dart
![]() |
import 'package:flutter/widgets.dart';
|
||
|
import 'package:immich_mobile/domain/models/timeline.model.dart';
|
||
|
import 'package:immich_mobile/presentation/widgets/timeline/constants.dart';
|
||
|
import 'package:immich_mobile/presentation/widgets/timeline/fixed/row.dart';
|
||
|
import 'package:immich_mobile/widgets/asset_grid/thumbnail_placeholder.dart';
|
||
|
|
||
|
abstract class SegmentBuilder {
|
||
|
final List<Bucket> buckets;
|
||
|
final double spacing;
|
||
|
final GroupAssetsBy groupBy;
|
||
|
|
||
|
const SegmentBuilder({
|
||
|
required this.buckets,
|
||
|
this.spacing = kTimelineSpacing,
|
||
|
this.groupBy = GroupAssetsBy.day,
|
||
|
});
|
||
|
|
||
|
static double headerExtent(HeaderType header) {
|
||
|
switch (header) {
|
||
|
case HeaderType.month:
|
||
|
return kTimelineHeaderExtent;
|
||
|
case HeaderType.day:
|
||
|
return kTimelineHeaderExtent * 0.90;
|
||
|
case HeaderType.monthAndDay:
|
||
|
return kTimelineHeaderExtent * 1.5;
|
||
|
case HeaderType.none:
|
||
|
return 0.0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static Widget buildPlaceholder(
|
||
|
BuildContext context,
|
||
|
int count, {
|
||
|
Size size = const Size.square(kTimelineFixedTileExtent),
|
||
|
double spacing = kTimelineSpacing,
|
||
|
}) =>
|
||
|
RepaintBoundary(
|
||
|
child: FixedTimelineRow(
|
||
|
dimension: size.height,
|
||
|
spacing: spacing,
|
||
|
textDirection: Directionality.of(context),
|
||
|
children: List.generate(
|
||
|
count,
|
||
|
(_) => ThumbnailPlaceholder(width: size.width, height: size.height),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|