separated attachment picker
This commit is contained in:
@@ -364,7 +364,6 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
Command? _chosenCommand;
|
Command? _chosenCommand;
|
||||||
bool _actionsShrunk = false;
|
bool _actionsShrunk = false;
|
||||||
bool _openFilePickerSection = false;
|
bool _openFilePickerSection = false;
|
||||||
int _filePickerIndex = 0;
|
|
||||||
|
|
||||||
/// The editing controller passed to the input TextField
|
/// The editing controller passed to the input TextField
|
||||||
late final MessageInputController messageInputController =
|
late final MessageInputController messageInputController =
|
||||||
@@ -954,53 +953,6 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildFilePickerSection() {
|
Widget _buildFilePickerSection() {
|
||||||
final _attachmentContainsFile =
|
|
||||||
messageInputController.attachments.any((it) => it.type == 'file');
|
|
||||||
|
|
||||||
final attachmentLimitCrossed =
|
|
||||||
messageInputController.attachments.length >= widget.attachmentLimit;
|
|
||||||
|
|
||||||
Color _getIconColor(int index) {
|
|
||||||
final streamChatThemeData = _streamChatTheme;
|
|
||||||
switch (index) {
|
|
||||||
case 0:
|
|
||||||
return messageInputController.attachments.isEmpty
|
|
||||||
? streamChatThemeData.colorTheme.accentPrimary
|
|
||||||
: (!_attachmentContainsFile
|
|
||||||
? streamChatThemeData.colorTheme.accentPrimary
|
|
||||||
: streamChatThemeData.colorTheme.textHighEmphasis
|
|
||||||
.withOpacity(0.2));
|
|
||||||
case 1:
|
|
||||||
return _attachmentContainsFile
|
|
||||||
? streamChatThemeData.colorTheme.accentPrimary
|
|
||||||
: (messageInputController.attachments.isEmpty
|
|
||||||
? streamChatThemeData.colorTheme.textHighEmphasis
|
|
||||||
.withOpacity(0.5)
|
|
||||||
: streamChatThemeData.colorTheme.textHighEmphasis
|
|
||||||
.withOpacity(0.2));
|
|
||||||
case 2:
|
|
||||||
return attachmentLimitCrossed
|
|
||||||
? streamChatThemeData.colorTheme.textHighEmphasis.withOpacity(0.2)
|
|
||||||
: _attachmentContainsFile &&
|
|
||||||
messageInputController.attachments.isNotEmpty
|
|
||||||
? streamChatThemeData.colorTheme.textHighEmphasis
|
|
||||||
.withOpacity(0.2)
|
|
||||||
: streamChatThemeData.colorTheme.textHighEmphasis
|
|
||||||
.withOpacity(0.5);
|
|
||||||
case 3:
|
|
||||||
return attachmentLimitCrossed
|
|
||||||
? streamChatThemeData.colorTheme.textHighEmphasis.withOpacity(0.2)
|
|
||||||
: _attachmentContainsFile &&
|
|
||||||
messageInputController.attachments.isNotEmpty
|
|
||||||
? streamChatThemeData.colorTheme.textHighEmphasis
|
|
||||||
.withOpacity(0.2)
|
|
||||||
: streamChatThemeData.colorTheme.textHighEmphasis
|
|
||||||
.withOpacity(0.5);
|
|
||||||
default:
|
|
||||||
return Colors.black;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_openFilePickerSection && widget.attachmentsPickerBuilder != null) {
|
if (_openFilePickerSection && widget.attachmentsPickerBuilder != null) {
|
||||||
return widget.attachmentsPickerBuilder!(
|
return widget.attachmentsPickerBuilder!(
|
||||||
context,
|
context,
|
||||||
@@ -1008,191 +960,25 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return AnimatedContainer(
|
return StreamAttachmentPicker(
|
||||||
duration: _openFilePickerSection
|
messageInputController: messageInputController,
|
||||||
? const Duration(milliseconds: 300)
|
onFilePicked: pickFile,
|
||||||
: const Duration(),
|
isOpen: _openFilePickerSection,
|
||||||
curve: Curves.easeOut,
|
pickerSize: _openFilePickerSection ? _kMinMediaPickerSize : 0,
|
||||||
height: _openFilePickerSection ? _kMinMediaPickerSize : 0,
|
attachmentLimit: widget.attachmentLimit,
|
||||||
child: SingleChildScrollView(
|
onAttachmentLimitExceeded: widget.onAttachmentLimitExceed,
|
||||||
child: SizedBox(
|
maxAttachmentSize: widget.maxAttachmentSize,
|
||||||
height: _kMinMediaPickerSize,
|
compressedVideoQuality: widget.compressedVideoQuality,
|
||||||
child: Material(
|
compressedVideoFrameRate: widget.compressedVideoFrameRate,
|
||||||
color: _streamChatTheme.colorTheme.inputBg,
|
onChangeInputState: (val) {
|
||||||
child: Column(
|
setState(() {
|
||||||
mainAxisSize: MainAxisSize.min,
|
_inputEnabled = val;
|
||||||
children: [
|
});
|
||||||
Row(
|
},
|
||||||
children: [
|
onError: _showErrorAlert,
|
||||||
IconButton(
|
|
||||||
icon: StreamSvgIcon.pictures(
|
|
||||||
color: _getIconColor(0),
|
|
||||||
),
|
|
||||||
onPressed: _attachmentContainsFile &&
|
|
||||||
messageInputController.attachments.isNotEmpty
|
|
||||||
? null
|
|
||||||
: () {
|
|
||||||
setState(() {
|
|
||||||
_filePickerIndex = 0;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
),
|
|
||||||
IconButton(
|
|
||||||
iconSize: 32,
|
|
||||||
icon: StreamSvgIcon.files(
|
|
||||||
color: _getIconColor(1),
|
|
||||||
),
|
|
||||||
onPressed: !_attachmentContainsFile &&
|
|
||||||
messageInputController.attachments.isNotEmpty
|
|
||||||
? null
|
|
||||||
: () {
|
|
||||||
pickFile(DefaultAttachmentTypes.file);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
IconButton(
|
|
||||||
icon: StreamSvgIcon.camera(
|
|
||||||
color: _getIconColor(2),
|
|
||||||
),
|
|
||||||
onPressed: attachmentLimitCrossed ||
|
|
||||||
(_attachmentContainsFile &&
|
|
||||||
messageInputController.attachments.isNotEmpty)
|
|
||||||
? null
|
|
||||||
: () {
|
|
||||||
pickFile(
|
|
||||||
DefaultAttachmentTypes.image,
|
|
||||||
camera: true,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
IconButton(
|
|
||||||
padding: const EdgeInsets.all(0),
|
|
||||||
icon: StreamSvgIcon.record(
|
|
||||||
color: _getIconColor(3),
|
|
||||||
),
|
|
||||||
onPressed: attachmentLimitCrossed ||
|
|
||||||
(_attachmentContainsFile &&
|
|
||||||
messageInputController.attachments.isNotEmpty)
|
|
||||||
? null
|
|
||||||
: () {
|
|
||||||
pickFile(
|
|
||||||
DefaultAttachmentTypes.video,
|
|
||||||
camera: true,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
DecoratedBox(
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: _streamChatTheme.colorTheme.barsBg,
|
|
||||||
borderRadius: const BorderRadius.only(
|
|
||||||
topLeft: Radius.circular(16),
|
|
||||||
topRight: Radius.circular(16),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
child: Center(
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.all(8),
|
|
||||||
child: Container(
|
|
||||||
width: 40,
|
|
||||||
height: 4,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: _streamChatTheme.colorTheme.inputBg,
|
|
||||||
borderRadius: BorderRadius.circular(4),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
if (_openFilePickerSection)
|
|
||||||
Expanded(
|
|
||||||
child: DecoratedBox(
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: _streamChatTheme.colorTheme.barsBg,
|
|
||||||
borderRadius: BorderRadius.circular(8),
|
|
||||||
),
|
|
||||||
child: _PickerWidget(
|
|
||||||
filePickerIndex: _filePickerIndex,
|
|
||||||
streamChatTheme: _streamChatTheme,
|
|
||||||
containsFile: _attachmentContainsFile,
|
|
||||||
selectedMedias: messageInputController.attachments
|
|
||||||
.map((e) => e.id)
|
|
||||||
.toList(),
|
|
||||||
onAddMoreFilesClick: pickFile,
|
|
||||||
onMediaSelected: (media) {
|
|
||||||
if (messageInputController.attachments
|
|
||||||
.any((e) => e.id == media.id)) {
|
|
||||||
setState(() => messageInputController.attachments
|
|
||||||
.removeWhere((e) => e.id == media.id));
|
|
||||||
} else {
|
|
||||||
_addAssetAttachment(media);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _addAssetAttachment(AssetEntity medium) async {
|
|
||||||
final mediaFile = await medium.originFile.timeout(
|
|
||||||
const Duration(seconds: 5),
|
|
||||||
onTimeout: () => medium.originFile,
|
|
||||||
);
|
|
||||||
|
|
||||||
if (mediaFile == null) return;
|
|
||||||
|
|
||||||
var file = AttachmentFile(
|
|
||||||
path: mediaFile.path,
|
|
||||||
size: await mediaFile.length(),
|
|
||||||
bytes: mediaFile.readAsBytesSync(),
|
|
||||||
);
|
|
||||||
|
|
||||||
if (file.size! > widget.maxAttachmentSize) {
|
|
||||||
if (medium.type == AssetType.video && file.path != null) {
|
|
||||||
final mediaInfo = await (VideoService.compressVideo(
|
|
||||||
file.path!,
|
|
||||||
frameRate: widget.compressedVideoFrameRate,
|
|
||||||
quality: widget.compressedVideoQuality,
|
|
||||||
) as FutureOr<MediaInfo>);
|
|
||||||
|
|
||||||
if (mediaInfo.filesize! > widget.maxAttachmentSize) {
|
|
||||||
_showErrorAlert(
|
|
||||||
context.translations.fileTooLargeAfterCompressionError(
|
|
||||||
widget.maxAttachmentSize / (1024 * 1024),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
file = AttachmentFile(
|
|
||||||
name: file.name,
|
|
||||||
size: mediaInfo.filesize,
|
|
||||||
bytes: await mediaInfo.file?.readAsBytes(),
|
|
||||||
path: mediaInfo.path,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
_showErrorAlert(context.translations.fileTooLargeError(
|
|
||||||
widget.maxAttachmentSize / (1024 * 1024),
|
|
||||||
));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
setState(() {
|
|
||||||
final attachment = Attachment(
|
|
||||||
id: medium.id,
|
|
||||||
file: file,
|
|
||||||
type: medium.type == AssetType.image ? 'image' : 'video',
|
|
||||||
);
|
|
||||||
_addAttachments([attachment]);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildMentionsOverlayEntry() {
|
Widget _buildMentionsOverlayEntry() {
|
||||||
if (messageInputController.selectionStart < 0) {
|
if (messageInputController.selectionStart < 0) {
|
||||||
return const Offstage();
|
return const Offstage();
|
||||||
@@ -1942,113 +1728,3 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
super.didChangeDependencies();
|
super.didChangeDependencies();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class _PickerWidget extends StatefulWidget {
|
|
||||||
const _PickerWidget({
|
|
||||||
Key? key,
|
|
||||||
required this.filePickerIndex,
|
|
||||||
required this.containsFile,
|
|
||||||
required this.selectedMedias,
|
|
||||||
required this.onAddMoreFilesClick,
|
|
||||||
required this.onMediaSelected,
|
|
||||||
required this.streamChatTheme,
|
|
||||||
}) : super(key: key);
|
|
||||||
|
|
||||||
final int filePickerIndex;
|
|
||||||
final bool containsFile;
|
|
||||||
final List<String> selectedMedias;
|
|
||||||
final void Function(DefaultAttachmentTypes) onAddMoreFilesClick;
|
|
||||||
final void Function(AssetEntity) onMediaSelected;
|
|
||||||
final StreamChatThemeData streamChatTheme;
|
|
||||||
|
|
||||||
@override
|
|
||||||
_PickerWidgetState createState() => _PickerWidgetState();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _PickerWidgetState extends State<_PickerWidget> {
|
|
||||||
Future<bool>? requestPermission;
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
super.initState();
|
|
||||||
requestPermission = PhotoManager.requestPermission();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
if (widget.filePickerIndex != 0) {
|
|
||||||
return const Offstage();
|
|
||||||
}
|
|
||||||
return FutureBuilder<bool>(
|
|
||||||
future: requestPermission,
|
|
||||||
builder: (context, snapshot) {
|
|
||||||
if (!snapshot.hasData) {
|
|
||||||
return const Offstage();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (snapshot.data!) {
|
|
||||||
if (widget.containsFile) {
|
|
||||||
return GestureDetector(
|
|
||||||
onTap: () {
|
|
||||||
widget.onAddMoreFilesClick(DefaultAttachmentTypes.file);
|
|
||||||
},
|
|
||||||
child: Container(
|
|
||||||
constraints: const BoxConstraints.expand(),
|
|
||||||
color: widget.streamChatTheme.colorTheme.inputBg,
|
|
||||||
alignment: Alignment.center,
|
|
||||||
child: Text(
|
|
||||||
context.translations.addMoreFilesLabel,
|
|
||||||
style: TextStyle(
|
|
||||||
color: widget.streamChatTheme.colorTheme.accentPrimary,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return MediaListView(
|
|
||||||
selectedIds: widget.selectedMedias,
|
|
||||||
onSelect: widget.onMediaSelected,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return InkWell(
|
|
||||||
onTap: () async {
|
|
||||||
PhotoManager.openSetting();
|
|
||||||
},
|
|
||||||
child: Container(
|
|
||||||
color: widget.streamChatTheme.colorTheme.inputBg,
|
|
||||||
child: Column(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
||||||
children: [
|
|
||||||
SvgPicture.asset(
|
|
||||||
'svgs/icon_picture_empty_state.svg',
|
|
||||||
package: 'stream_chat_flutter',
|
|
||||||
height: 140,
|
|
||||||
color: widget.streamChatTheme.colorTheme.disabled,
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
context.translations.enablePhotoAndVideoAccessMessage,
|
|
||||||
style: widget.streamChatTheme.textTheme.body.copyWith(
|
|
||||||
color: widget.streamChatTheme.colorTheme.textLowEmphasis,
|
|
||||||
),
|
|
||||||
textAlign: TextAlign.center,
|
|
||||||
),
|
|
||||||
const SizedBox(height: 6),
|
|
||||||
Center(
|
|
||||||
child: Text(
|
|
||||||
context.translations.allowGalleryAccessMessage,
|
|
||||||
style: widget.streamChatTheme.textTheme.bodyBold.copyWith(
|
|
||||||
color: widget.streamChatTheme.colorTheme.accentPrimary,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import 'package:stream_chat_flutter/stream_chat_flutter.dart';
|
|||||||
|
|
||||||
/// Button for showing visual component of slow mode.
|
/// Button for showing visual component of slow mode.
|
||||||
class CountdownButton extends StatelessWidget {
|
class CountdownButton extends StatelessWidget {
|
||||||
|
|
||||||
/// Constructor for creating [CountdownButton].
|
/// Constructor for creating [CountdownButton].
|
||||||
const CountdownButton({
|
const CountdownButton({
|
||||||
Key? key,
|
Key? key,
|
||||||
|
|||||||
@@ -0,0 +1,428 @@
|
|||||||
|
import 'dart:async';
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_svg/flutter_svg.dart';
|
||||||
|
import 'package:image_picker/image_picker.dart';
|
||||||
|
import 'package:photo_manager/photo_manager.dart';
|
||||||
|
import 'package:stream_chat_flutter/src/extension.dart';
|
||||||
|
import 'package:stream_chat_flutter/src/media_list_view.dart';
|
||||||
|
import 'package:stream_chat_flutter/src/video_service.dart';
|
||||||
|
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
|
||||||
|
import 'package:video_compress/video_compress.dart';
|
||||||
|
|
||||||
|
typedef FilePickerCallback = void Function(
|
||||||
|
DefaultAttachmentTypes fileType, {
|
||||||
|
bool camera,
|
||||||
|
});
|
||||||
|
|
||||||
|
class StreamAttachmentPicker extends StatefulWidget {
|
||||||
|
final bool isOpen;
|
||||||
|
final double pickerSize;
|
||||||
|
final MessageInputController messageInputController;
|
||||||
|
final int attachmentLimit;
|
||||||
|
final AttachmentLimitExceedListener? onAttachmentLimitExceeded;
|
||||||
|
final ValueChanged<bool>? onChangeInputState;
|
||||||
|
final ValueChanged<String>? onError;
|
||||||
|
final FilePickerCallback onFilePicked;
|
||||||
|
|
||||||
|
/// Video quality to use when compressing the videos
|
||||||
|
final VideoQuality compressedVideoQuality;
|
||||||
|
|
||||||
|
/// Frame rate to use when compressing the videos
|
||||||
|
final int compressedVideoFrameRate;
|
||||||
|
|
||||||
|
/// Max attachment size in bytes
|
||||||
|
/// Defaults to 20 MB
|
||||||
|
/// do not set it if you're using our default CDN
|
||||||
|
final int maxAttachmentSize;
|
||||||
|
|
||||||
|
const StreamAttachmentPicker({
|
||||||
|
Key? key,
|
||||||
|
required this.messageInputController,
|
||||||
|
required this.onFilePicked,
|
||||||
|
this.isOpen = false,
|
||||||
|
this.pickerSize = 360.0,
|
||||||
|
this.attachmentLimit = 10,
|
||||||
|
this.onAttachmentLimitExceeded,
|
||||||
|
this.maxAttachmentSize = 20971520,
|
||||||
|
this.compressedVideoQuality = VideoQuality.DefaultQuality,
|
||||||
|
this.compressedVideoFrameRate = 30,
|
||||||
|
this.onChangeInputState,
|
||||||
|
this.onError,
|
||||||
|
}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<StreamAttachmentPicker> createState() => _StreamAttachmentPickerState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _StreamAttachmentPickerState extends State<StreamAttachmentPicker> {
|
||||||
|
int _filePickerIndex = 0;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
var _streamChatTheme = StreamChatTheme.of(context);
|
||||||
|
var messageInputController = widget.messageInputController;
|
||||||
|
|
||||||
|
final _attachmentContainsFile =
|
||||||
|
messageInputController.attachments.any((it) => it.type == 'file');
|
||||||
|
|
||||||
|
final attachmentLimitCrossed =
|
||||||
|
messageInputController.attachments.length >= widget.attachmentLimit;
|
||||||
|
|
||||||
|
Color _getIconColor(int index) {
|
||||||
|
final streamChatThemeData = _streamChatTheme;
|
||||||
|
switch (index) {
|
||||||
|
case 0:
|
||||||
|
return messageInputController.attachments.isEmpty
|
||||||
|
? streamChatThemeData.colorTheme.accentPrimary
|
||||||
|
: (!_attachmentContainsFile
|
||||||
|
? streamChatThemeData.colorTheme.accentPrimary
|
||||||
|
: streamChatThemeData.colorTheme.textHighEmphasis
|
||||||
|
.withOpacity(0.2));
|
||||||
|
case 1:
|
||||||
|
return _attachmentContainsFile
|
||||||
|
? streamChatThemeData.colorTheme.accentPrimary
|
||||||
|
: (messageInputController.attachments.isEmpty
|
||||||
|
? streamChatThemeData.colorTheme.textHighEmphasis
|
||||||
|
.withOpacity(0.5)
|
||||||
|
: streamChatThemeData.colorTheme.textHighEmphasis
|
||||||
|
.withOpacity(0.2));
|
||||||
|
case 2:
|
||||||
|
return attachmentLimitCrossed
|
||||||
|
? streamChatThemeData.colorTheme.textHighEmphasis.withOpacity(0.2)
|
||||||
|
: _attachmentContainsFile &&
|
||||||
|
messageInputController.attachments.isNotEmpty
|
||||||
|
? streamChatThemeData.colorTheme.textHighEmphasis
|
||||||
|
.withOpacity(0.2)
|
||||||
|
: streamChatThemeData.colorTheme.textHighEmphasis
|
||||||
|
.withOpacity(0.5);
|
||||||
|
case 3:
|
||||||
|
return attachmentLimitCrossed
|
||||||
|
? streamChatThemeData.colorTheme.textHighEmphasis.withOpacity(0.2)
|
||||||
|
: _attachmentContainsFile &&
|
||||||
|
messageInputController.attachments.isNotEmpty
|
||||||
|
? streamChatThemeData.colorTheme.textHighEmphasis
|
||||||
|
.withOpacity(0.2)
|
||||||
|
: streamChatThemeData.colorTheme.textHighEmphasis
|
||||||
|
.withOpacity(0.5);
|
||||||
|
default:
|
||||||
|
return Colors.black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return AnimatedContainer(
|
||||||
|
duration:
|
||||||
|
widget.isOpen ? const Duration(milliseconds: 300) : const Duration(),
|
||||||
|
curve: Curves.easeOut,
|
||||||
|
height: widget.isOpen ? widget.pickerSize : 0,
|
||||||
|
child: SingleChildScrollView(
|
||||||
|
child: SizedBox(
|
||||||
|
height: widget.pickerSize,
|
||||||
|
child: Material(
|
||||||
|
color: _streamChatTheme.colorTheme.inputBg,
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
IconButton(
|
||||||
|
icon: StreamSvgIcon.pictures(
|
||||||
|
color: _getIconColor(0),
|
||||||
|
),
|
||||||
|
onPressed: _attachmentContainsFile &&
|
||||||
|
messageInputController.attachments.isNotEmpty
|
||||||
|
? null
|
||||||
|
: () {
|
||||||
|
setState(() {
|
||||||
|
_filePickerIndex = 0;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
iconSize: 32,
|
||||||
|
icon: StreamSvgIcon.files(
|
||||||
|
color: _getIconColor(1),
|
||||||
|
),
|
||||||
|
onPressed: !_attachmentContainsFile &&
|
||||||
|
messageInputController.attachments.isNotEmpty
|
||||||
|
? null
|
||||||
|
: () {
|
||||||
|
widget.onFilePicked(DefaultAttachmentTypes.file);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
icon: StreamSvgIcon.camera(
|
||||||
|
color: _getIconColor(2),
|
||||||
|
),
|
||||||
|
onPressed: attachmentLimitCrossed ||
|
||||||
|
(_attachmentContainsFile &&
|
||||||
|
messageInputController.attachments.isNotEmpty)
|
||||||
|
? null
|
||||||
|
: () {
|
||||||
|
widget.onFilePicked(
|
||||||
|
DefaultAttachmentTypes.image,
|
||||||
|
camera: true,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
padding: const EdgeInsets.all(0),
|
||||||
|
icon: StreamSvgIcon.record(
|
||||||
|
color: _getIconColor(3),
|
||||||
|
),
|
||||||
|
onPressed: attachmentLimitCrossed ||
|
||||||
|
(_attachmentContainsFile &&
|
||||||
|
messageInputController.attachments.isNotEmpty)
|
||||||
|
? null
|
||||||
|
: () {
|
||||||
|
widget.onFilePicked(
|
||||||
|
DefaultAttachmentTypes.video,
|
||||||
|
camera: true,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
DecoratedBox(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: _streamChatTheme.colorTheme.barsBg,
|
||||||
|
borderRadius: const BorderRadius.only(
|
||||||
|
topLeft: Radius.circular(16),
|
||||||
|
topRight: Radius.circular(16),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: Center(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(8),
|
||||||
|
child: Container(
|
||||||
|
width: 40,
|
||||||
|
height: 4,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: _streamChatTheme.colorTheme.inputBg,
|
||||||
|
borderRadius: BorderRadius.circular(4),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (widget.isOpen)
|
||||||
|
Expanded(
|
||||||
|
child: DecoratedBox(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: _streamChatTheme.colorTheme.barsBg,
|
||||||
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
),
|
||||||
|
child: _PickerWidget(
|
||||||
|
filePickerIndex: _filePickerIndex,
|
||||||
|
streamChatTheme: _streamChatTheme,
|
||||||
|
containsFile: _attachmentContainsFile,
|
||||||
|
selectedMedias: messageInputController.attachments
|
||||||
|
.map((e) => e.id)
|
||||||
|
.toList(),
|
||||||
|
onAddMoreFilesClick: widget.onFilePicked,
|
||||||
|
onMediaSelected: (media) {
|
||||||
|
if (messageInputController.attachments
|
||||||
|
.any((e) => e.id == media.id)) {
|
||||||
|
setState(() => messageInputController.attachments
|
||||||
|
.removeWhere((e) => e.id == media.id));
|
||||||
|
} else {
|
||||||
|
_addAssetAttachment(media);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void _addAssetAttachment(AssetEntity medium) async {
|
||||||
|
final mediaFile = await medium.originFile.timeout(
|
||||||
|
const Duration(seconds: 5),
|
||||||
|
onTimeout: () => medium.originFile,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (mediaFile == null) return;
|
||||||
|
|
||||||
|
var file = AttachmentFile(
|
||||||
|
path: mediaFile.path,
|
||||||
|
size: await mediaFile.length(),
|
||||||
|
bytes: mediaFile.readAsBytesSync(),
|
||||||
|
);
|
||||||
|
|
||||||
|
if (file.size! > widget.maxAttachmentSize) {
|
||||||
|
if (medium.type == AssetType.video && file.path != null) {
|
||||||
|
final mediaInfo = await (VideoService.compressVideo(
|
||||||
|
file.path!,
|
||||||
|
frameRate: widget.compressedVideoFrameRate,
|
||||||
|
quality: widget.compressedVideoQuality,
|
||||||
|
) as FutureOr<MediaInfo>);
|
||||||
|
|
||||||
|
if (mediaInfo.filesize! > widget.maxAttachmentSize) {
|
||||||
|
widget.onError?.call(
|
||||||
|
context.translations.fileTooLargeAfterCompressionError(
|
||||||
|
widget.maxAttachmentSize / (1024 * 1024),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
file = AttachmentFile(
|
||||||
|
name: file.name,
|
||||||
|
size: mediaInfo.filesize,
|
||||||
|
bytes: await mediaInfo.file?.readAsBytes(),
|
||||||
|
path: mediaInfo.path,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
widget.onError?.call(context.translations.fileTooLargeError(
|
||||||
|
widget.maxAttachmentSize / (1024 * 1024),
|
||||||
|
));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
setState(() {
|
||||||
|
final attachment = Attachment(
|
||||||
|
id: medium.id,
|
||||||
|
file: file,
|
||||||
|
type: medium.type == AssetType.image ? 'image' : 'video',
|
||||||
|
);
|
||||||
|
_addAttachments([attachment]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Adds an attachment to the [messageInputController.attachments] map
|
||||||
|
void _addAttachments(Iterable<Attachment> attachments) {
|
||||||
|
final limit = widget.attachmentLimit;
|
||||||
|
final length =
|
||||||
|
widget.messageInputController.attachments.length + attachments.length;
|
||||||
|
if (length > limit) {
|
||||||
|
final onAttachmentLimitExceed = widget.onAttachmentLimitExceeded;
|
||||||
|
if (onAttachmentLimitExceed != null) {
|
||||||
|
return onAttachmentLimitExceed(
|
||||||
|
widget.attachmentLimit,
|
||||||
|
context.translations.attachmentLimitExceedError(limit),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return widget.onError?.call(
|
||||||
|
context.translations.attachmentLimitExceedError(limit),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
for (final attachment in attachments) {
|
||||||
|
widget.messageInputController.addAttachment(attachment);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class _PickerWidget extends StatefulWidget {
|
||||||
|
const _PickerWidget({
|
||||||
|
Key? key,
|
||||||
|
required this.filePickerIndex,
|
||||||
|
required this.containsFile,
|
||||||
|
required this.selectedMedias,
|
||||||
|
required this.onAddMoreFilesClick,
|
||||||
|
required this.onMediaSelected,
|
||||||
|
required this.streamChatTheme,
|
||||||
|
}) : super(key: key);
|
||||||
|
|
||||||
|
final int filePickerIndex;
|
||||||
|
final bool containsFile;
|
||||||
|
final List<String> selectedMedias;
|
||||||
|
final void Function(DefaultAttachmentTypes) onAddMoreFilesClick;
|
||||||
|
final void Function(AssetEntity) onMediaSelected;
|
||||||
|
final StreamChatThemeData streamChatTheme;
|
||||||
|
|
||||||
|
@override
|
||||||
|
_PickerWidgetState createState() => _PickerWidgetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _PickerWidgetState extends State<_PickerWidget> {
|
||||||
|
Future<bool>? requestPermission;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
requestPermission = PhotoManager.requestPermission();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
if (widget.filePickerIndex != 0) {
|
||||||
|
return const Offstage();
|
||||||
|
}
|
||||||
|
return FutureBuilder<bool>(
|
||||||
|
future: requestPermission,
|
||||||
|
builder: (context, snapshot) {
|
||||||
|
if (!snapshot.hasData) {
|
||||||
|
return const Offstage();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (snapshot.data!) {
|
||||||
|
if (widget.containsFile) {
|
||||||
|
return GestureDetector(
|
||||||
|
onTap: () {
|
||||||
|
widget.onAddMoreFilesClick(DefaultAttachmentTypes.file);
|
||||||
|
},
|
||||||
|
child: Container(
|
||||||
|
constraints: const BoxConstraints.expand(),
|
||||||
|
color: widget.streamChatTheme.colorTheme.inputBg,
|
||||||
|
alignment: Alignment.center,
|
||||||
|
child: Text(
|
||||||
|
context.translations.addMoreFilesLabel,
|
||||||
|
style: TextStyle(
|
||||||
|
color: widget.streamChatTheme.colorTheme.accentPrimary,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return MediaListView(
|
||||||
|
selectedIds: widget.selectedMedias,
|
||||||
|
onSelect: widget.onMediaSelected,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return InkWell(
|
||||||
|
onTap: () async {
|
||||||
|
PhotoManager.openSetting();
|
||||||
|
},
|
||||||
|
child: Container(
|
||||||
|
color: widget.streamChatTheme.colorTheme.inputBg,
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
children: [
|
||||||
|
SvgPicture.asset(
|
||||||
|
'svgs/icon_picture_empty_state.svg',
|
||||||
|
package: 'stream_chat_flutter',
|
||||||
|
height: 140,
|
||||||
|
color: widget.streamChatTheme.colorTheme.disabled,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
context.translations.enablePhotoAndVideoAccessMessage,
|
||||||
|
style: widget.streamChatTheme.textTheme.body.copyWith(
|
||||||
|
color: widget.streamChatTheme.colorTheme.textLowEmphasis,
|
||||||
|
),
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
Center(
|
||||||
|
child: Text(
|
||||||
|
context.translations.allowGalleryAccessMessage,
|
||||||
|
style: widget.streamChatTheme.textTheme.bodyBold.copyWith(
|
||||||
|
color: widget.streamChatTheme.colorTheme.accentPrimary,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -29,6 +29,7 @@ export 'src/message_search_list_view.dart';
|
|||||||
export 'src/message_text.dart';
|
export 'src/message_text.dart';
|
||||||
export 'src/message_widget.dart';
|
export 'src/message_widget.dart';
|
||||||
export 'src/mip/countdown_button.dart';
|
export 'src/mip/countdown_button.dart';
|
||||||
|
export 'src/mip/stream_attachment_picker.dart';
|
||||||
export 'src/mip/stream_message_send_button.dart';
|
export 'src/mip/stream_message_send_button.dart';
|
||||||
export 'src/mip/stream_message_text_field.dart';
|
export 'src/mip/stream_message_text_field.dart';
|
||||||
export 'src/option_list_tile.dart';
|
export 'src/option_list_tile.dart';
|
||||||
|
|||||||
Reference in New Issue
Block a user