fluffychat/lib/pages/chat/events/image_bubble.dart

100 lines
2.5 KiB
Dart
Raw Normal View History

2021-10-26 16:50:34 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_blurhash/flutter_blurhash.dart';
import 'package:matrix/matrix.dart';
import 'package:fluffychat/config/app_config.dart';
2021-11-09 20:32:16 +00:00
import 'package:fluffychat/pages/image_viewer/image_viewer.dart';
import 'package:fluffychat/widgets/mxc_image.dart';
2020-04-28 12:11:56 +00:00
class ImageBubble extends StatelessWidget {
2020-04-02 12:05:32 +00:00
final Event event;
2020-05-16 06:02:33 +00:00
final bool tapToView;
2020-05-16 07:16:46 +00:00
final BoxFit fit;
2020-05-20 17:29:26 +00:00
final bool maxSize;
2022-01-29 11:35:03 +00:00
final Color? backgroundColor;
2020-09-03 10:58:54 +00:00
final bool thumbnailOnly;
final bool animated;
2024-03-20 17:38:51 +00:00
final double width;
final double height;
2022-01-29 11:35:03 +00:00
final void Function()? onTap;
final BorderRadius? borderRadius;
2020-04-02 12:05:32 +00:00
2020-05-16 07:16:46 +00:00
const ImageBubble(
this.event, {
this.tapToView = true,
2020-05-20 17:29:26 +00:00
this.maxSize = true,
this.backgroundColor,
this.fit = BoxFit.contain,
2020-09-03 10:58:54 +00:00
this.thumbnailOnly = true,
2021-07-19 16:23:47 +00:00
this.width = 400,
this.height = 300,
this.animated = false,
this.onTap,
this.borderRadius,
super.key,
});
2020-04-02 12:05:32 +00:00
Widget _buildPlaceholder(BuildContext context) {
final String blurHashString =
event.infoMap['xyz.amorgan.blurhash'] is String
? event.infoMap['xyz.amorgan.blurhash']
: 'LEHV6nWB2yk8pyo0adR*.7kCMdnj';
return SizedBox(
2024-03-20 15:15:18 +00:00
width: width,
height: height,
child: BlurHash(
hash: blurHashString,
2024-03-20 17:38:51 +00:00
decodingWidth: width.round(),
decodingHeight: height.round(),
imageFit: fit,
),
);
2020-09-03 10:58:54 +00:00
}
void _onTap(BuildContext context) {
if (onTap != null) {
onTap!();
return;
}
if (!tapToView) return;
showDialog(
2023-08-13 11:41:01 +00:00
context: context,
useRootNavigator: false,
builder: (_) => ImageViewer(event),
);
2020-04-02 12:05:32 +00:00
}
@override
Widget build(BuildContext context) {
final borderRadius =
this.borderRadius ?? BorderRadius.circular(AppConfig.borderRadius);
return Material(
shape: RoundedRectangleBorder(
borderRadius: borderRadius,
2023-12-26 15:43:19 +00:00
side: BorderSide(
color: event.messageType == MessageTypes.Sticker
? Colors.transparent
: Theme.of(context).dividerColor,
),
),
child: InkWell(
onTap: () => _onTap(context),
borderRadius: borderRadius,
child: Hero(
tag: event.eventId,
2024-03-20 17:38:51 +00:00
child: MxcImage(
event: event,
width: width,
height: height,
fit: fit,
animated: animated,
isThumbnail: thumbnailOnly,
placeholder: _buildPlaceholder,
),
2020-04-02 12:05:32 +00:00
),
),
);
}
2021-07-11 12:30:39 +00:00
}