You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom component to render when message is considered delivered, not read. The default UI renders MessageDeliveredIcon and a tooltip with string 'Delivered'.
272
-
273
-
| Type |
274
-
| --------- |
275
-
| component |
276
-
277
-
### MessageReadStatus
278
-
279
-
Custom component to render when message is considered delivered and read. The default UI renders the last reader's Avatar and a tooltip with string readers' names.
280
-
281
-
| Type |
282
-
| --------- |
283
-
| component |
284
-
285
-
### MessageSendingStatus
286
-
287
-
Custom component to render when message is considered as being the in the process of delivery. The default UI renders LoadingIndicator and a tooltip with string 'Sending'.
288
-
289
-
| Type |
290
-
| --------- |
291
-
| component |
292
-
293
269
### messageType
294
270
295
271
Message type string to be added to CSS class names.
Copy file name to clipboardexpand all lines: src/components/Message/MessageStatus.tsx
+65-83
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,6 @@ import type { DefaultStreamChatGenerics } from '../../types/types';
19
19
exporttypeMessageStatusProps={
20
20
/* Custom UI component to display a user's avatar (overrides the value from `ComponentContext`) */
21
21
Avatar?: React.ComponentType<AvatarProps>;
22
-
/* Custom component to render when message is considered delivered, not read. The default UI renders MessageDeliveredIcon and a tooltip with string 'Delivered'. */
23
-
MessageDeliveredStatus?: React.ComponentType;
24
-
/* Custom component to render when message is considered delivered and read. The default UI renders the last reader's Avatar and a tooltip with string readers' names. */
25
-
MessageReadStatus?: React.ComponentType;
26
-
/* Custom component to render when message is considered as being the in the process of delivery. The default UI renders LoadingIndicator and a tooltip with string 'Sending'. */
27
-
MessageSendingStatus?: React.ComponentType;
28
22
/* Message type string to be added to CSS class names. */
29
23
messageType?: string;
30
24
/* Allows to customize the username(s) that appear on the message status tooltip */
0 commit comments