resendChatItem method

  1. @override
Future<void> resendChatItem(
  1. ChatItem item
)
override

Resends the specified item.

Implementation

@override
Future<void> resendChatItem(ChatItem item) async {
  Log.debug('resendChatItem($item)', '$runtimeType');

  RxChatImpl? rxChat = chats[item.chatId];

  // TODO: Account [ChatForward]s.
  if (item is ChatMessage) {
    for (var e in item.attachments.whereType<LocalAttachment>()) {
      if (e.status.value == SendingStatus.error &&
          (e.upload.value == null || e.upload.value?.isCompleted == true)) {
        uploadAttachment(e)
            .onError<UploadAttachmentException>((_, __) => e)
            .onError<ConnectionException>((_, __) => e);
      }
    }

    // If this [item] is posted in a local [Chat], then make it remote first.
    if (item.chatId.isLocal) {
      rxChat = await ensureRemoteDialog(item.chatId);
    }

    await rxChat?.postChatMessage(
      existingId: item.id,
      existingDateTime: item.at,
      text: item.text,
      attachments: item.attachments,
      repliesTo: item.repliesTo.map((e) => e.original).nonNulls.toList(),
    );
  }
}