mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
74 lines
2.0 KiB
Dart
74 lines
2.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:matrix/matrix.dart';
|
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/event_extension.dart';
|
|
|
|
class MessageDownloadContent extends StatelessWidget {
|
|
final Event event;
|
|
final Color textColor;
|
|
|
|
const MessageDownloadContent(this.event, this.textColor, {Key? key})
|
|
: super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final filename = event.content.tryGet<String>('filename') ?? event.body;
|
|
final filetype = (filename.contains('.')
|
|
? filename.split('.').last.toUpperCase()
|
|
: event.content
|
|
.tryGetMap<String, dynamic>('info')
|
|
?.tryGet<String>('mimetype')
|
|
?.toUpperCase() ??
|
|
'UNKNOWN');
|
|
final sizeString = event.sizeString;
|
|
return InkWell(
|
|
onTap: () => event.saveFile(context),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: <Widget>[
|
|
Row(
|
|
children: [
|
|
Icon(
|
|
Icons.file_download_outlined,
|
|
color: textColor,
|
|
),
|
|
const SizedBox(width: 8),
|
|
Expanded(
|
|
child: Text(
|
|
filename,
|
|
maxLines: 1,
|
|
style: TextStyle(
|
|
color: textColor,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const Divider(),
|
|
Row(
|
|
children: [
|
|
Text(
|
|
filetype,
|
|
style: TextStyle(
|
|
color: textColor.withAlpha(150),
|
|
),
|
|
),
|
|
const Spacer(),
|
|
if (sizeString != null)
|
|
Text(
|
|
sizeString,
|
|
style: TextStyle(
|
|
color: textColor.withAlpha(150),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|