Merge branch 'krille/send-file' into 'main'

chore: Display error message on file

See merge request famedly/fluffychat!797
This commit is contained in:
Krille Fear 2022-04-01 09:59:19 +00:00
commit 548a28c8ef
2 changed files with 18 additions and 17 deletions

View file

@ -290,8 +290,6 @@ class Message extends StatelessWidget {
)),
),
row,
if (event.fileSendingStatus != null)
Text(event.fileSendingStatus!.name),
if (event.hasAggregatedEvents(timeline, RelationshipTypes.reaction))
Padding(
padding: EdgeInsets.only(

View file

@ -23,7 +23,6 @@ class SendFileDialog extends StatefulWidget {
class _SendFileDialogState extends State<SendFileDialog> {
bool origImage = false;
bool _isSending = false;
/// Images smaller than 20kb don't need compression.
static const int minSizeToCompress = 20 * 1024;
@ -32,14 +31,27 @@ class _SendFileDialogState extends State<SendFileDialog> {
var file = widget.file;
MatrixImageFile? thumbnail;
if (file is MatrixVideoFile && file.bytes.length > minSizeToCompress) {
file = await file.resizeVideo();
thumbnail = await file.getVideoThumbnail();
await showFutureLoadingDialog(
context: context,
future: () async {
file = await file.resizeVideo();
thumbnail = await file.getVideoThumbnail();
});
}
widget.room.sendFileEvent(
final scaffoldMessenger = ScaffoldMessenger.of(context);
widget.room
.sendFileEvent(
file,
thumbnail: thumbnail,
shrinkImageMaxDimension: origImage ? null : 1600,
);
)
.catchError((e) {
scaffoldMessenger.showSnackBar(
SnackBar(content: Text(e.toLocalizedString())),
);
});
Navigator.of(context, rootNavigator: false).pop();
return;
}
@ -91,16 +103,7 @@ class _SendFileDialogState extends State<SendFileDialog> {
child: Text(L10n.of(context)!.cancel),
),
TextButton(
onPressed: _isSending
? null
: () async {
setState(() {
_isSending = true;
});
await showFutureLoadingDialog(
context: context, future: () => _send());
Navigator.of(context, rootNavigator: false).pop();
},
onPressed: _send,
child: Text(L10n.of(context)!.send),
),
],