Surface/lib/widgets/attachment/attachment_list.dart

186 lines
6.2 KiB
Dart
Raw Normal View History

2024-11-25 14:41:15 +00:00
import 'package:dismissible_page/dismissible_page.dart';
2024-11-09 04:04:03 +00:00
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
2024-11-10 09:21:57 +00:00
import 'package:responsive_framework/responsive_framework.dart';
2024-11-09 04:04:03 +00:00
import 'package:surface/types/attachment.dart';
2024-11-25 14:41:15 +00:00
import 'package:surface/widgets/attachment/attachment_detail.dart';
2024-11-09 04:04:03 +00:00
import 'package:surface/widgets/attachment/attachment_item.dart';
2024-11-25 14:41:15 +00:00
import 'package:uuid/uuid.dart';
2024-11-09 04:04:03 +00:00
2024-11-25 14:41:15 +00:00
class AttachmentList extends StatefulWidget {
2024-11-17 16:55:39 +00:00
final List<SnAttachment?> data;
2024-11-18 13:38:15 +00:00
final bool bordered;
final bool noGrow;
2024-11-13 16:20:59 +00:00
final double? maxHeight;
final EdgeInsets? listPadding;
2024-11-10 08:41:11 +00:00
const AttachmentList({
super.key,
required this.data,
2024-11-18 13:38:15 +00:00
this.bordered = false,
this.noGrow = false,
2024-11-13 16:20:59 +00:00
this.maxHeight,
this.listPadding,
2024-11-10 08:41:11 +00:00
});
2024-11-09 04:04:03 +00:00
2024-11-10 09:21:57 +00:00
static const BorderRadius kDefaultRadius =
BorderRadius.all(Radius.circular(8));
2024-11-25 14:41:15 +00:00
@override
State<AttachmentList> createState() => _AttachmentListState();
}
class _AttachmentListState extends State<AttachmentList> {
late final List<String> heroTags = List.generate(
widget.data.length,
(_) => const Uuid().v4(),
);
2024-11-09 04:04:03 +00:00
@override
Widget build(BuildContext context) {
2024-11-25 14:41:15 +00:00
final borderSide = widget.bordered
2024-11-09 04:04:03 +00:00
? BorderSide(width: 1, color: Theme.of(context).dividerColor)
: BorderSide.none;
2024-11-14 14:42:06 +00:00
final backgroundColor = Theme.of(context).colorScheme.surfaceContainer;
final constraints = BoxConstraints(
minWidth: 80,
2024-11-25 14:41:15 +00:00
maxHeight: widget.maxHeight ?? double.infinity,
2024-11-14 14:42:06 +00:00
);
2024-11-09 04:04:03 +00:00
2024-11-25 14:41:15 +00:00
if (widget.data.isEmpty) return const SizedBox.shrink();
if (widget.data.length == 1) {
return GestureDetector(
child: Builder(
builder: (context) {
if (ResponsiveBreakpoints.of(context).largerThan(MOBILE) ||
widget.noGrow) {
return Padding(
// Single child list-like displaying
padding: widget.listPadding ?? EdgeInsets.zero,
child: Container(
constraints: constraints,
decoration: BoxDecoration(
color: backgroundColor,
border: Border(top: borderSide, bottom: borderSide),
borderRadius: AttachmentList.kDefaultRadius,
),
child: AspectRatio(
aspectRatio: widget.data[0]?.metadata['ratio']
?.toDouble() ??
switch (
widget.data[0]?.mimetype.split('/').firstOrNull) {
'audio' => 16 / 9,
'video' => 16 / 9,
_ => 1,
},
child: ClipRRect(
borderRadius: AttachmentList.kDefaultRadius,
child: AttachmentItem(
data: widget.data[0],
heroTag: heroTags[0],
),
),
),
),
);
}
2024-11-10 09:21:57 +00:00
2024-11-25 14:41:15 +00:00
return Container(
decoration: BoxDecoration(
color: backgroundColor,
border: Border(top: borderSide, bottom: borderSide),
),
child: AspectRatio(
aspectRatio: widget.data[0]?.metadata['ratio']?.toDouble() ?? 1,
child: AttachmentItem(
data: widget.data[0],
heroTag: heroTags.first,
),
),
);
},
2024-11-10 09:21:57 +00:00
),
2024-11-25 14:41:15 +00:00
onTap: () {
context.pushTransparentRoute(
AttachmentZoomView(
data: widget.data.where((ele) => ele != null).cast(),
initialIndex: 0,
heroTags: heroTags,
),
backgroundColor: Colors.black.withOpacity(0.7),
rootNavigator: true,
);
},
2024-11-09 04:04:03 +00:00
);
}
return Container(
2024-11-25 14:41:15 +00:00
constraints: BoxConstraints(maxHeight: widget.maxHeight ?? 320),
2024-11-09 04:04:03 +00:00
child: ScrollConfiguration(
behavior: _AttachmentListScrollBehavior(),
child: ListView.separated(
shrinkWrap: true,
2024-11-25 14:41:15 +00:00
itemCount: widget.data.length,
2024-11-09 04:04:03 +00:00
itemBuilder: (context, idx) {
2024-11-25 14:41:15 +00:00
return GestureDetector(
onTap: () {
context.pushTransparentRoute(
AttachmentZoomView(
data: widget.data.where((ele) => ele != null).cast(),
initialIndex: idx,
heroTags: heroTags,
2024-11-14 14:42:06 +00:00
),
2024-11-25 14:41:15 +00:00
backgroundColor: Colors.black.withOpacity(0.7),
rootNavigator: true,
);
},
child: Stack(
children: [
Container(
constraints: constraints,
decoration: BoxDecoration(
color: backgroundColor,
border: Border(top: borderSide, bottom: borderSide),
borderRadius: AttachmentList.kDefaultRadius,
),
child: AspectRatio(
aspectRatio:
widget.data[idx]?.metadata['ratio']?.toDouble() ?? 1,
child: ClipRRect(
borderRadius: AttachmentList.kDefaultRadius,
child: AttachmentItem(
data: widget.data[idx],
heroTag: heroTags[idx],
),
),
2024-11-14 14:42:06 +00:00
),
),
2024-11-25 14:41:15 +00:00
Positioned(
right: 12,
bottom: 12,
child: Chip(
label: Text('${idx + 1}/${widget.data.length}'),
),
2024-11-14 14:42:06 +00:00
),
2024-11-25 14:41:15 +00:00
],
),
2024-11-09 04:04:03 +00:00
);
},
separatorBuilder: (context, index) => const Gap(8),
2024-11-25 14:41:15 +00:00
padding: widget.listPadding,
2024-11-09 04:04:03 +00:00
physics: const BouncingScrollPhysics(),
scrollDirection: Axis.horizontal,
),
),
);
}
}
class _AttachmentListScrollBehavior extends MaterialScrollBehavior {
@override
Set<PointerDeviceKind> get dragDevices => {
PointerDeviceKind.touch,
PointerDeviceKind.mouse,
};
}