2022-04-03 09:32:12 +02:00
|
|
|
import 'dart:ui';
|
|
|
|
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
|
2020-09-07 17:08:01 +02:00
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
|
|
|
|
import 'matrix.dart';
|
|
|
|
|
|
|
|
class ContentBanner extends StatelessWidget {
|
2022-01-29 12:35:03 +01:00
|
|
|
final Uri? mxContent;
|
2020-01-01 19:10:13 +01:00
|
|
|
final double height;
|
|
|
|
final IconData defaultIcon;
|
|
|
|
final bool loading;
|
2022-01-28 18:21:20 +01:00
|
|
|
final void Function()? onEdit;
|
|
|
|
final Client? client;
|
2021-02-03 15:47:51 +01:00
|
|
|
final double opacity;
|
2020-01-01 19:10:13 +01:00
|
|
|
|
2022-01-29 12:35:03 +01:00
|
|
|
const ContentBanner(
|
|
|
|
{this.mxContent,
|
|
|
|
this.height = 400,
|
2021-11-14 13:24:01 +01:00
|
|
|
this.defaultIcon = Icons.people_outlined,
|
2020-01-01 19:10:13 +01:00
|
|
|
this.loading = false,
|
2020-01-19 15:07:42 +01:00
|
|
|
this.onEdit,
|
2021-01-20 20:27:09 +01:00
|
|
|
this.client,
|
2021-02-03 15:47:51 +01:00
|
|
|
this.opacity = 0.75,
|
2022-01-28 18:21:20 +01:00
|
|
|
Key? key})
|
2020-01-01 19:10:13 +01:00
|
|
|
: super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2022-01-28 18:21:20 +01:00
|
|
|
final onEdit = this.onEdit;
|
2020-04-08 12:38:52 +02:00
|
|
|
return Container(
|
2021-02-03 15:47:51 +01:00
|
|
|
height: height,
|
2020-04-08 12:38:52 +02:00
|
|
|
alignment: Alignment.center,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Theme.of(context).secondaryHeaderColor,
|
|
|
|
),
|
|
|
|
child: Stack(
|
|
|
|
children: <Widget>[
|
|
|
|
Positioned(
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
top: 0,
|
|
|
|
bottom: 0,
|
|
|
|
child: Opacity(
|
2021-02-03 15:47:51 +01:00
|
|
|
opacity: opacity,
|
2022-04-03 09:32:12 +02:00
|
|
|
child: (!loading)
|
|
|
|
? LayoutBuilder(builder:
|
|
|
|
(BuildContext context, BoxConstraints constraints) {
|
|
|
|
// #775 don't request new image resolution on every resize
|
|
|
|
// by rounding up to the next multiple of stepSize
|
|
|
|
const stepSize = 300;
|
|
|
|
final bannerSize =
|
|
|
|
constraints.maxWidth * window.devicePixelRatio;
|
|
|
|
final steppedBannerSize =
|
|
|
|
(bannerSize / stepSize).ceil() * stepSize;
|
|
|
|
final src = mxContent?.getThumbnail(
|
|
|
|
client ?? Matrix.of(context).client,
|
|
|
|
width: steppedBannerSize,
|
|
|
|
height: steppedBannerSize,
|
|
|
|
method: ThumbnailMethod.scale,
|
|
|
|
animated: true,
|
|
|
|
);
|
|
|
|
return CachedNetworkImage(
|
|
|
|
imageUrl: src.toString(),
|
|
|
|
height: 300,
|
|
|
|
fit: BoxFit.cover,
|
2022-05-21 12:09:25 +02:00
|
|
|
errorWidget: (c, m, e) => Icon(defaultIcon, size: 200),
|
2022-04-03 09:32:12 +02:00
|
|
|
);
|
|
|
|
})
|
2022-01-28 18:21:20 +01:00
|
|
|
: Icon(defaultIcon, size: 200),
|
2020-01-19 15:07:42 +01:00
|
|
|
),
|
2020-04-08 12:38:52 +02:00
|
|
|
),
|
2020-05-13 15:58:59 +02:00
|
|
|
if (onEdit != null)
|
2020-04-08 12:38:52 +02:00
|
|
|
Container(
|
2021-10-14 18:09:30 +02:00
|
|
|
margin: const EdgeInsets.all(8),
|
2020-04-08 12:38:52 +02:00
|
|
|
alignment: Alignment.bottomRight,
|
|
|
|
child: FloatingActionButton(
|
|
|
|
mini: true,
|
|
|
|
onPressed: onEdit,
|
2021-05-31 19:33:40 +02:00
|
|
|
backgroundColor: Theme.of(context).backgroundColor,
|
2022-01-28 18:21:20 +01:00
|
|
|
foregroundColor: Theme.of(context).textTheme.bodyText1?.color,
|
2021-11-14 13:24:01 +01:00
|
|
|
child: const Icon(Icons.camera_alt_outlined),
|
2020-01-19 15:07:42 +01:00
|
|
|
),
|
2020-04-08 12:38:52 +02:00
|
|
|
),
|
|
|
|
],
|
2020-01-17 11:08:12 +01:00
|
|
|
),
|
2020-01-01 19:10:13 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|