stream-chat-react
Version:
React components to create chat conversations or livestream style chat
22 lines (21 loc) • 1.5 kB
TypeScript
import React from 'react';
import type { ReactionGroupResponse, ReactionResponse } from 'stream-chat';
import { MessageContextValue } from '../../context/MessageContext';
import type { DefaultStreamChatGenerics } from '../../types/types';
import type { ReactionOptions } from './reactionOptions';
export type SimpleReactionsListProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Partial<Pick<MessageContextValue, 'handleFetchReactions' | 'handleReaction'>> & {
/** An array of the own reaction objects to distinguish own reactions visually */
own_reactions?: ReactionResponse<StreamChatGenerics>[];
/**
* An object that keeps track of the count of each type of reaction on a message
* @deprecated This override value is no longer taken into account. Use `reaction_groups` to override reaction counts instead.
* */
reaction_counts?: Record<string, number>;
/** An object containing summary for each reaction type on a message */
reaction_groups?: Record<string, ReactionGroupResponse>;
/** A list of the currently supported reactions on a message */
reactionOptions?: ReactionOptions;
/** An array of the reaction objects to display in the list */
reactions?: ReactionResponse<StreamChatGenerics>[];
};
export declare const SimpleReactionsList: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(props: SimpleReactionsListProps<StreamChatGenerics>) => React.JSX.Element | null;