FurryChat/lib/components/message_content.dart

152 lines
5.3 KiB
Dart
Raw Normal View History

2020-01-03 08:09:14 +00:00
import 'package:bubble/bubble.dart';
import 'package:cached_network_image/cached_network_image.dart';
2020-01-01 18:10:13 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2020-01-20 12:46:39 +00:00
import 'package:fluffychat/i18n/i18n.dart';
2020-01-19 14:07:42 +00:00
import 'package:fluffychat/utils/event_extension.dart';
2020-02-16 11:35:04 +00:00
import 'package:fluffychat/views/image_viewer.dart';
2020-01-03 08:09:14 +00:00
import 'package:flutter/foundation.dart';
2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
2020-01-06 19:36:11 +00:00
import 'package:link_text/link_text.dart';
2020-01-01 18:10:13 +00:00
import 'package:url_launcher/url_launcher.dart';
import 'matrix.dart';
class MessageContent extends StatelessWidget {
final Event event;
final Color textColor;
2020-01-19 14:07:42 +00:00
const MessageContent(this.event, {this.textColor});
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
switch (event.type) {
case EventTypes.Message:
2020-02-21 08:45:37 +00:00
case EventTypes.Encrypted:
case EventTypes.Sticker:
switch (event.messageType) {
case MessageTypes.Image:
case MessageTypes.Sticker:
final int size = 400;
2020-02-16 11:35:04 +00:00
final MxContent content = MxContent(event.content["url"]);
final String src = content.getThumbnail(
Matrix.of(context).client,
width: size * MediaQuery.of(context).devicePixelRatio,
height: size * MediaQuery.of(context).devicePixelRatio,
method: ThumbnailMethod.scale,
);
return Bubble(
padding: BubbleEdges.all(0),
radius: Radius.circular(10),
elevation: 0,
child: InkWell(
2020-02-16 11:35:04 +00:00
onTap: () => ImageViewer.show(context, content),
child: Container(
height: size.toDouble(),
width: size.toDouble(),
child: kIsWeb
? Image.network(
src,
fit: BoxFit.cover,
)
: CachedNetworkImage(
imageUrl: src,
fit: BoxFit.cover,
placeholder: (c, s) => Center(
child: CircularProgressIndicator(),
),
),
),
),
);
case MessageTypes.Audio:
return Container(
width: 200,
child: RaisedButton(
color: Colors.blueGrey,
child: Row(
children: <Widget>[
Icon(Icons.play_arrow, color: Colors.white),
Text(
2020-01-20 12:46:39 +00:00
I18n.of(context).play(event.body),
overflow: TextOverflow.fade,
softWrap: false,
maxLines: 1,
style: TextStyle(color: Colors.white),
),
],
),
2020-02-23 07:49:58 +00:00
onPressed: () => launch(MxContent(event.content["url"])
.getDownloadLink(event.room.client)),
),
);
case MessageTypes.Video:
return Container(
width: 200,
child: RaisedButton(
color: Colors.blueGrey,
child: Row(
children: <Widget>[
Icon(Icons.play_arrow, color: Colors.white),
Text(
2020-01-20 12:46:39 +00:00
I18n.of(context).play(event.body),
overflow: TextOverflow.fade,
softWrap: false,
maxLines: 1,
style: TextStyle(color: Colors.white),
),
],
),
2020-02-23 07:49:58 +00:00
onPressed: () => launch(
MxContent(event.content["url"])
.getDownloadLink(event.room.client),
),
),
);
case MessageTypes.File:
return Container(
width: 200,
child: RaisedButton(
color: Colors.blueGrey,
child: Text(
2020-01-20 12:46:39 +00:00
I18n.of(context).download(event.body),
overflow: TextOverflow.fade,
softWrap: false,
maxLines: 1,
style: TextStyle(color: Colors.white),
),
onPressed: () => launch(
MxContent(event.content["url"])
.getDownloadLink(Matrix.of(context).client),
),
),
);
2020-02-18 07:13:20 +00:00
case MessageTypes.BadEncrypted:
case MessageTypes.Text:
case MessageTypes.Reply:
case MessageTypes.Location:
case MessageTypes.None:
case MessageTypes.Notice:
case MessageTypes.Emote:
2020-02-21 08:45:37 +00:00
default:
2020-01-06 19:36:11 +00:00
return LinkText(
2020-02-20 19:45:38 +00:00
text: event.getLocalizedBody(context, hideReply: true),
2020-01-06 19:36:11 +00:00
textStyle: TextStyle(
color: textColor,
decoration: event.redacted ? TextDecoration.lineThrough : null,
),
);
2020-01-04 08:37:09 +00:00
}
2020-02-21 08:45:37 +00:00
break;
2020-01-19 14:07:42 +00:00
default:
2020-01-02 22:38:46 +00:00
return Text(
2020-01-20 12:46:39 +00:00
I18n.of(context).userSentUnknownEvent(
event.sender.calcDisplayname(), event.typeKey),
2020-01-02 22:38:46 +00:00
style: TextStyle(
color: textColor,
2020-01-19 14:07:42 +00:00
decoration: event.redacted ? TextDecoration.lineThrough : null,
2020-01-02 22:38:46 +00:00
),
);
2020-01-01 18:10:13 +00:00
}
}
}