UNPKG

@cometchat/chat-uikit-react

Version:

Ready-to-use Chat UI Components for React(Javascript/Web)

45 lines (44 loc) 1.34 kB
import React from "react"; import { Action } from "./CometChatGroups"; type Args = { searchText: string; groupsRequestBuilder: CometChat.GroupsRequestBuilder | null; searchRequestBuilder: CometChat.GroupsRequestBuilder | null; groupsSearchText: React.MutableRefObject<string>; }; export declare class GroupsManager { private groupsRequest; private static loggedInUser; private static defaultLimit; /** * Set `groupsRequest` of the instance */ constructor(args: Args); /** * Calls `fetchNext` method of the set `groupsRequest` */ fetchNext(): Promise<[] | import("@cometchat/chat-sdk-javascript").Group[]>; private getDefaultRequestBuilder; /** * Sets `loggedInUser` of the instance * @returns The logged-in user */ private static getLoggedInUser; /** * Creates an SDK group listener */ private static createGroupListener; /** * Attaches an SDK group listener * * @returns Function to call to remove the attached SDK group listener */ static attachListeners(dispatch: React.Dispatch<Action>): () => void; /** * Attaches an SDK websocket listener * * @returns - Function to remove the added SDK websocket listener */ static attachConnestionListener(callback: () => void): () => void; } export {};