createChatDirectLink method

  1. @override
Future<void> createChatDirectLink(
  1. ChatId chatId,
  2. ChatDirectLinkSlug slug
)
override

Creates a new ChatDirectLink with the specified ChatDirectLinkSlug and deletes the current active ChatDirectLink of the given Chat-group (if any).

Implementation

@override
Future<void> createChatDirectLink(
  ChatId chatId,
  ChatDirectLinkSlug slug,
) async {
  Log.debug('createChatDirectLink($chatId, $slug)', '$runtimeType');

  // Don't do optimism, as [slug] might be occupied, thus shouldn't set the
  // link right away.
  await _graphQlProvider.createChatDirectLink(slug, groupId: chatId);

  final RxChatImpl? chat = chats[chatId];
  chat?.chat.update(
    (c) =>
        c?.directLink = ChatDirectLink(
          slug: slug,
          createdAt: PreciseDateTime.now(),
        ),
  );
}