2020-01-01 18:10:13 +00:00
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
2020-02-16 11:35:04 +00:00
|
|
|
import 'package:fluffychat/views/image_viewer.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import 'matrix.dart';
|
|
|
|
|
|
|
|
class ContentBanner extends StatelessWidget {
|
|
|
|
final MxContent mxContent;
|
|
|
|
final double height;
|
|
|
|
final IconData defaultIcon;
|
|
|
|
final bool loading;
|
2020-01-19 14:07:42 +00:00
|
|
|
final Function onEdit;
|
2020-01-01 18:10:13 +00:00
|
|
|
|
|
|
|
const ContentBanner(this.mxContent,
|
|
|
|
{this.height = 400,
|
|
|
|
this.defaultIcon = Icons.people_outline,
|
|
|
|
this.loading = false,
|
2020-01-19 14:07:42 +00:00
|
|
|
this.onEdit,
|
2020-01-01 18:10:13 +00:00
|
|
|
Key key})
|
|
|
|
: super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final mediaQuery = MediaQuery.of(context);
|
|
|
|
final int bannerSize =
|
|
|
|
(mediaQuery.size.width * mediaQuery.devicePixelRatio).toInt();
|
|
|
|
final String src = mxContent.getThumbnail(
|
|
|
|
Matrix.of(context).client,
|
|
|
|
width: bannerSize,
|
|
|
|
height: bannerSize,
|
|
|
|
method: ThumbnailMethod.scale,
|
|
|
|
);
|
2020-01-17 10:08:12 +00:00
|
|
|
return InkWell(
|
2020-01-17 10:42:48 +00:00
|
|
|
onTap: () => mxContent.mxc?.isNotEmpty ?? false
|
2020-02-16 11:35:04 +00:00
|
|
|
? ImageViewer.show(context, mxContent)
|
2020-01-17 10:42:48 +00:00
|
|
|
: null,
|
2020-01-17 10:08:12 +00:00
|
|
|
child: Container(
|
2020-02-16 09:42:59 +00:00
|
|
|
height: 300,
|
2020-01-19 14:07:42 +00:00
|
|
|
alignment: Alignment.center,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Theme.of(context).secondaryHeaderColor,
|
|
|
|
),
|
|
|
|
child: Stack(
|
|
|
|
children: <Widget>[
|
|
|
|
Positioned(
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
top: 0,
|
|
|
|
bottom: 0,
|
2020-02-16 09:42:59 +00:00
|
|
|
child: Opacity(
|
|
|
|
opacity: 0.75,
|
|
|
|
child: !loading
|
|
|
|
? mxContent.mxc?.isNotEmpty ?? false
|
|
|
|
? kIsWeb
|
|
|
|
? Image.network(
|
|
|
|
src,
|
|
|
|
height: 300,
|
|
|
|
fit: BoxFit.cover,
|
|
|
|
)
|
|
|
|
: CachedNetworkImage(
|
|
|
|
imageUrl: src,
|
|
|
|
height: 300,
|
|
|
|
fit: BoxFit.cover,
|
|
|
|
)
|
|
|
|
: Icon(defaultIcon, size: 300)
|
|
|
|
: Icon(defaultIcon, size: 300),
|
|
|
|
),
|
2020-01-19 14:07:42 +00:00
|
|
|
),
|
|
|
|
if (this.onEdit != null)
|
|
|
|
Container(
|
|
|
|
margin: EdgeInsets.all(8),
|
|
|
|
alignment: Alignment.bottomRight,
|
|
|
|
child: FloatingActionButton(
|
|
|
|
mini: true,
|
|
|
|
backgroundColor: Theme.of(context).primaryColor,
|
2020-02-16 12:57:51 +00:00
|
|
|
child: Icon(Icons.camera_alt),
|
2020-01-19 14:07:42 +00:00
|
|
|
onPressed: onEdit,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2020-01-17 10:08:12 +00:00
|
|
|
),
|
2020-01-01 18:10:13 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|