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

111 lines
2.8 KiB
Dart
Raw Normal View History

2021-10-26 18:50:34 +02:00
import 'package:flutter/material.dart';
import 'package:flutter_blurhash/flutter_blurhash.dart';
import 'package:matrix/matrix.dart';
2021-11-09 21:32:16 +01:00
import 'package:fluffychat/pages/image_viewer/image_viewer.dart';
import 'package:fluffychat/widgets/matrix.dart';
import 'package:fluffychat/widgets/mxc_image.dart';
2020-04-28 14:11:56 +02:00
class ImageBubble extends StatelessWidget {
2020-04-02 14:05:32 +02:00
final Event event;
2020-05-16 08:02:33 +02:00
final bool tapToView;
2020-05-16 09:16:46 +02:00
final BoxFit fit;
2020-05-20 19:29:26 +02:00
final bool maxSize;
2022-01-29 12:35:03 +01:00
final Color? backgroundColor;
2020-09-03 12:58:54 +02:00
final bool thumbnailOnly;
final bool animated;
2021-07-19 18:23:47 +02:00
final double width;
final double height;
2022-01-29 12:35:03 +01:00
final void Function()? onTap;
2020-04-02 14:05:32 +02:00
2020-05-16 09:16:46 +02:00
const ImageBubble(
this.event, {
this.tapToView = true,
2020-05-20 19:29:26 +02:00
this.maxSize = true,
this.backgroundColor,
2020-05-16 09:16:46 +02:00
this.fit = BoxFit.cover,
2020-09-03 12:58:54 +02:00
this.thumbnailOnly = true,
2021-07-19 18:23:47 +02:00
this.width = 400,
this.height = 300,
this.animated = false,
this.onTap,
2022-01-29 12:35:03 +01:00
Key? key,
2020-05-16 09:16:46 +02:00
}) : super(key: key);
2020-04-02 14:05:32 +02:00
Widget _buildPlaceholder(BuildContext context) {
if (event.messageType == MessageTypes.Sticker) {
return const Center(
child: CircularProgressIndicator.adaptive(),
);
2020-09-03 12:58:54 +02:00
}
final String blurHashString =
event.infoMap['xyz.amorgan.blurhash'] is String
? event.infoMap['xyz.amorgan.blurhash']
: 'LEHV6nWB2yk8pyo0adR*.7kCMdnj';
final ratio = event.infoMap['w'] is int && event.infoMap['h'] is int
? event.infoMap['w'] / event.infoMap['h']
: 1.0;
var width = 32;
var height = 32;
if (ratio > 1.0) {
height = (width / ratio).round();
} else {
width = (height * ratio).round();
}
return SizedBox(
width: this.width,
height: this.height,
child: BlurHash(
hash: blurHashString,
decodingWidth: width,
decodingHeight: height,
imageFit: fit,
),
);
2020-09-03 12:58:54 +02:00
}
void _onTap(BuildContext context) {
if (onTap != null) {
onTap!();
return;
}
if (!tapToView) return;
showDialog(
context: Matrix.of(context).navigatorContext,
useRootNavigator: false,
builder: (_) => ImageViewer(event),
);
2020-04-02 14:05:32 +02:00
}
@override
Widget build(BuildContext context) {
2021-11-13 20:17:11 +01:00
return InkWell(
onTap: () => _onTap(context),
2021-11-13 20:17:11 +01:00
child: Hero(
tag: event.eventId,
2021-11-13 20:17:11 +01:00
child: AnimatedSwitcher(
duration: const Duration(milliseconds: 1000),
child: Container(
constraints: maxSize
? BoxConstraints(
maxWidth: width,
maxHeight: height,
)
2021-11-13 20:17:11 +01:00
: null,
child: MxcImage(
event: event,
width: width,
height: height,
fit: fit,
animated: animated,
isThumbnail: thumbnailOnly,
placeholder: _buildPlaceholder,
),
),
2020-04-02 14:05:32 +02:00
),
),
);
}
2021-07-11 14:30:39 +02:00
}