Files
stream-chat-flutter/packages/stream_chat_flutter/lib/src/attachment/attachment_widget.dart
T
2021-05-05 19:07:32 +05:30

89 lines
2.2 KiB
Dart

import 'package:flutter/material.dart';
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
import 'package:stream_chat_flutter_core/stream_chat_flutter_core.dart';
/// Enum for identifying type of attachment
enum AttachmentSource {
/// Attachment is attached
local,
/// Attachment is uploaded
network,
}
/// Extension for identifying type of attachment
extension AttachmentSourceX on AttachmentSource {
/// The [when] method is the equivalent to pattern matching.
/// Its prototype depends on the AttachmentSource defined.
// ignore: missing_return
T when<T>({
required T Function() local,
required T Function() network,
}) {
switch (this) {
case AttachmentSource.local:
return local();
case AttachmentSource.network:
return network();
}
}
}
/// Abstract class for deriving attachment types
abstract class AttachmentWidget extends StatelessWidget {
/// Constructor for creating attachment widget
const AttachmentWidget({
Key? key,
required this.message,
required this.attachment,
this.size,
AttachmentSource? source,
}) : _source = source,
super(key: key);
/// Size of attachments
final Size? size;
final AttachmentSource? _source;
/// Message which attachment is attached to
final Message message;
/// Attachment to display
final Attachment attachment;
/// Getter for source of attachment
AttachmentSource get source =>
_source ??
(attachment.file != null
? AttachmentSource.local
: AttachmentSource.network);
}
/// Widget for building in case of error
class AttachmentError extends StatelessWidget {
/// Constructor for creating AttachmentError
const AttachmentError({
Key? key,
this.size,
}) : super(key: key);
/// Size of error
final Size? size;
@override
Widget build(BuildContext context) => Center(
child: Container(
width: size?.width,
height: size?.height,
color:
StreamChatTheme.of(context).colorTheme.accentRed.withOpacity(.1),
child: Center(
child: Icon(
Icons.error_outline,
color: StreamChatTheme.of(context).colorTheme.black,
),
),
),
);
}