fluffychat/lib/utils/matrix_sdk_extensions.dart/matrix_file_extension.dart

66 lines
1.8 KiB
Dart
Raw Normal View History

2020-03-29 20:13:25 +02:00
import 'dart:io';
2021-07-11 17:12:56 +02:00
import 'package:flutter/material.dart';
2021-10-26 18:50:34 +02:00
2021-07-11 17:12:56 +02:00
import 'package:file_picker_cross/file_picker_cross.dart';
2021-10-26 18:50:34 +02:00
import 'package:matrix/matrix.dart';
import 'package:path_provider/path_provider.dart';
2022-05-06 08:58:59 +02:00
import 'package:share_plus/share_plus.dart';
2021-10-26 18:50:34 +02:00
import 'package:fluffychat/utils/platform_infos.dart';
2020-03-29 20:13:25 +02:00
extension MatrixFileExtension on MatrixFile {
2021-07-11 17:12:56 +02:00
void save(BuildContext context) async {
2022-05-05 09:13:54 +02:00
if (PlatformInfos.isIOS) {
return share(context);
}
2021-07-11 17:12:56 +02:00
final fileName = name.split('/').last;
final file = FilePickerCross(bytes);
await file.exportToStorage(fileName: fileName, share: false);
}
void share(BuildContext context) async {
final fileName = name.split('/').last;
2022-05-06 08:58:59 +02:00
final tmpDirectory = await getTemporaryDirectory();
final path = '${tmpDirectory.path}$fileName';
await File(path).writeAsBytes(bytes);
2022-06-15 13:00:12 +02:00
final box = context.findRenderObject() as RenderBox;
await Share.shareFiles(
[path],
sharePositionOrigin: box.localToGlobal(Offset.zero) & box.size,
);
return;
2020-03-29 20:13:25 +02:00
}
2020-09-04 12:56:25 +02:00
MatrixFile get detectFileType {
if (msgType == MessageTypes.Image) {
return MatrixImageFile(bytes: bytes, name: name);
}
if (msgType == MessageTypes.Video) {
return MatrixVideoFile(bytes: bytes, name: name);
}
if (msgType == MessageTypes.Audio) {
return MatrixAudioFile(bytes: bytes, name: name);
}
return this;
}
String get sizeString {
var size = this.size.toDouble();
if (size < 1000000) {
size = size / 1000;
size = (size * 10).round() / 10;
return '${size.toString()} KB';
} else if (size < 1000000000) {
size = size / 1000000;
size = (size * 10).round() / 10;
return '${size.toString()} MB';
} else {
size = size / 1000000000;
size = (size * 10).round() / 10;
return '${size.toString()} GB';
}
}
2020-03-29 20:13:25 +02:00
}