2020-01-03 08:09:14 +00:00
|
|
|
import 'package:bubble/bubble.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
2020-03-15 10:27:51 +00:00
|
|
|
import 'package:fluffychat/components/audio_player.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-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';
|
2020-03-29 18:13:25 +00:00
|
|
|
import 'package:fluffychat/utils/matrix_file_extension.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
|
|
|
|
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) {
|
2020-01-04 12:53:49 +00:00
|
|
|
case EventTypes.Message:
|
2020-02-21 08:45:37 +00:00
|
|
|
case EventTypes.Encrypted:
|
2020-01-04 12:53:49 +00:00
|
|
|
case EventTypes.Sticker:
|
2020-03-29 18:13:25 +00:00
|
|
|
switch (event.messageType) {
|
2020-01-04 12:53:49 +00:00
|
|
|
case MessageTypes.Image:
|
|
|
|
case MessageTypes.Sticker:
|
|
|
|
final int size = 400;
|
|
|
|
return Bubble(
|
|
|
|
padding: BubbleEdges.all(0),
|
|
|
|
radius: Radius.circular(10),
|
|
|
|
elevation: 0,
|
2020-03-29 18:13:25 +00:00
|
|
|
child: Container(
|
|
|
|
height: size.toDouble(),
|
|
|
|
width: size.toDouble(),
|
|
|
|
child: FutureBuilder<MatrixFile>(
|
|
|
|
future: event.downloadAndDecryptAttachment(),
|
|
|
|
builder: (BuildContext context, snapshot) {
|
|
|
|
if (snapshot.hasError) {
|
|
|
|
return Center(
|
|
|
|
child: Text(
|
|
|
|
snapshot.error.toString(),
|
2020-02-16 11:35:04 +00:00
|
|
|
),
|
2020-03-29 18:13:25 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
if (snapshot.hasData) {
|
|
|
|
return InkWell(
|
|
|
|
onTap: () => snapshot.data.open(),
|
|
|
|
child: Image.memory(snapshot.data.bytes),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return Center(
|
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
);
|
|
|
|
},
|
2020-01-04 12:53:49 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
case MessageTypes.Audio:
|
2020-03-15 10:27:51 +00:00
|
|
|
return AudioPlayer(
|
2020-03-29 18:13:25 +00:00
|
|
|
event,
|
2020-03-15 10:27:51 +00:00
|
|
|
color: textColor,
|
|
|
|
);
|
2020-03-13 20:58:48 +00:00
|
|
|
case MessageTypes.Video:
|
|
|
|
case MessageTypes.File:
|
2020-01-17 10:08:12 +00:00
|
|
|
return Container(
|
2020-03-13 20:58:48 +00:00
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
|
|
|
RaisedButton(
|
2020-03-29 10:06:25 +00:00
|
|
|
color: Colors.blueGrey,
|
|
|
|
child: Text(
|
|
|
|
I18n.of(context).downloadFile,
|
|
|
|
overflow: TextOverflow.fade,
|
|
|
|
softWrap: false,
|
|
|
|
maxLines: 1,
|
|
|
|
style: TextStyle(color: Colors.white),
|
|
|
|
),
|
|
|
|
onPressed: () async {
|
|
|
|
if (kIsWeb) {
|
|
|
|
if (event.room.encrypted) {
|
|
|
|
Scaffold.of(context).showSnackBar(
|
|
|
|
SnackBar(
|
|
|
|
content:
|
|
|
|
Text(I18n.of(context).notSupportedInWeb),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
await launch(
|
|
|
|
MxContent(event.content["url"])
|
|
|
|
.getDownloadLink(event.room.client),
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2020-03-29 18:13:25 +00:00
|
|
|
final MatrixFile matrixFile = await Matrix.of(context)
|
2020-03-29 10:06:25 +00:00
|
|
|
.tryRequestWithLoadingDialog(
|
|
|
|
event.downloadAndDecryptAttachment(),
|
|
|
|
);
|
2020-03-29 18:13:25 +00:00
|
|
|
matrixFile.open();
|
2020-03-29 10:06:25 +00:00
|
|
|
}),
|
2020-03-13 21:04:32 +00:00
|
|
|
Text(
|
|
|
|
"- " +
|
|
|
|
(event.content.containsKey("filename")
|
|
|
|
? event.content["filename"]
|
|
|
|
: event.body),
|
|
|
|
style: TextStyle(
|
|
|
|
color: textColor,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
),
|
2020-03-13 20:58:48 +00:00
|
|
|
if (event.sizeString != null)
|
2020-01-17 10:08:12 +00:00
|
|
|
Text(
|
2020-03-13 21:04:32 +00:00
|
|
|
"- " + event.sizeString,
|
2020-03-13 20:58:48 +00:00
|
|
|
style: TextStyle(
|
|
|
|
color: textColor,
|
2020-03-13 21:04:32 +00:00
|
|
|
fontWeight: FontWeight.bold,
|
2020-03-13 20:58:48 +00:00
|
|
|
),
|
2020-01-17 10:08:12 +00:00
|
|
|
),
|
2020-03-13 20:58:48 +00:00
|
|
|
],
|
2020-01-04 12:53:49 +00:00
|
|
|
),
|
|
|
|
);
|
2020-02-18 07:13:20 +00:00
|
|
|
case MessageTypes.BadEncrypted:
|
2020-01-04 12:53:49 +00:00
|
|
|
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(
|
2020-01-04 12:53:49 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|