hideChatItem method

  1. @override
Future<void> hideChatItem(
  1. ChatId chatId,
  2. ChatItemId id
)
override

Hides the specified ChatItem for the authenticated MyUser.

Implementation

@override
Future<void> hideChatItem(ChatId chatId, ChatItemId id) async {
  Log.debug('hideChatItem($chatId, $id)', '$runtimeType');

  final RxChatImpl? chat = chats[chatId];

  final Rx<ChatItem>? item = chat?.messages.firstWhereOrNull(
    (e) => e.value.id == id,
  );
  if (item != null) {
    chat?.messages.remove(item);
  }

  try {
    await _graphQlProvider.hideChatItem(id);

    if (item != null) {
      chat?.remove(item.value.id);
    }
  } catch (_) {
    if (item != null) {
      chat?.messages.insertAfter(
        item,
        (e) => item.value.at.compareTo(e.value.at) == 1,
      );
      chat?.updateReads();
    }

    rethrow;
  }
}