stream-chat-react-native-core 5.29.1-beta.4 → 5.30.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/Channel/Channel.js +4 -2
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js +2 -2
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js +1 -1
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js +6 -14
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js +11 -0
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +12 -27
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageDeleted.js +10 -12
- package/lib/commonjs/components/Message/MessageSimple/MessageDeleted.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageEditedTimestamp.js +55 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageEditedTimestamp.js.map +1 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js +94 -58
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js +6 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageTimestamp.js +48 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageTimestamp.js.map +1 -0
- package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js +5 -1
- package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js.map +1 -1
- package/lib/commonjs/components/MessageList/InlineDateSeparator.js +6 -2
- package/lib/commonjs/components/MessageList/InlineDateSeparator.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +9 -6
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageSystem.js +30 -27
- package/lib/commonjs/components/MessageList/MessageSystem.js.map +1 -1
- package/lib/commonjs/components/MessageList/utils/getGroupStyles.js +3 -2
- package/lib/commonjs/components/MessageList/utils/getGroupStyles.js.map +1 -1
- package/lib/commonjs/components/index.js +11 -0
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/contexts/messageContext/MessageContext.js.map +1 -1
- package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js +3 -0
- package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/commonjs/i18n/en.json +2 -1
- package/lib/commonjs/i18n/es.json +39 -38
- package/lib/commonjs/i18n/fr.json +39 -38
- package/lib/commonjs/i18n/he.json +39 -38
- package/lib/commonjs/i18n/hi.json +39 -38
- package/lib/commonjs/i18n/it.json +39 -38
- package/lib/commonjs/i18n/ja.json +39 -38
- package/lib/commonjs/i18n/ko.json +39 -38
- package/lib/commonjs/i18n/nl.json +39 -38
- package/lib/commonjs/i18n/pt-BR.json +39 -38
- package/lib/commonjs/i18n/ru.json +39 -38
- package/lib/commonjs/i18n/tr.json +39 -38
- package/lib/commonjs/utils/getDateString.js +31 -0
- package/lib/commonjs/utils/getDateString.js.map +1 -0
- package/lib/commonjs/utils/utils.js +5 -1
- package/lib/commonjs/utils/utils.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +4 -2
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js +2 -2
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js +1 -1
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js +6 -14
- package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
- package/lib/module/components/Message/Message.js +11 -0
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageContent.js +12 -27
- package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageDeleted.js +10 -12
- package/lib/module/components/Message/MessageSimple/MessageDeleted.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageEditedTimestamp.js +55 -0
- package/lib/module/components/Message/MessageSimple/MessageEditedTimestamp.js.map +1 -0
- package/lib/module/components/Message/MessageSimple/MessageFooter.js +94 -58
- package/lib/module/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageSimple.js +6 -0
- package/lib/module/components/Message/MessageSimple/MessageSimple.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageTimestamp.js +48 -0
- package/lib/module/components/Message/MessageSimple/MessageTimestamp.js.map +1 -0
- package/lib/module/components/Message/hooks/useCreateMessageContext.js +5 -1
- package/lib/module/components/Message/hooks/useCreateMessageContext.js.map +1 -1
- package/lib/module/components/MessageList/InlineDateSeparator.js +6 -2
- package/lib/module/components/MessageList/InlineDateSeparator.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +9 -6
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/components/MessageList/MessageSystem.js +30 -27
- package/lib/module/components/MessageList/MessageSystem.js.map +1 -1
- package/lib/module/components/MessageList/utils/getGroupStyles.js +3 -2
- package/lib/module/components/MessageList/utils/getGroupStyles.js.map +1 -1
- package/lib/module/components/index.js +11 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/contexts/messageContext/MessageContext.js.map +1 -1
- package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/module/contexts/themeContext/utils/theme.js +3 -0
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/i18n/en.json +2 -1
- package/lib/module/i18n/es.json +39 -38
- package/lib/module/i18n/fr.json +39 -38
- package/lib/module/i18n/he.json +39 -38
- package/lib/module/i18n/hi.json +39 -38
- package/lib/module/i18n/it.json +39 -38
- package/lib/module/i18n/ja.json +39 -38
- package/lib/module/i18n/ko.json +39 -38
- package/lib/module/i18n/nl.json +39 -38
- package/lib/module/i18n/pt-BR.json +39 -38
- package/lib/module/i18n/ru.json +39 -38
- package/lib/module/i18n/tr.json +39 -38
- package/lib/module/utils/getDateString.js +31 -0
- package/lib/module/utils/getDateString.js.map +1 -0
- package/lib/module/utils/utils.js +5 -1
- package/lib/module/utils/utils.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateMessagesContext.d.ts +1 -1
- package/lib/typescript/components/ImageGallery/components/ImageGalleryHeader.d.ts.map +1 -1
- package/lib/typescript/components/Message/Message.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageDeleted.d.ts +8 -8
- package/lib/typescript/components/Message/MessageSimple/MessageDeleted.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageEditedTimestamp.d.ts +7 -0
- package/lib/typescript/components/Message/MessageSimple/MessageEditedTimestamp.d.ts.map +1 -0
- package/lib/typescript/components/Message/MessageSimple/MessageFooter.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageFooter.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageTimestamp.d.ts +22 -0
- package/lib/typescript/components/Message/MessageSimple/MessageTimestamp.d.ts.map +1 -0
- package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts +1 -1
- package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/DateHeader.d.ts +1 -1
- package/lib/typescript/components/MessageList/DateHeader.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/InlineDateSeparator.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageSystem.d.ts +0 -8
- package/lib/typescript/components/MessageList/MessageSystem.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/utils/getGroupStyles.d.ts.map +1 -1
- package/lib/typescript/components/index.d.ts +1 -0
- package/lib/typescript/components/index.d.ts.map +1 -1
- package/lib/typescript/contexts/channelContext/ChannelContext.d.ts +1 -1
- package/lib/typescript/contexts/channelContext/ChannelContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts +5 -1
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +6 -5
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts.map +1 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +3 -0
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
- package/lib/typescript/i18n/en.json +2 -1
- package/lib/typescript/i18n/es.json +39 -38
- package/lib/typescript/i18n/fr.json +39 -38
- package/lib/typescript/i18n/he.json +39 -38
- package/lib/typescript/i18n/hi.json +39 -38
- package/lib/typescript/i18n/it.json +39 -38
- package/lib/typescript/i18n/ja.json +39 -38
- package/lib/typescript/i18n/ko.json +39 -38
- package/lib/typescript/i18n/nl.json +39 -38
- package/lib/typescript/i18n/pt-BR.json +39 -38
- package/lib/typescript/i18n/ru.json +39 -38
- package/lib/typescript/i18n/tr.json +39 -38
- package/lib/typescript/utils/Streami18n.d.ts +6 -0
- package/lib/typescript/utils/Streami18n.d.ts.map +1 -1
- package/lib/typescript/utils/getDateString.d.ts +30 -0
- package/lib/typescript/utils/getDateString.d.ts.map +1 -0
- package/lib/typescript/utils/utils.d.ts +6 -0
- package/lib/typescript/utils/utils.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/Channel/Channel.tsx +4 -3
- package/src/components/Channel/hooks/useCreateMessagesContext.ts +2 -2
- package/src/components/ChannelPreview/hooks/useLatestMessagePreview.ts +1 -1
- package/src/components/ImageGallery/components/ImageGalleryHeader.tsx +3 -31
- package/src/components/Message/Message.tsx +7 -0
- package/src/components/Message/MessageSimple/MessageContent.tsx +13 -33
- package/src/components/Message/MessageSimple/MessageDeleted.tsx +13 -31
- package/src/components/Message/MessageSimple/MessageEditedTimestamp.tsx +56 -0
- package/src/components/Message/MessageSimple/MessageFooter.tsx +104 -63
- package/src/components/Message/MessageSimple/MessageSimple.tsx +14 -2
- package/src/components/Message/MessageSimple/MessageTimestamp.tsx +64 -0
- package/src/components/Message/hooks/useCreateMessageContext.ts +5 -0
- package/src/components/MessageList/DateHeader.tsx +1 -1
- package/src/components/MessageList/InlineDateSeparator.tsx +8 -8
- package/src/components/MessageList/MessageList.tsx +9 -9
- package/src/components/MessageList/MessageSystem.tsx +35 -43
- package/src/components/MessageList/utils/getGroupStyles.ts +7 -4
- package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +20 -12
- package/src/components/index.ts +1 -0
- package/src/contexts/channelContext/ChannelContext.tsx +1 -1
- package/src/contexts/messageContext/MessageContext.tsx +4 -0
- package/src/contexts/messagesContext/MessagesContext.tsx +6 -5
- package/src/contexts/themeContext/utils/theme.ts +6 -0
- package/src/i18n/en.json +2 -1
- package/src/i18n/es.json +39 -38
- package/src/i18n/fr.json +39 -38
- package/src/i18n/he.json +39 -38
- package/src/i18n/hi.json +39 -38
- package/src/i18n/it.json +39 -38
- package/src/i18n/ja.json +39 -38
- package/src/i18n/ko.json +39 -38
- package/src/i18n/nl.json +39 -38
- package/src/i18n/pt-BR.json +39 -38
- package/src/i18n/ru.json +39 -38
- package/src/i18n/tr.json +39 -38
- package/src/utils/getDateString.ts +67 -0
- package/src/utils/utils.ts +11 -0
- package/src/version.json +1 -1
|
@@ -1,82 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
6
|
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "Tem certeza de que deseja excluir esta mensagem permanentemente?",
|
|
8
|
+
"Are you sure?": "Tem certeza?",
|
|
9
|
+
"Block User": "Bloquear Usuário",
|
|
10
10
|
"Cancel": "",
|
|
11
|
-
"Cannot Flag Message": "",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
-
"Copy Message": "",
|
|
14
|
-
"Delete": "",
|
|
15
|
-
"Delete Message": "",
|
|
11
|
+
"Cannot Flag Message": "Não é possível reportar a mensagem",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considere como seu comentário pode fazer os outros se sentirem e certifique-se de seguir nossas Diretrizes da Comunidade",
|
|
13
|
+
"Copy Message": "Copiar Mensagem",
|
|
14
|
+
"Delete": "Excluir",
|
|
15
|
+
"Delete Message": "Excluir Mensagem",
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
-
"Edit Message": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "Deseja enviar uma cópia desta mensagem para um moderador para investigação adicional?",
|
|
18
|
+
"Edit Message": "Editar Mensagem",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "Correspondência de Emoji",
|
|
21
22
|
"Empty message...": "",
|
|
22
23
|
"Error loading": "",
|
|
23
24
|
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error loading messages for this channel...": "Erro ao carregar mensagens para este canal...",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
-
"Flag": "",
|
|
28
|
-
"Flag Message": "",
|
|
29
|
-
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
27
|
+
"File type not supported": "",
|
|
28
|
+
"Flag": "Reportar",
|
|
29
|
+
"Flag Message": "Reportar Mensagem",
|
|
30
|
+
"Flag action failed either due to a network issue or the message is already flagged": "A ação para reportar a mensagem falhou devido a um problema de rede ou a mensagem já foi reportada.",
|
|
30
31
|
"Hold to start recording.": "",
|
|
31
32
|
"How about sending your first message to a friend?": "",
|
|
32
|
-
"Instant Commands": "",
|
|
33
|
+
"Instant Commands": "Comandos Instantâneos",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
36
|
"Loading channels...": "",
|
|
36
37
|
"Loading messages...": "",
|
|
37
38
|
"Loading...": "",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
-
"Message Reactions": "",
|
|
40
|
+
"Message Reactions": "Reações à Mensagem",
|
|
40
41
|
"Message deleted": "Mensagem excluída",
|
|
41
|
-
"Message flagged": "",
|
|
42
|
-
"Mute User": "",
|
|
42
|
+
"Message flagged": "Mensagem sinalizada",
|
|
43
|
+
"Mute User": "Silenciar Usuário",
|
|
43
44
|
"No chats here yet…": "",
|
|
44
|
-
"Not supported": "",
|
|
45
|
+
"Not supported": "Não suportado",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
|
-
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
47
|
+
"Ok": "Ok",
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
51
|
-
"Pin to Conversation": "",
|
|
52
|
+
"Pin to Conversation": "Fixar na Conversa",
|
|
52
53
|
"Pinned by": "",
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
-
"Reply": "",
|
|
57
|
+
"Reconnecting...": "Reconectando...",
|
|
58
|
+
"Reply": "Responder",
|
|
58
59
|
"Reply to Message": "",
|
|
59
|
-
"Resend": "",
|
|
60
|
+
"Resend": "Reenviar",
|
|
60
61
|
"Search GIFs": "",
|
|
61
62
|
"Select More Photos": "",
|
|
62
|
-
"Send Anyway": "",
|
|
63
|
+
"Send Anyway": "Enviar de qualquer maneira",
|
|
63
64
|
"Send a message": "",
|
|
64
65
|
"Sending links is not allowed in this conversation": "",
|
|
65
66
|
"Slow mode ON": "",
|
|
66
|
-
"The message has been reported to a moderator.": "",
|
|
67
|
-
"Thread Reply": "",
|
|
68
|
-
"Unblock User": "",
|
|
67
|
+
"The message has been reported to a moderator.": "A mensagem foi relatada a um moderador.",
|
|
68
|
+
"Thread Reply": "Respostas de Tópico",
|
|
69
|
+
"Unblock User": "Desbloquear Usuário",
|
|
69
70
|
"Unknown User": "",
|
|
70
|
-
"Unmute User": "",
|
|
71
|
-
"Unpin from Conversation": "",
|
|
71
|
+
"Unmute User": "Remover usuário do modo silencioso",
|
|
72
|
+
"Unpin from Conversation": "Desmarcar como fixado na conversa",
|
|
72
73
|
"Unread Messages": "Mensagens não lidas",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "Você",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e mais {{ nonSelfUserLength }} pessoa(s) estão digitando",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
-
"{{ user }} is typing": "",
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "{{ user }} está digitando",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
|
@@ -1,82 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
6
|
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "Вы действительно хотите удалить это сообщение без возможности восстановления?",
|
|
8
|
+
"Are you sure?": "Вы уверены?",
|
|
9
|
+
"Block User": "Заблокировать пользователя",
|
|
10
10
|
"Cancel": "",
|
|
11
|
-
"Cannot Flag Message": "",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
-
"Copy Message": "",
|
|
14
|
-
"Delete": "",
|
|
15
|
-
"Delete Message": "",
|
|
11
|
+
"Cannot Flag Message": "Невозможно пожаловаться на сообщение",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Обдумайте, как ваш комментарий может повлиять на других, и убедитесь, что вы следуете нашим правилам сообщества",
|
|
13
|
+
"Copy Message": "Копировать сообщение",
|
|
14
|
+
"Delete": "удалять",
|
|
15
|
+
"Delete Message": "Удалить сообщение",
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
-
"Edit Message": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "Вы хотите отправить копию этого сообщения модератору для дальнейшего изучения?",
|
|
18
|
+
"Edit Message": "Редактировать сообщение",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "Соответствие эмодзи",
|
|
21
22
|
"Empty message...": "",
|
|
22
23
|
"Error loading": "",
|
|
23
24
|
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error loading messages for this channel...": "Ошибка загрузки сообщений для этого канала...",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
-
"Flag": "",
|
|
28
|
-
"Flag Message": "",
|
|
29
|
-
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
27
|
+
"File type not supported": "",
|
|
28
|
+
"Flag": "Пометить",
|
|
29
|
+
"Flag Message": "Пометить сообщение",
|
|
30
|
+
"Flag action failed either due to a network issue or the message is already flagged": "Не удалось отправить жалобу. Возможные причины: проблема с подключением к интернету или ваша жалоба уже была принята.",
|
|
30
31
|
"Hold to start recording.": "",
|
|
31
32
|
"How about sending your first message to a friend?": "",
|
|
32
|
-
"Instant Commands": "",
|
|
33
|
+
"Instant Commands": "Мгновенные Команды",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
36
|
"Loading channels...": "",
|
|
36
37
|
"Loading messages...": "",
|
|
37
38
|
"Loading...": "",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
-
"Message Reactions": "",
|
|
40
|
+
"Message Reactions": "Сообщения Реакции",
|
|
40
41
|
"Message deleted": "Сообщение удалено",
|
|
41
|
-
"Message flagged": "",
|
|
42
|
-
"Mute User": "",
|
|
42
|
+
"Message flagged": "Сообщение отмечено",
|
|
43
|
+
"Mute User": "Отключить пользователя",
|
|
43
44
|
"No chats here yet…": "",
|
|
44
|
-
"Not supported": "",
|
|
45
|
+
"Not supported": "не поддерживается",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
|
-
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
47
|
+
"Ok": "Oк",
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
51
|
-
"Pin to Conversation": "",
|
|
52
|
+
"Pin to Conversation": "Закрепить к беседе",
|
|
52
53
|
"Pinned by": "",
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
-
"Reply": "",
|
|
57
|
+
"Reconnecting...": "Переподключение...",
|
|
58
|
+
"Reply": "Ответить",
|
|
58
59
|
"Reply to Message": "",
|
|
59
|
-
"Resend": "",
|
|
60
|
+
"Resend": "Отправить",
|
|
60
61
|
"Search GIFs": "",
|
|
61
62
|
"Select More Photos": "",
|
|
62
|
-
"Send Anyway": "",
|
|
63
|
+
"Send Anyway": "Всё равно отправить",
|
|
63
64
|
"Send a message": "",
|
|
64
65
|
"Sending links is not allowed in this conversation": "",
|
|
65
66
|
"Slow mode ON": "",
|
|
66
|
-
"The message has been reported to a moderator.": "",
|
|
67
|
-
"Thread Reply": "",
|
|
68
|
-
"Unblock User": "",
|
|
67
|
+
"The message has been reported to a moderator.": "Сообщение отправлено модератору.",
|
|
68
|
+
"Thread Reply": "Тема Ответить",
|
|
69
|
+
"Unblock User": "Разблокировать пользователя",
|
|
69
70
|
"Unknown User": "",
|
|
70
|
-
"Unmute User": "",
|
|
71
|
-
"Unpin from Conversation": "",
|
|
71
|
+
"Unmute User": "Включить микрофон",
|
|
72
|
+
"Unpin from Conversation": "Открепить от беседы",
|
|
72
73
|
"Unread Messages": "Непрочитанные Сообщения",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "Вы",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} и еще {{ nonSelfUserLength }} пишут",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
-
"{{ user }} is typing": "",
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "{{ user }} пишет",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
|
@@ -1,82 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
6
|
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "Bu mesajı kalıcı olarak silmek istediğinizden emin misiniz?",
|
|
8
|
+
"Are you sure?": "Emin misiniz?",
|
|
9
|
+
"Block User": "Kullanıcıyı engelle",
|
|
10
10
|
"Cancel": "",
|
|
11
|
-
"Cannot Flag Message": "",
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
-
"Copy Message": "",
|
|
14
|
-
"Delete": "",
|
|
15
|
-
"Delete Message": "",
|
|
11
|
+
"Cannot Flag Message": "Raporlama Başarısız",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Yorumunuzun diğerlerini nasıl hissettirebileceğini düşünün ve topluluk kurallarımızı takip ettiğinizden emin olun",
|
|
13
|
+
"Copy Message": "Mesajı Kopyala",
|
|
14
|
+
"Delete": "Sil",
|
|
15
|
+
"Delete Message": "Mesajı Sil",
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
-
"Edit Message": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "Detaylı inceleme için bu mesajın kopyasını moderatöre göndermek istiyor musunuz?",
|
|
18
|
+
"Edit Message": "Mesajı Düzenle",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "Emoji eşleştirme",
|
|
21
22
|
"Empty message...": "",
|
|
22
23
|
"Error loading": "",
|
|
23
24
|
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error loading messages for this channel...": "Bu kanal için mesajlar yüklenirken hata oluştu...",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
-
"Flag": "",
|
|
28
|
-
"Flag Message": "",
|
|
29
|
-
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
27
|
+
"File type not supported": "",
|
|
28
|
+
"Flag": "Raporla",
|
|
29
|
+
"Flag Message": "Mesajı Raporla",
|
|
30
|
+
"Flag action failed either due to a network issue or the message is already flagged": "Mesajın daha önce raporlanmış olması veya bir ağ bağlantısı sorunu nedeniyle raporlama işlemi başarısız oldu.",
|
|
30
31
|
"Hold to start recording.": "",
|
|
31
32
|
"How about sending your first message to a friend?": "",
|
|
32
|
-
"Instant Commands": "",
|
|
33
|
+
"Instant Commands": "Anlık Komutlar",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
36
|
"Loading channels...": "",
|
|
36
37
|
"Loading messages...": "",
|
|
37
38
|
"Loading...": "",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
-
"Message Reactions": "",
|
|
40
|
+
"Message Reactions": "Mesaj Tepkileri",
|
|
40
41
|
"Message deleted": "Mesaj silindi",
|
|
41
|
-
"Message flagged": "",
|
|
42
|
-
"Mute User": "",
|
|
42
|
+
"Message flagged": "Mesaj işaretlendi",
|
|
43
|
+
"Mute User": "Kullanıcıyı sessize al",
|
|
43
44
|
"No chats here yet…": "",
|
|
44
|
-
"Not supported": "",
|
|
45
|
+
"Not supported": "Desteklenmiyor",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
|
-
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
47
|
+
"Ok": "Tamam",
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
51
|
-
"Pin to Conversation": "",
|
|
52
|
+
"Pin to Conversation": "Konuşmaya sabitle",
|
|
52
53
|
"Pinned by": "",
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
-
"Reply": "",
|
|
57
|
+
"Reconnecting...": "Yeniden Bağlanılıyor...",
|
|
58
|
+
"Reply": "Yanıtla",
|
|
58
59
|
"Reply to Message": "",
|
|
59
|
-
"Resend": "",
|
|
60
|
+
"Resend": "Yeniden gönder",
|
|
60
61
|
"Search GIFs": "",
|
|
61
62
|
"Select More Photos": "",
|
|
62
|
-
"Send Anyway": "",
|
|
63
|
+
"Send Anyway": "Yine de Gönder",
|
|
63
64
|
"Send a message": "",
|
|
64
65
|
"Sending links is not allowed in this conversation": "",
|
|
65
66
|
"Slow mode ON": "",
|
|
66
|
-
"The message has been reported to a moderator.": "",
|
|
67
|
-
"Thread Reply": "",
|
|
68
|
-
"Unblock User": "",
|
|
67
|
+
"The message has been reported to a moderator.": "Mesaj moderatöre bildirildi.",
|
|
68
|
+
"Thread Reply": "Konu Yanıtı",
|
|
69
|
+
"Unblock User": "Kullanıcının engelini kaldır",
|
|
69
70
|
"Unknown User": "",
|
|
70
|
-
"Unmute User": "",
|
|
71
|
-
"Unpin from Conversation": "",
|
|
71
|
+
"Unmute User": "Kullanıcının sesini aç",
|
|
72
|
+
"Unpin from Conversation": "Sabitlemeyi kaldır",
|
|
72
73
|
"Unread Messages": "Okunmamış Mesajlar",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "Sen",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ve {{ nonSelfUserLength }} kişi daha yazıyor",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
-
"{{ user }} is typing": "",
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "{{ user }} yazıyor",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
|
@@ -131,9 +131,15 @@ export declare class Streami18n {
|
|
|
131
131
|
"Device camera is used to take photos or videos.": string;
|
|
132
132
|
"Do you want to send a copy of this message to a moderator for further investigation?": string;
|
|
133
133
|
"Edit Message": string;
|
|
134
|
+
Edited: string;
|
|
134
135
|
"Editing Message": string;
|
|
135
136
|
"Emoji matching": string;
|
|
136
137
|
"Empty message...": string;
|
|
138
|
+
/**
|
|
139
|
+
* These locale imports also set these locales globally.
|
|
140
|
+
* So as a last step we import the english locale to make
|
|
141
|
+
* sure we don't mess up languages in other places in the app.
|
|
142
|
+
*/
|
|
137
143
|
"Error loading": string;
|
|
138
144
|
"Error loading channel list...": string;
|
|
139
145
|
"Error loading messages for this channel...": string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Streami18n.d.ts","sourceRoot":"","sources":["../../../src/utils/Streami18n.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"Streami18n.d.ts","sourceRoot":"","sources":["../../../src/utils/Streami18n.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { TDateTimeParser, TDateTimeParserInput } from '../contexts/translationContext/TranslationContext';
|
|
2
|
+
interface DateFormatterOptions {
|
|
3
|
+
/**
|
|
4
|
+
* Whether to show the time in Calendar time format. Calendar time displays time relative to a today's date.
|
|
5
|
+
*/
|
|
6
|
+
calendar?: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* The timestamp to be formatted.
|
|
9
|
+
*/
|
|
10
|
+
date?: string | Date;
|
|
11
|
+
/**
|
|
12
|
+
* The format in which the date should be displayed.
|
|
13
|
+
*/
|
|
14
|
+
format?: string;
|
|
15
|
+
/**
|
|
16
|
+
* A function to format the date.
|
|
17
|
+
*/
|
|
18
|
+
formatDate?: (date: TDateTimeParserInput) => string;
|
|
19
|
+
/**
|
|
20
|
+
* The datetime parsing function.
|
|
21
|
+
*/
|
|
22
|
+
tDateTimeParser?: TDateTimeParser;
|
|
23
|
+
}
|
|
24
|
+
export declare const noParsingFunctionWarning = "MessageTimestamp was called but there is no datetime parsing function available";
|
|
25
|
+
/**
|
|
26
|
+
* Utility funcyion to format the date string.
|
|
27
|
+
*/
|
|
28
|
+
export declare function getDateString({ calendar, date, format, formatDate, tDateTimeParser, }: DateFormatterOptions): string | number | null;
|
|
29
|
+
export {};
|
|
30
|
+
//# sourceMappingURL=getDateString.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDateString.d.ts","sourceRoot":"","sources":["../../../src/utils/getDateString.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,eAAe,EACf,oBAAoB,EACrB,MAAM,mDAAmD,CAAC;AAE3D,UAAU,oBAAoB;IAC5B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,oBAAoB,KAAK,MAAM,CAAC;IACpD;;OAEG;IACH,eAAe,CAAC,EAAE,eAAe,CAAC;CACnC;AAED,eAAO,MAAM,wBAAwB,oFAC8C,CAAC;AAEpF;;GAEG;AACH,wBAAgB,aAAa,CAAC,EAC5B,QAAQ,EACR,IAAI,EACJ,MAAM,EACN,UAAU,EACV,eAAe,GAChB,EAAE,oBAAoB,GAAG,MAAM,GAAG,MAAM,GAAG,IAAI,CAyB/C"}
|
|
@@ -45,6 +45,12 @@ export declare const isBlockedMessage: <StreamChatGenerics extends DefaultStream
|
|
|
45
45
|
* @returns boolean
|
|
46
46
|
*/
|
|
47
47
|
export declare const isBouncedMessage: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(message: MessageType<StreamChatGenerics>) => boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Utility to check if the message is a edited message.
|
|
50
|
+
* @param message
|
|
51
|
+
* @returns boolean
|
|
52
|
+
*/
|
|
53
|
+
export declare const isEditedMessage: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(message: MessageType<StreamChatGenerics>) => boolean;
|
|
48
54
|
export declare const queryMembersDebounced: DebouncedFunc<(<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(channel: Channel<StreamChatGenerics>, query: SuggestionUser<StreamChatGenerics>["name"], onReady?: ((users: SuggestionUser<StreamChatGenerics>[]) => void) | undefined, options?: {
|
|
49
55
|
limit?: number;
|
|
50
56
|
}) => Promise<void>)>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/utils/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AAE5C,OAAO,KAAK,EACV,OAAO,EAGP,eAAe,EACf,qBAAqB,EACrB,UAAU,EAEX,MAAM,aAAa,CAAC;AAErB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAClF,OAAO,KAAK,EACV,gBAAgB,EAChB,uBAAuB,EACxB,MAAM,qDAAqD,CAAC;AAC7D,OAAO,KAAK,EACV,iBAAiB,EACjB,uBAAuB,EACvB,cAAc,EACf,MAAM,mDAAmD,CAAC;AAC3D,OAAO,EAAkB,KAAK,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,KAAK,EAAE,yBAAyB,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAEzE,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,KAAK,CAAC,aAAa,CAAC,SAAS,CAAC,CAAC;IACrC,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;EASpB,CAAC;AAEH,eAAO,MAAM,sBAAsB,EAAE;IACnC,WAAW,EAAE,aAAa,CAAC;IAC3B,QAAQ,EAAE,UAAU,CAAC;IACrB,aAAa,EAAE,eAAe,CAAC;IAC/B,KAAK,EAAE,OAAO,CAAC;CAMf,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;CAI9B,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAExE,KAAK,QAAQ,GAAG,OAAO,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAGvD,eAAO,MAAM,4BAA4B,cAC5B,cAAc,wBACH,OAAO,KAC5B,QAAQ,GAAG,IAeb,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,2LAQ5B,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,yIAI4C,CAAC;
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/utils/utils.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-chat-react-native-core",
|
|
3
3
|
"description": "The official React Native and Expo components for Stream Chat, a service for building chat applications",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.30.0-beta.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"company": "Stream.io Inc",
|
|
7
7
|
"name": "Stream.io Inc"
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"path": "0.12.7",
|
|
79
79
|
"react-native-markdown-package": "1.8.2",
|
|
80
80
|
"react-native-url-polyfill": "^1.3.0",
|
|
81
|
-
"stream-chat": "8.
|
|
81
|
+
"stream-chat": "8.31.0"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
84
|
"react-native-quick-sqlite": ">=5.1.0",
|
|
@@ -118,6 +118,7 @@ import { MessageAvatar as MessageAvatarDefault } from '../Message/MessageSimple/
|
|
|
118
118
|
import { MessageBounce as MessageBounceDefault } from '../Message/MessageSimple/MessageBounce';
|
|
119
119
|
import { MessageContent as MessageContentDefault } from '../Message/MessageSimple/MessageContent';
|
|
120
120
|
import { MessageDeleted as MessageDeletedDefault } from '../Message/MessageSimple/MessageDeleted';
|
|
121
|
+
import { MessageEditedTimestamp as MessageEditedTimestampDefault } from '../Message/MessageSimple/MessageEditedTimestamp';
|
|
121
122
|
import { MessageError as MessageErrorDefault } from '../Message/MessageSimple/MessageError';
|
|
122
123
|
import { MessageFooter as MessageFooterDefault } from '../Message/MessageSimple/MessageFooter';
|
|
123
124
|
import { MessagePinnedHeader as MessagePinnedHeaderDefault } from '../Message/MessageSimple/MessagePinnedHeader';
|
|
@@ -262,7 +263,6 @@ export type ChannelPropsWithContext<
|
|
|
262
263
|
| 'FileAttachmentGroup'
|
|
263
264
|
| 'FlatList'
|
|
264
265
|
| 'forceAlignMessages'
|
|
265
|
-
| 'formatDate'
|
|
266
266
|
| 'Gallery'
|
|
267
267
|
| 'getMessagesGroupStyles'
|
|
268
268
|
| 'Giphy'
|
|
@@ -292,6 +292,7 @@ export type ChannelPropsWithContext<
|
|
|
292
292
|
| 'MessageContent'
|
|
293
293
|
| 'messageContentOrder'
|
|
294
294
|
| 'MessageDeleted'
|
|
295
|
+
| 'MessageEditedTimestamp'
|
|
295
296
|
| 'MessageError'
|
|
296
297
|
| 'MessageFooter'
|
|
297
298
|
| 'MessageHeader'
|
|
@@ -469,7 +470,6 @@ const ChannelWithContext = <
|
|
|
469
470
|
FileUploadPreview = FileUploadPreviewDefault,
|
|
470
471
|
FlatList = FlatListDefault,
|
|
471
472
|
forceAlignMessages,
|
|
472
|
-
formatDate,
|
|
473
473
|
Gallery = GalleryDefault,
|
|
474
474
|
getMessagesGroupStyles,
|
|
475
475
|
Giphy = GiphyDefault,
|
|
@@ -527,6 +527,7 @@ const ChannelWithContext = <
|
|
|
527
527
|
MessageContent = MessageContentDefault,
|
|
528
528
|
messageContentOrder = ['quoted_reply', 'gallery', 'files', 'text', 'attachments'],
|
|
529
529
|
MessageDeleted = MessageDeletedDefault,
|
|
530
|
+
MessageEditedTimestamp = MessageEditedTimestampDefault,
|
|
530
531
|
MessageError = MessageErrorDefault,
|
|
531
532
|
MessageFooter = MessageFooterDefault,
|
|
532
533
|
MessageHeader,
|
|
@@ -2295,7 +2296,6 @@ const ChannelWithContext = <
|
|
|
2295
2296
|
FileAttachmentIcon,
|
|
2296
2297
|
FlatList,
|
|
2297
2298
|
forceAlignMessages,
|
|
2298
|
-
formatDate,
|
|
2299
2299
|
Gallery,
|
|
2300
2300
|
getMessagesGroupStyles,
|
|
2301
2301
|
Giphy,
|
|
@@ -2326,6 +2326,7 @@ const ChannelWithContext = <
|
|
|
2326
2326
|
MessageContent,
|
|
2327
2327
|
messageContentOrder,
|
|
2328
2328
|
MessageDeleted,
|
|
2329
|
+
MessageEditedTimestamp,
|
|
2329
2330
|
MessageError,
|
|
2330
2331
|
MessageFooter,
|
|
2331
2332
|
MessageHeader,
|
|
@@ -27,7 +27,6 @@ export const useCreateMessagesContext = <
|
|
|
27
27
|
FileAttachmentIcon,
|
|
28
28
|
FlatList,
|
|
29
29
|
forceAlignMessages,
|
|
30
|
-
formatDate,
|
|
31
30
|
Gallery,
|
|
32
31
|
getMessagesGroupStyles,
|
|
33
32
|
Giphy,
|
|
@@ -58,6 +57,7 @@ export const useCreateMessagesContext = <
|
|
|
58
57
|
MessageContent,
|
|
59
58
|
messageContentOrder,
|
|
60
59
|
MessageDeleted,
|
|
60
|
+
MessageEditedTimestamp,
|
|
61
61
|
MessageError,
|
|
62
62
|
MessageFooter,
|
|
63
63
|
MessageHeader,
|
|
@@ -123,7 +123,6 @@ export const useCreateMessagesContext = <
|
|
|
123
123
|
FileAttachmentIcon,
|
|
124
124
|
FlatList,
|
|
125
125
|
forceAlignMessages,
|
|
126
|
-
formatDate,
|
|
127
126
|
Gallery,
|
|
128
127
|
getMessagesGroupStyles,
|
|
129
128
|
Giphy,
|
|
@@ -154,6 +153,7 @@ export const useCreateMessagesContext = <
|
|
|
154
153
|
MessageContent,
|
|
155
154
|
messageContentOrder,
|
|
156
155
|
MessageDeleted,
|
|
156
|
+
MessageEditedTimestamp,
|
|
157
157
|
MessageError,
|
|
158
158
|
MessageFooter,
|
|
159
159
|
MessageHeader,
|
|
@@ -166,7 +166,7 @@ const getLatestMessageReadStatus = <
|
|
|
166
166
|
return MessageReadStatus.NOT_SENT_BY_CURRENT_USER;
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
const readList = channel.state.read;
|
|
169
|
+
const readList = { ...channel.state.read };
|
|
170
170
|
if (currentUserId) {
|
|
171
171
|
delete readList[currentUserId];
|
|
172
172
|
}
|