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

106 lines
2.6 KiB
Dart
Raw Normal View History

2021-10-26 16:50:34 +00:00
import 'package:flutter/material.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';
2024-03-21 06:36:22 +00:00
import '../../../widgets/blur_hash.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;
final double width;
final double height;
2022-01-29 11:35:03 +00:00
final void Function()? onTap;
final BorderRadius? borderRadius;
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(
width: width,
height: height,
child: BlurHash(
blurhash: blurHashString,
width: width,
height: height,
fit: 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 theme = Theme.of(context);
final borderRadius =
this.borderRadius ?? BorderRadius.circular(AppConfig.borderRadius);
return Material(
color: Colors.transparent,
2024-04-17 07:26:22 +00:00
clipBehavior: Clip.hardEdge,
shape: RoundedRectangleBorder(
borderRadius: borderRadius,
2023-12-26 15:43:19 +00:00
side: BorderSide(
color: event.messageType == MessageTypes.Sticker
2023-12-26 15:43:19 +00:00
? Colors.transparent
: theme.dividerColor,
2023-12-26 15:43:19 +00:00
),
),
child: InkWell(
onTap: () => _onTap(context),
borderRadius: borderRadius,
child: Hero(
tag: event.eventId,
child: MxcImage(
event: event,
width: width,
height: height,
fit: fit,
animated: animated,
isThumbnail: thumbnailOnly,
placeholder: event.messageType == MessageTypes.Sticker
? null
: _buildPlaceholder,
),
2020-04-02 12:05:32 +00:00
),
),
);
}
2021-07-11 12:30:39 +00:00
}