Better attachment list

This commit is contained in:
LittleSheep 2024-11-25 22:41:15 +08:00
parent 731ab97209
commit 41e2b08bcc
5 changed files with 203 additions and 109 deletions

View File

@ -1,16 +1,37 @@
import 'package:dismissible_page/dismissible_page.dart'; import 'package:dismissible_page/dismissible_page.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:photo_view/photo_view.dart'; import 'package:photo_view/photo_view.dart';
import 'package:photo_view/photo_view_gallery.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
import 'package:surface/providers/sn_network.dart'; import 'package:surface/providers/sn_network.dart';
import 'package:surface/types/attachment.dart'; import 'package:surface/types/attachment.dart';
import 'package:surface/widgets/universal_image.dart'; import 'package:surface/widgets/universal_image.dart';
import 'package:uuid/uuid.dart'; import 'package:uuid/uuid.dart';
class AttachmentDetailPopup extends StatelessWidget { class AttachmentZoomView extends StatefulWidget {
final SnAttachment data; final Iterable<SnAttachment> data;
final String? heroTag; final int? initialIndex;
const AttachmentDetailPopup({super.key, required this.data, this.heroTag}); final List<String?>? heroTags;
const AttachmentZoomView({
super.key,
required this.data,
this.initialIndex,
this.heroTags,
});
@override
State<AttachmentZoomView> createState() => _AttachmentZoomViewState();
}
class _AttachmentZoomViewState extends State<AttachmentZoomView> {
late final PageController _pageController =
PageController(initialPage: widget.initialIndex ?? 0);
@override
void dispose() {
_pageController.dispose();
super.dispose();
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
@ -24,18 +45,51 @@ class AttachmentDetailPopup extends StatelessWidget {
direction: DismissiblePageDismissDirection.down, direction: DismissiblePageDismissDirection.down,
backgroundColor: Colors.transparent, backgroundColor: Colors.transparent,
isFullScreen: true, isFullScreen: true,
child: Hero( child: Builder(builder: (context) {
tag: 'attachment-${data.rid}-${heroTag ?? uuid.v4()}', if (widget.data.length == 1) {
child: PhotoView( final heroTag = widget.heroTags?.first ?? uuid.v4();
key: Key('attachment-detail-${data.rid}-$heroTag'), return Hero(
backgroundDecoration: BoxDecoration( tag: 'attachment-${widget.data.first.rid}-$heroTag',
color: Colors.black.withOpacity(0.7), child: PhotoView(
key: Key('attachment-detail-${widget.data.first.rid}-$heroTag'),
backgroundDecoration: BoxDecoration(color: Colors.transparent),
imageProvider: UniversalImage.provider(
sn.getAttachmentUrl(widget.data.first.rid),
),
),
);
}
return PhotoViewGallery.builder(
pageController: _pageController,
scrollPhysics: const BouncingScrollPhysics(),
builder: (context, idx) {
final heroTag = widget.heroTags?.elementAt(idx) ?? uuid.v4();
return PhotoViewGalleryPageOptions(
imageProvider: UniversalImage.provider(
sn.getAttachmentUrl(widget.data.elementAt(idx).rid),
),
heroAttributes: PhotoViewHeroAttributes(
tag: 'attachment-${widget.data.first.rid}-$heroTag',
),
);
},
itemCount: widget.data.length,
loadingBuilder: (context, event) => Center(
child: SizedBox(
width: 20.0,
height: 20.0,
child: CircularProgressIndicator(
value: event == null
? 0
: event.cumulativeBytesLoaded /
(event.expectedTotalBytes ?? 1),
),
),
), ),
imageProvider: UniversalImage.provider( backgroundDecoration: BoxDecoration(color: Colors.transparent),
sn.getAttachmentUrl(data.rid), );
), }),
),
),
); );
} }
} }

View File

@ -1,7 +1,6 @@
import 'dart:ui'; import 'dart:ui';
import 'dart:math' as math; import 'dart:math' as math;
import 'package:dismissible_page/dismissible_page.dart';
import 'package:easy_localization/easy_localization.dart'; import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:gap/gap.dart'; import 'package:gap/gap.dart';
@ -13,20 +12,21 @@ import 'package:provider/provider.dart';
import 'package:styled_widget/styled_widget.dart'; import 'package:styled_widget/styled_widget.dart';
import 'package:surface/providers/sn_network.dart'; import 'package:surface/providers/sn_network.dart';
import 'package:surface/types/attachment.dart'; import 'package:surface/types/attachment.dart';
import 'package:surface/widgets/attachment/attachment_detail.dart';
import 'package:surface/widgets/universal_image.dart'; import 'package:surface/widgets/universal_image.dart';
import 'package:uuid/uuid.dart'; import 'package:uuid/uuid.dart';
class AttachmentItem extends StatelessWidget { class AttachmentItem extends StatelessWidget {
final SnAttachment? data; final SnAttachment? data;
final bool isExpandable; final String? heroTag;
const AttachmentItem({ const AttachmentItem({
super.key, super.key,
required this.data, required this.data,
this.isExpandable = false, required this.heroTag,
}); });
Widget _buildContent(BuildContext context, String heroTag) { Widget _buildContent(BuildContext context) {
final tag = heroTag ?? Uuid().v4();
if (data == null) { if (data == null) {
return const Icon(Symbols.cancel).center(); return const Icon(Symbols.cancel).center();
} }
@ -36,10 +36,10 @@ class AttachmentItem extends StatelessWidget {
switch (tp) { switch (tp) {
case 'image': case 'image':
return Hero( return Hero(
tag: 'attachment-${data!.rid}-$heroTag', tag: 'attachment-${data!.rid}-$tag',
child: AutoResizeUniversalImage( child: AutoResizeUniversalImage(
sn.getAttachmentUrl(data!.rid), sn.getAttachmentUrl(data!.rid),
key: Key('attachment-${data!.rid}-$heroTag'), key: Key('attachment-${data!.rid}-$tag'),
fit: BoxFit.cover, fit: BoxFit.cover,
), ),
); );
@ -60,28 +60,13 @@ class AttachmentItem extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final uuid = Uuid();
final heroTag = uuid.v4();
if (data!.isMature) { if (data!.isMature) {
return _AttachmentItemSensitiveBlur( return _AttachmentItemSensitiveBlur(
child: _buildContent(context, heroTag), child: _buildContent(context),
); );
} }
if (isExpandable) { return _buildContent(context);
return GestureDetector(
child: _buildContent(context, heroTag),
onTap: () {
context.pushTransparentRoute(
AttachmentDetailPopup(data: data!, heroTag: heroTag),
rootNavigator: true,
);
},
);
}
return _buildContent(context, heroTag);
} }
} }

View File

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

View File

@ -66,7 +66,7 @@ class PostItem extends StatelessWidget {
AttachmentList( AttachmentList(
data: data.preload!.attachments!, data: data.preload!.attachments!,
bordered: true, bordered: true,
maxHeight: 520, maxHeight: 480,
listPadding: const EdgeInsets.symmetric(horizontal: 12), listPadding: const EdgeInsets.symmetric(horizontal: 12),
), ),
Container( Container(

View File

@ -92,7 +92,7 @@ class PostMediaPendingList extends StatelessWidget {
icon: Symbols.preview, icon: Symbols.preview,
onSelected: () { onSelected: () {
context.pushTransparentRoute( context.pushTransparentRoute(
AttachmentDetailPopup(data: media.attachment!), AttachmentZoomView(data: [media.attachment!]),
rootNavigator: true, rootNavigator: true,
); );
}, },