2020-04-02 14:05:32 +02:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
2020-05-16 08:02:33 +02:00
|
|
|
import 'package:fluffychat/views/image_view.dart';
|
2020-04-02 14:05:32 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2020-09-03 12:58:54 +02:00
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter_blurhash/flutter_blurhash.dart';
|
2020-09-07 17:08:01 +02:00
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
2020-11-17 12:59:34 +01:00
|
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
|
|
|
|
|
|
import '../utils/event_extension.dart';
|
2020-04-28 14:11:56 +02:00
|
|
|
|
2020-04-02 14:05:32 +02:00
|
|
|
class ImageBubble extends StatefulWidget {
|
|
|
|
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;
|
|
|
|
final Color backgroundColor;
|
|
|
|
final double radius;
|
2020-09-03 12:58:54 +02:00
|
|
|
final bool thumbnailOnly;
|
2020-11-17 12:59:34 +01:00
|
|
|
final void Function() onLoaded;
|
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-05-20 19:29:26 +02:00
|
|
|
this.radius = 10.0,
|
2020-09-03 12:58:54 +02:00
|
|
|
this.thumbnailOnly = true,
|
2020-11-17 12:59:34 +01:00
|
|
|
this.onLoaded,
|
2020-05-16 09:16:46 +02:00
|
|
|
Key key,
|
|
|
|
}) : super(key: key);
|
2020-04-02 14:05:32 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
_ImageBubbleState createState() => _ImageBubbleState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ImageBubbleState extends State<ImageBubble> {
|
2020-11-17 12:59:34 +01:00
|
|
|
String thumbnailUrl;
|
|
|
|
String attachmentUrl;
|
|
|
|
MatrixFile _file;
|
|
|
|
MatrixFile _thumbnail;
|
|
|
|
bool _requestedThumbnailOnFailure = false;
|
|
|
|
|
|
|
|
bool get isSvg =>
|
|
|
|
widget.event.attachmentMimetype.split('+').first == 'image/svg';
|
|
|
|
bool get isThumbnailSvg =>
|
|
|
|
widget.event.thumbnailMimetype.split('+').first == 'image/svg';
|
|
|
|
|
|
|
|
MatrixFile get _displayFile => _file ?? _thumbnail;
|
|
|
|
String get displayUrl => widget.thumbnailOnly ? thumbnailUrl : attachmentUrl;
|
|
|
|
|
|
|
|
dynamic _error;
|
2020-09-03 12:58:54 +02:00
|
|
|
|
2020-11-17 12:59:34 +01:00
|
|
|
Future<void> _requestFile({bool getThumbnail = false}) async {
|
|
|
|
try {
|
|
|
|
final res = await widget.event
|
|
|
|
.downloadAndDecryptAttachmentCached(getThumbnail: getThumbnail);
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
if (getThumbnail) {
|
|
|
|
if (mounted) {
|
|
|
|
setState(() => _thumbnail = res);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (widget.onLoaded != null) {
|
|
|
|
widget.onLoaded();
|
|
|
|
}
|
|
|
|
if (mounted) {
|
|
|
|
setState(() => _file = res);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
if (mounted) {
|
|
|
|
setState(() => _error = err);
|
|
|
|
}
|
|
|
|
});
|
2020-09-03 12:58:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-17 12:59:34 +01:00
|
|
|
@override
|
|
|
|
void initState() {
|
2020-12-29 10:43:32 +01:00
|
|
|
thumbnailUrl =
|
|
|
|
widget.event.getAttachmentUrl(getThumbnail: true, animated: true);
|
|
|
|
attachmentUrl = widget.event.getAttachmentUrl(animated: true);
|
2020-11-17 12:59:34 +01:00
|
|
|
if (thumbnailUrl == null) {
|
|
|
|
_requestFile(getThumbnail: true);
|
2020-09-03 12:58:54 +02:00
|
|
|
}
|
2020-11-17 12:59:34 +01:00
|
|
|
if (!widget.thumbnailOnly && attachmentUrl == null) {
|
|
|
|
_requestFile();
|
|
|
|
} else {
|
|
|
|
// if the full attachment is cached, we might as well fetch it anyways.
|
|
|
|
// no need to stick with thumbnail only, since we don't do any networking
|
|
|
|
widget.event.isAttachmentCached().then((cached) {
|
|
|
|
if (cached) {
|
|
|
|
_requestFile();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
super.initState();
|
2020-04-09 10:00:18 +02:00
|
|
|
}
|
|
|
|
|
2020-11-17 12:59:34 +01:00
|
|
|
Widget getErrorWidget() {
|
|
|
|
return Center(
|
|
|
|
child: Text(
|
|
|
|
_error.toString(),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2020-04-02 14:05:32 +02:00
|
|
|
|
2020-11-17 12:59:34 +01:00
|
|
|
Widget getPlaceholderWidget() {
|
|
|
|
Widget blurhash;
|
|
|
|
if (widget.event.infoMap['xyz.amorgan.blurhash'] is String) {
|
|
|
|
final ratio =
|
|
|
|
widget.event.infoMap['w'] is int && widget.event.infoMap['h'] is int
|
|
|
|
? widget.event.infoMap['w'] / widget.event.infoMap['h']
|
|
|
|
: 1.0;
|
|
|
|
var width = 32;
|
|
|
|
var height = 32;
|
|
|
|
if (ratio > 1.0) {
|
|
|
|
height = (width / ratio).round();
|
|
|
|
} else {
|
|
|
|
width = (height * ratio).round();
|
|
|
|
}
|
|
|
|
blurhash = BlurHash(
|
|
|
|
hash: widget.event.infoMap['xyz.amorgan.blurhash'],
|
|
|
|
decodingWidth: width,
|
|
|
|
decodingHeight: height,
|
|
|
|
imageFit: widget.fit,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return Stack(
|
|
|
|
children: <Widget>[
|
|
|
|
if (blurhash != null) blurhash,
|
|
|
|
Center(
|
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
2020-09-03 12:58:54 +02:00
|
|
|
}
|
|
|
|
|
2020-11-17 12:59:34 +01:00
|
|
|
Widget getMemoryWidget() {
|
|
|
|
final isOriginal = _file != null ||
|
|
|
|
widget.event.attachmentOrThumbnailMxcUrl(getThumbnail: true) ==
|
|
|
|
widget.event.attachmentMxcUrl;
|
|
|
|
final key = isOriginal
|
|
|
|
? widget.event.attachmentMxcUrl
|
|
|
|
: widget.event.thumbnailMxcUrl;
|
|
|
|
if (isOriginal ? isSvg : isThumbnailSvg) {
|
|
|
|
return SvgPicture.memory(
|
|
|
|
_displayFile.bytes,
|
|
|
|
key: ValueKey(key),
|
|
|
|
fit: widget.fit,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return Image.memory(
|
|
|
|
_displayFile.bytes,
|
|
|
|
key: ValueKey(key),
|
|
|
|
fit: widget.fit,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget getNetworkWidget() {
|
|
|
|
if (displayUrl == attachmentUrl &&
|
|
|
|
(_requestedThumbnailOnFailure ? isSvg : isThumbnailSvg)) {
|
|
|
|
return SvgPicture.network(
|
|
|
|
displayUrl,
|
|
|
|
key: ValueKey(displayUrl),
|
|
|
|
placeholderBuilder: (context) => getPlaceholderWidget(),
|
|
|
|
fit: widget.fit,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return CachedNetworkImage(
|
|
|
|
// as we change the url on-error we need a key so that the widget actually updates
|
|
|
|
key: ValueKey(displayUrl),
|
|
|
|
imageUrl: displayUrl,
|
|
|
|
placeholder: (context, url) {
|
|
|
|
if (!widget.thumbnailOnly &&
|
|
|
|
displayUrl != thumbnailUrl &&
|
|
|
|
displayUrl == attachmentUrl) {
|
|
|
|
// we have to display the thumbnail while loading
|
|
|
|
return CachedNetworkImage(
|
|
|
|
key: ValueKey(thumbnailUrl),
|
|
|
|
imageUrl: thumbnailUrl,
|
|
|
|
placeholder: (c, u) => getPlaceholderWidget(),
|
|
|
|
fit: widget.fit,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return getPlaceholderWidget();
|
|
|
|
},
|
|
|
|
errorWidget: (context, url, error) {
|
|
|
|
// we can re-request the thumbnail
|
|
|
|
if (!_requestedThumbnailOnFailure) {
|
|
|
|
_requestedThumbnailOnFailure = true;
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
setState(() {
|
|
|
|
thumbnailUrl = widget.event.getAttachmentUrl(
|
2020-12-29 10:43:32 +01:00
|
|
|
getThumbnail: true,
|
|
|
|
useThumbnailMxcUrl: true,
|
|
|
|
animated: true);
|
|
|
|
attachmentUrl = widget.event
|
|
|
|
.getAttachmentUrl(useThumbnailMxcUrl: true, animated: true);
|
2020-11-17 12:59:34 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return getPlaceholderWidget();
|
|
|
|
},
|
|
|
|
fit: widget.fit,
|
|
|
|
);
|
|
|
|
}
|
2020-04-02 14:05:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-11-17 12:59:34 +01:00
|
|
|
Widget content;
|
|
|
|
String key;
|
|
|
|
if (_error != null) {
|
|
|
|
content = getErrorWidget();
|
|
|
|
key = 'error';
|
|
|
|
} else if (_displayFile != null) {
|
|
|
|
content = getMemoryWidget();
|
|
|
|
key = 'memory-' + (content.key as ValueKey).value;
|
|
|
|
} else if (displayUrl != null) {
|
|
|
|
content = getNetworkWidget();
|
|
|
|
key = 'network-' + (content.key as ValueKey).value;
|
|
|
|
} else {
|
|
|
|
content = getPlaceholderWidget();
|
|
|
|
key = 'placeholder';
|
|
|
|
}
|
2020-09-19 16:21:57 +02:00
|
|
|
return ClipRRect(
|
|
|
|
borderRadius: BorderRadius.circular(widget.radius),
|
2020-11-17 12:59:34 +01:00
|
|
|
child: InkWell(
|
|
|
|
onTap: () {
|
|
|
|
if (!widget.tapToView) return;
|
|
|
|
Navigator.of(context).push(
|
2021-01-17 07:51:58 +01:00
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (_) => ImageView(widget.event, onLoaded: () {
|
2020-11-17 12:59:34 +01:00
|
|
|
// If the original file didn't load yet, we want to do that now.
|
|
|
|
// This is so that the original file displays after going on the image viewer,
|
|
|
|
// waiting for it to load, and then hitting back. This ensures that we always
|
|
|
|
// display the best image available, with requiring as little network as possible
|
|
|
|
if (_file == null) {
|
|
|
|
widget.event.isAttachmentCached().then((cached) {
|
|
|
|
if (cached) {
|
|
|
|
_requestFile();
|
|
|
|
}
|
|
|
|
});
|
2020-11-16 11:31:31 +01:00
|
|
|
}
|
2020-11-17 12:59:34 +01:00
|
|
|
}),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
child: Hero(
|
|
|
|
tag: widget.event.eventId,
|
|
|
|
child: AnimatedSwitcher(
|
|
|
|
duration: Duration(milliseconds: 1000),
|
|
|
|
child: Container(
|
|
|
|
key: ValueKey(key),
|
|
|
|
height: widget.maxSize ? 300 : null,
|
|
|
|
width: widget.maxSize ? 400 : null,
|
|
|
|
child: content,
|
|
|
|
),
|
|
|
|
),
|
2020-04-02 14:05:32 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|