stream-chat-react-native-core 5.24.0-beta.3 → 5.24.0-beta.5
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 +30 -22
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js +2 -0
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js +28 -6
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageBounce.js +84 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageBounce.js.map +1 -0
- package/lib/commonjs/components/Message/hooks/useMessageActionHandlers.js.map +1 -1
- package/lib/commonjs/components/Message/hooks/useMessageActions.js.map +1 -1
- package/lib/commonjs/components/MessageInput/SendButton.js +2 -2
- package/lib/commonjs/components/MessageInput/SendButton.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/messageInputContext/MessageInputContext.js +18 -8
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/hooks/useMessageDetailsForState.js +4 -8
- package/lib/commonjs/contexts/messageInputContext/hooks/useMessageDetailsForState.js.map +1 -1
- package/lib/commonjs/contexts/messagesContext/MessagesContext.js +2 -2
- package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/commonjs/i18n/en.json +3 -0
- package/lib/commonjs/i18n/es.json +4 -1
- package/lib/commonjs/i18n/fr.json +14 -11
- package/lib/commonjs/i18n/he.json +4 -1
- package/lib/commonjs/i18n/hi.json +14 -11
- package/lib/commonjs/i18n/it.json +14 -11
- package/lib/commonjs/i18n/ja.json +4 -1
- package/lib/commonjs/i18n/ko.json +4 -1
- package/lib/commonjs/i18n/nl.json +14 -11
- package/lib/commonjs/i18n/ru.json +14 -11
- package/lib/commonjs/i18n/tr.json +14 -11
- package/lib/commonjs/utils/removeReservedFields.js +1 -1
- package/lib/commonjs/utils/removeReservedFields.js.map +1 -1
- 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 +30 -22
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js +2 -0
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/module/components/Message/Message.js +28 -6
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageBounce.js +84 -0
- package/lib/module/components/Message/MessageSimple/MessageBounce.js.map +1 -0
- package/lib/module/components/Message/hooks/useMessageActionHandlers.js.map +1 -1
- package/lib/module/components/Message/hooks/useMessageActions.js.map +1 -1
- package/lib/module/components/MessageInput/SendButton.js +2 -2
- package/lib/module/components/MessageInput/SendButton.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/messageInputContext/MessageInputContext.js +18 -8
- package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/module/contexts/messageInputContext/hooks/useMessageDetailsForState.js +4 -8
- package/lib/module/contexts/messageInputContext/hooks/useMessageDetailsForState.js.map +1 -1
- package/lib/module/contexts/messagesContext/MessagesContext.js +2 -2
- package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/module/i18n/en.json +3 -0
- package/lib/module/i18n/es.json +4 -1
- package/lib/module/i18n/fr.json +14 -11
- package/lib/module/i18n/he.json +4 -1
- package/lib/module/i18n/hi.json +14 -11
- package/lib/module/i18n/it.json +14 -11
- package/lib/module/i18n/ja.json +4 -1
- package/lib/module/i18n/ko.json +4 -1
- package/lib/module/i18n/nl.json +14 -11
- package/lib/module/i18n/ru.json +14 -11
- package/lib/module/i18n/tr.json +14 -11
- package/lib/module/utils/removeReservedFields.js +1 -1
- package/lib/module/utils/removeReservedFields.js.map +1 -1
- 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/hooks/useCreateMessagesContext.d.ts +1 -1
- package/lib/typescript/components/Message/Message.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageBounce.d.ts +12 -0
- package/lib/typescript/components/MessageList/utils/getReadStates.d.ts +1 -0
- package/lib/typescript/components/index.d.ts +1 -0
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts +6 -2
- package/lib/typescript/contexts/messageInputContext/hooks/useMessageDetailsForState.d.ts +1 -2
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +7 -2
- package/lib/typescript/i18n/en.json +3 -0
- package/lib/typescript/i18n/es.json +4 -1
- package/lib/typescript/i18n/fr.json +14 -11
- package/lib/typescript/i18n/he.json +4 -1
- package/lib/typescript/i18n/hi.json +14 -11
- package/lib/typescript/i18n/it.json +14 -11
- package/lib/typescript/i18n/ja.json +4 -1
- package/lib/typescript/i18n/ko.json +4 -1
- package/lib/typescript/i18n/nl.json +14 -11
- package/lib/typescript/i18n/ru.json +14 -11
- package/lib/typescript/i18n/tr.json +14 -11
- package/lib/typescript/utils/Streami18n.d.ts +3 -0
- package/lib/typescript/utils/removeReservedFields.d.ts +2 -1
- package/lib/typescript/utils/utils.d.ts +11 -0
- package/package.json +2 -2
- package/src/components/Channel/Channel.tsx +26 -7
- package/src/components/Channel/hooks/useCreateMessagesContext.ts +2 -0
- package/src/components/Message/Message.tsx +26 -2
- package/src/components/Message/MessageSimple/MessageBounce.tsx +119 -0
- package/src/components/Message/hooks/useMessageActionHandlers.ts +1 -2
- package/src/components/Message/hooks/useMessageActions.tsx +1 -1
- package/src/components/MessageInput/SendButton.tsx +2 -2
- package/src/components/index.ts +1 -0
- package/src/contexts/messageInputContext/MessageInputContext.tsx +24 -6
- package/src/contexts/messageInputContext/__tests__/sendMessage.test.tsx +8 -8
- package/src/contexts/messageInputContext/__tests__/updateMessage.test.tsx +1 -1
- package/src/contexts/messageInputContext/__tests__/useMessageDetailsForState.test.tsx +6 -1
- package/src/contexts/messageInputContext/hooks/useMessageDetailsForState.ts +3 -9
- package/src/contexts/messagesContext/MessagesContext.tsx +7 -2
- package/src/i18n/en.json +3 -0
- package/src/i18n/es.json +4 -1
- package/src/i18n/fr.json +14 -11
- package/src/i18n/he.json +4 -1
- package/src/i18n/hi.json +14 -11
- package/src/i18n/it.json +14 -11
- package/src/i18n/ja.json +4 -1
- package/src/i18n/ko.json +4 -1
- package/src/i18n/nl.json +14 -11
- package/src/i18n/ru.json +14 -11
- package/src/i18n/tr.json +14 -11
- package/src/utils/removeReservedFields.ts +5 -2
- package/src/utils/utils.ts +16 -0
- package/src/version.json +1 -1
|
@@ -5,33 +5,35 @@
|
|
|
5
5
|
"Allow camera access in device settings": "Autoriser l'accès à la caméra dans les paramètres de l'appareil",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
8
9
|
"Block User": "",
|
|
9
10
|
"Cancel": "",
|
|
10
11
|
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
11
13
|
"Copy Message": "",
|
|
12
14
|
"Delete": "",
|
|
13
15
|
"Delete Message": "",
|
|
14
16
|
"Device camera is used to take photos or videos.": "L'appareil photo de l'appareil est utilisé pour prendre des photos ou des vidéos.",
|
|
15
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
18
|
"Edit Message": "",
|
|
17
|
-
"Editing Message": "",
|
|
18
|
-
"Emoji matching": "",
|
|
19
|
+
"Editing Message": "Édite un message",
|
|
20
|
+
"Emoji matching": "Correspondance Emoji",
|
|
19
21
|
"Empty message...": "",
|
|
20
22
|
"Error loading": "",
|
|
21
23
|
"Error loading channel list...": "",
|
|
22
24
|
"Error loading messages for this channel...": "",
|
|
23
25
|
"Error while loading, please reload/refresh": "",
|
|
24
|
-
"File type not supported": "
|
|
26
|
+
"File type not supported": "",
|
|
25
27
|
"Flag": "",
|
|
26
28
|
"Flag Message": "",
|
|
27
29
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
30
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "",
|
|
31
|
+
"Instant Commands": "Commandes Instantanées",
|
|
30
32
|
"Let's start chatting!": "",
|
|
31
|
-
"Links are disabled": "
|
|
32
|
-
"Loading channels...": "",
|
|
33
|
-
"Loading messages...": "",
|
|
34
|
-
"Loading...": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "Chargement des canaux...",
|
|
35
|
+
"Loading messages...": "Chargement des messages...",
|
|
36
|
+
"Loading...": "Chargement...",
|
|
35
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
36
38
|
"Message Reactions": "",
|
|
37
39
|
"Message deleted": "",
|
|
@@ -40,12 +42,12 @@
|
|
|
40
42
|
"Not supported": "Non pris en charge",
|
|
41
43
|
"Nothing yet...": "",
|
|
42
44
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "
|
|
45
|
+
"Only visible to you": "",
|
|
44
46
|
"Open Settings": "Ouvrir les paramètres",
|
|
45
47
|
"Photo": "",
|
|
46
48
|
"Photos and Videos": "Photos et vidéos",
|
|
47
49
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "
|
|
50
|
+
"Pinned by": "",
|
|
49
51
|
"Please enable access to your photos and videos so you can share them.": "Veuillez autoriser l'accès à vos photos et vidéos afin de pouvoir les partager.",
|
|
50
52
|
"Please select a channel first": "Veuillez d'abord selectionnez un canal",
|
|
51
53
|
"Reconnecting...": "",
|
|
@@ -54,8 +56,9 @@
|
|
|
54
56
|
"Resend": "",
|
|
55
57
|
"Search GIFs": "Rechercher des GIF",
|
|
56
58
|
"Select More Photos": "Sélectionner plus de photos",
|
|
59
|
+
"Send Anyway": "",
|
|
57
60
|
"Send a message": "Envoyer un message",
|
|
58
|
-
"Sending links is not allowed in this conversation": "
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
59
62
|
"Slow mode ON": "Mode lent activé",
|
|
60
63
|
"The message has been reported to a moderator.": "",
|
|
61
64
|
"Thread Reply": "",
|
|
@@ -73,5 +73,8 @@
|
|
|
73
73
|
"How about sending your first message to a friend?": "מה דעתך לשלוח את ההודעה הראשונה שלך לחבר?",
|
|
74
74
|
"Allow camera access in device settings": "אפשר גישה למצלמה בהגדרות המכשיר",
|
|
75
75
|
"Device camera is used to take photos or videos.": "מצלמת המכשיר משמשת לצילום תמונות או סרטונים.",
|
|
76
|
-
"Open Settings": "פתח את ההגדרות"
|
|
76
|
+
"Open Settings": "פתח את ההגדרות",
|
|
77
|
+
"Send Anyway": "שלח בכל זאת",
|
|
78
|
+
"Are you sure?": "האם אתה בטוח?",
|
|
79
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "שקול איך התגובה שלך עשויה להשפיע על אחרים ווודא שאתה עוקב אחר ההנחיות של הקהילה שלנו"
|
|
77
80
|
}
|
|
@@ -5,33 +5,35 @@
|
|
|
5
5
|
"Allow camera access in device settings": "डिवाइस सेटिंग्स में कैमरा एक्सेस की अनुमति दें",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
8
9
|
"Block User": "",
|
|
9
10
|
"Cancel": "",
|
|
10
11
|
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
11
13
|
"Copy Message": "",
|
|
12
14
|
"Delete": "",
|
|
13
15
|
"Delete Message": "",
|
|
14
16
|
"Device camera is used to take photos or videos.": "डिवाइस कैमरे का उपयोग फ़ोटो या वीडियो लेने के लिए किया जाता है।",
|
|
15
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
18
|
"Edit Message": "",
|
|
17
|
-
"Editing Message": "",
|
|
18
|
-
"Emoji matching": "",
|
|
19
|
+
"Editing Message": "मैसेज बदला जा रहा है",
|
|
20
|
+
"Emoji matching": "इमोजी मिलान",
|
|
19
21
|
"Empty message...": "",
|
|
20
22
|
"Error loading": "",
|
|
21
23
|
"Error loading channel list...": "",
|
|
22
24
|
"Error loading messages for this channel...": "",
|
|
23
25
|
"Error while loading, please reload/refresh": "",
|
|
24
|
-
"File type not supported": "
|
|
26
|
+
"File type not supported": "",
|
|
25
27
|
"Flag": "",
|
|
26
28
|
"Flag Message": "",
|
|
27
29
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
30
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "",
|
|
31
|
+
"Instant Commands": "त्वरित कमांड",
|
|
30
32
|
"Let's start chatting!": "",
|
|
31
|
-
"Links are disabled": "
|
|
32
|
-
"Loading channels...": "",
|
|
33
|
-
"Loading messages...": "",
|
|
34
|
-
"Loading...": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "चैनल लोड हो रहे हैं...",
|
|
35
|
+
"Loading messages...": "मेसेजस लोड हो रहे हैं...",
|
|
36
|
+
"Loading...": "लोड हो रहा है...",
|
|
35
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
36
38
|
"Message Reactions": "",
|
|
37
39
|
"Message deleted": "",
|
|
@@ -40,12 +42,12 @@
|
|
|
40
42
|
"Not supported": "समर्थित नहीं",
|
|
41
43
|
"Nothing yet...": "",
|
|
42
44
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "
|
|
45
|
+
"Only visible to you": "",
|
|
44
46
|
"Open Settings": "सेटिंग्स खोलें",
|
|
45
47
|
"Photo": "",
|
|
46
48
|
"Photos and Videos": "तस्वीरें और वीडियों",
|
|
47
49
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "
|
|
50
|
+
"Pinned by": "",
|
|
49
51
|
"Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
|
|
50
52
|
"Please select a channel first": "कृपया पहले एक चैनल चुनें",
|
|
51
53
|
"Reconnecting...": "",
|
|
@@ -54,8 +56,9 @@
|
|
|
54
56
|
"Resend": "",
|
|
55
57
|
"Search GIFs": "GIF खोजें",
|
|
56
58
|
"Select More Photos": "अधिक फ़ोटो चुनें",
|
|
59
|
+
"Send Anyway": "",
|
|
57
60
|
"Send a message": "एक संदेश भेजें",
|
|
58
|
-
"Sending links is not allowed in this conversation": "
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
59
62
|
"Slow mode ON": "स्लो मोड चालू",
|
|
60
63
|
"The message has been reported to a moderator.": "",
|
|
61
64
|
"Thread Reply": "",
|
|
@@ -5,33 +5,35 @@
|
|
|
5
5
|
"Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
8
9
|
"Block User": "",
|
|
9
10
|
"Cancel": "",
|
|
10
11
|
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
11
13
|
"Copy Message": "",
|
|
12
14
|
"Delete": "",
|
|
13
15
|
"Delete Message": "",
|
|
14
16
|
"Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
|
|
15
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
18
|
"Edit Message": "",
|
|
17
|
-
"Editing Message": "",
|
|
18
|
-
"Emoji matching": "",
|
|
19
|
+
"Editing Message": "Modificando il Messaggio",
|
|
20
|
+
"Emoji matching": "Abbinamento emoji",
|
|
19
21
|
"Empty message...": "",
|
|
20
22
|
"Error loading": "",
|
|
21
23
|
"Error loading channel list...": "",
|
|
22
24
|
"Error loading messages for this channel...": "",
|
|
23
25
|
"Error while loading, please reload/refresh": "",
|
|
24
|
-
"File type not supported": "
|
|
26
|
+
"File type not supported": "",
|
|
25
27
|
"Flag": "",
|
|
26
28
|
"Flag Message": "",
|
|
27
29
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
30
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "",
|
|
31
|
+
"Instant Commands": "Comandi Istantanei",
|
|
30
32
|
"Let's start chatting!": "",
|
|
31
|
-
"Links are disabled": "
|
|
32
|
-
"Loading channels...": "",
|
|
33
|
-
"Loading messages...": "",
|
|
34
|
-
"Loading...": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "Caricamento canali in corso...",
|
|
35
|
+
"Loading messages...": "Caricamento messaggi...",
|
|
36
|
+
"Loading...": "Caricamento...",
|
|
35
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
36
38
|
"Message Reactions": "",
|
|
37
39
|
"Message deleted": "",
|
|
@@ -40,12 +42,12 @@
|
|
|
40
42
|
"Not supported": "non supportato",
|
|
41
43
|
"Nothing yet...": "",
|
|
42
44
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "
|
|
45
|
+
"Only visible to you": "",
|
|
44
46
|
"Open Settings": "Apri Impostazioni",
|
|
45
47
|
"Photo": "",
|
|
46
48
|
"Photos and Videos": "Foto e Video",
|
|
47
49
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "
|
|
50
|
+
"Pinned by": "",
|
|
49
51
|
"Please enable access to your photos and videos so you can share them.": "Abilita l'accesso alle tue foto e ai tuoi video in modo da poterli condividere.",
|
|
50
52
|
"Please select a channel first": "Seleziona un canale",
|
|
51
53
|
"Reconnecting...": "",
|
|
@@ -54,8 +56,9 @@
|
|
|
54
56
|
"Resend": "",
|
|
55
57
|
"Search GIFs": "Cerca GIF",
|
|
56
58
|
"Select More Photos": "Seleziona Altre foto",
|
|
59
|
+
"Send Anyway": "",
|
|
57
60
|
"Send a message": "Mandare un messaggio",
|
|
58
|
-
"Sending links is not allowed in this conversation": "
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
59
62
|
"Slow mode ON": "Slowmode attiva",
|
|
60
63
|
"The message has been reported to a moderator.": "",
|
|
61
64
|
"Thread Reply": "",
|
|
@@ -76,5 +76,8 @@
|
|
|
76
76
|
"How about sending your first message to a friend?": "初めてのメッセージを友達に送ってみてはいかがでしょうか?",
|
|
77
77
|
"Allow camera access in device settings": "デバイス設定でカメラへのアクセスを許可する",
|
|
78
78
|
"Device camera is used to take photos or videos.": "デバイスのカメラは写真やビデオの撮影に使用されます。",
|
|
79
|
-
"Open Settings": "設定を開く"
|
|
79
|
+
"Open Settings": "設定を開く",
|
|
80
|
+
"Send Anyway": "とにかく送信",
|
|
81
|
+
"Are you sure?": "本当によろしいですか?",
|
|
82
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "あなたのコメントが他の人にどのように影響するか考え、必ずコミュニティガイドラインに従ってください"
|
|
80
83
|
}
|
|
@@ -75,5 +75,8 @@
|
|
|
75
75
|
"How about sending your first message to a friend?": "친구에게 첫 번째 메시지를 보내는 것은 어떻습니까?",
|
|
76
76
|
"Allow camera access in device settings": "기기 설정에서 카메라 액세스를 허용하세요.",
|
|
77
77
|
"Device camera is used to take photos or videos.": "기기 카메라는 사진이나 동영상을 촬영하는 데 사용됩니다.",
|
|
78
|
-
"Open Settings": "설정 열기"
|
|
78
|
+
"Open Settings": "설정 열기",
|
|
79
|
+
"Send Anyway": "그래도 보내기",
|
|
80
|
+
"Are you sure?": "확실합니까?",
|
|
81
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "당신의 댓글이 다른 사람들에게 어떤 영향을 줄지 고려하고 반드시 우리의 커뮤니티 가이드라인을 따르십시오"
|
|
79
82
|
}
|
|
@@ -5,33 +5,35 @@
|
|
|
5
5
|
"Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
8
9
|
"Block User": "",
|
|
9
10
|
"Cancel": "",
|
|
10
11
|
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
11
13
|
"Copy Message": "",
|
|
12
14
|
"Delete": "",
|
|
13
15
|
"Delete Message": "",
|
|
14
16
|
"Device camera is used to take photos or videos.": "De camera van het apparaat wordt gebruikt om foto's of video's te maken.",
|
|
15
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
18
|
"Edit Message": "",
|
|
17
|
-
"Editing Message": "",
|
|
18
|
-
"Emoji matching": "",
|
|
19
|
+
"Editing Message": "Bericht aanpassen",
|
|
20
|
+
"Emoji matching": "Emoji-overeenkomsten",
|
|
19
21
|
"Empty message...": "",
|
|
20
22
|
"Error loading": "",
|
|
21
23
|
"Error loading channel list...": "",
|
|
22
24
|
"Error loading messages for this channel...": "",
|
|
23
25
|
"Error while loading, please reload/refresh": "",
|
|
24
|
-
"File type not supported": "
|
|
26
|
+
"File type not supported": "",
|
|
25
27
|
"Flag": "",
|
|
26
28
|
"Flag Message": "",
|
|
27
29
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
30
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "",
|
|
31
|
+
"Instant Commands": "Directe Opdrachten",
|
|
30
32
|
"Let's start chatting!": "",
|
|
31
|
-
"Links are disabled": "
|
|
32
|
-
"Loading channels...": "",
|
|
33
|
-
"Loading messages...": "",
|
|
34
|
-
"Loading...": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "Kanalen aan het laden...",
|
|
35
|
+
"Loading messages...": "Berichten aan het laden...",
|
|
36
|
+
"Loading...": "Aan het laden...",
|
|
35
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
36
38
|
"Message Reactions": "",
|
|
37
39
|
"Message deleted": "",
|
|
@@ -40,12 +42,12 @@
|
|
|
40
42
|
"Not supported": "niet ondersteund",
|
|
41
43
|
"Nothing yet...": "",
|
|
42
44
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "
|
|
45
|
+
"Only visible to you": "",
|
|
44
46
|
"Open Settings": "Open instellingen",
|
|
45
47
|
"Photo": "",
|
|
46
48
|
"Photos and Videos": "Foto's en video's",
|
|
47
49
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "
|
|
50
|
+
"Pinned by": "",
|
|
49
51
|
"Please enable access to your photos and videos so you can share them.": "Schakel toegang tot uw foto's en video's in zodat u ze kunt delen.",
|
|
50
52
|
"Please select a channel first": "Selecteer eerst een kanaal",
|
|
51
53
|
"Reconnecting...": "",
|
|
@@ -54,8 +56,9 @@
|
|
|
54
56
|
"Resend": "",
|
|
55
57
|
"Search GIFs": "Zoek GIF's",
|
|
56
58
|
"Select More Photos": "Selecteer Meer foto's",
|
|
59
|
+
"Send Anyway": "",
|
|
57
60
|
"Send a message": "Stuur een bericht",
|
|
58
|
-
"Sending links is not allowed in this conversation": "
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
59
62
|
"Slow mode ON": "Langzame modus aan",
|
|
60
63
|
"The message has been reported to a moderator.": "",
|
|
61
64
|
"Thread Reply": "",
|
|
@@ -5,33 +5,35 @@
|
|
|
5
5
|
"Allow camera access in device settings": "Разрешите доступ к камере в настройках устройства.",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
8
9
|
"Block User": "",
|
|
9
10
|
"Cancel": "",
|
|
10
11
|
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
11
13
|
"Copy Message": "",
|
|
12
14
|
"Delete": "",
|
|
13
15
|
"Delete Message": "",
|
|
14
16
|
"Device camera is used to take photos or videos.": "Камера устройства используется для съемки фотографий или видео.",
|
|
15
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
18
|
"Edit Message": "",
|
|
17
|
-
"Editing Message": "",
|
|
18
|
-
"Emoji matching": "",
|
|
19
|
+
"Editing Message": "Редактирование сообщения",
|
|
20
|
+
"Emoji matching": "Соответствие эмодзи",
|
|
19
21
|
"Empty message...": "",
|
|
20
22
|
"Error loading": "",
|
|
21
23
|
"Error loading channel list...": "",
|
|
22
24
|
"Error loading messages for this channel...": "",
|
|
23
25
|
"Error while loading, please reload/refresh": "",
|
|
24
|
-
"File type not supported": "
|
|
26
|
+
"File type not supported": "",
|
|
25
27
|
"Flag": "",
|
|
26
28
|
"Flag Message": "",
|
|
27
29
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
30
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "",
|
|
31
|
+
"Instant Commands": "Мгновенные Команды",
|
|
30
32
|
"Let's start chatting!": "",
|
|
31
|
-
"Links are disabled": "
|
|
32
|
-
"Loading channels...": "",
|
|
33
|
-
"Loading messages...": "",
|
|
34
|
-
"Loading...": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "Загружаю каналы...",
|
|
35
|
+
"Loading messages...": "Загружаю сообщения...",
|
|
36
|
+
"Loading...": "Загружаю...",
|
|
35
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
36
38
|
"Message Reactions": "",
|
|
37
39
|
"Message deleted": "",
|
|
@@ -40,12 +42,12 @@
|
|
|
40
42
|
"Not supported": "не поддерживается",
|
|
41
43
|
"Nothing yet...": "",
|
|
42
44
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "
|
|
45
|
+
"Only visible to you": "",
|
|
44
46
|
"Open Settings": "Открыть настройки",
|
|
45
47
|
"Photo": "",
|
|
46
48
|
"Photos and Videos": "Фото и видео",
|
|
47
49
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "
|
|
50
|
+
"Pinned by": "",
|
|
49
51
|
"Please enable access to your photos and videos so you can share them.": "Разрешите доступ к своим фотографиям и видео, чтобы вы могли ими поделиться.",
|
|
50
52
|
"Please select a channel first": "Пожалуйста, сначала выберите канал",
|
|
51
53
|
"Reconnecting...": "",
|
|
@@ -54,8 +56,9 @@
|
|
|
54
56
|
"Resend": "",
|
|
55
57
|
"Search GIFs": "Поиск GIF",
|
|
56
58
|
"Select More Photos": "Выбрать больше фотографий",
|
|
59
|
+
"Send Anyway": "",
|
|
57
60
|
"Send a message": "Отправить сообщение",
|
|
58
|
-
"Sending links is not allowed in this conversation": "
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
59
62
|
"Slow mode ON": "Медленный режим включен",
|
|
60
63
|
"The message has been reported to a moderator.": "",
|
|
61
64
|
"Thread Reply": "",
|
|
@@ -5,33 +5,35 @@
|
|
|
5
5
|
"Allow camera access in device settings": "Cihaz ayarlarında kamera erişimine izin ver",
|
|
6
6
|
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
8
9
|
"Block User": "",
|
|
9
10
|
"Cancel": "",
|
|
10
11
|
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
11
13
|
"Copy Message": "",
|
|
12
14
|
"Delete": "",
|
|
13
15
|
"Delete Message": "",
|
|
14
16
|
"Device camera is used to take photos or videos.": "Cihaz kamerası fotoğraf veya video çekmek için kullanılır.",
|
|
15
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
18
|
"Edit Message": "",
|
|
17
|
-
"Editing Message": "",
|
|
18
|
-
"Emoji matching": "",
|
|
19
|
+
"Editing Message": "Mesaj Düzenleniyor",
|
|
20
|
+
"Emoji matching": "Emoji eşleştirme",
|
|
19
21
|
"Empty message...": "",
|
|
20
22
|
"Error loading": "",
|
|
21
23
|
"Error loading channel list...": "",
|
|
22
24
|
"Error loading messages for this channel...": "",
|
|
23
25
|
"Error while loading, please reload/refresh": "",
|
|
24
|
-
"File type not supported": "
|
|
26
|
+
"File type not supported": "",
|
|
25
27
|
"Flag": "",
|
|
26
28
|
"Flag Message": "",
|
|
27
29
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
30
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "",
|
|
31
|
+
"Instant Commands": "Anlık Komutlar",
|
|
30
32
|
"Let's start chatting!": "",
|
|
31
|
-
"Links are disabled": "
|
|
32
|
-
"Loading channels...": "",
|
|
33
|
-
"Loading messages...": "",
|
|
34
|
-
"Loading...": "",
|
|
33
|
+
"Links are disabled": "",
|
|
34
|
+
"Loading channels...": "Kanallar yükleniyor...",
|
|
35
|
+
"Loading messages...": "Mesajlar yükleniyor...",
|
|
36
|
+
"Loading...": "Yükleniyor...",
|
|
35
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
36
38
|
"Message Reactions": "",
|
|
37
39
|
"Message deleted": "",
|
|
@@ -40,12 +42,12 @@
|
|
|
40
42
|
"Not supported": "Desteklenmiyor",
|
|
41
43
|
"Nothing yet...": "",
|
|
42
44
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "
|
|
45
|
+
"Only visible to you": "",
|
|
44
46
|
"Open Settings": "Ayarları aç",
|
|
45
47
|
"Photo": "",
|
|
46
48
|
"Photos and Videos": "Fotoğraflar ve Videolar",
|
|
47
49
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "
|
|
50
|
+
"Pinned by": "",
|
|
49
51
|
"Please enable access to your photos and videos so you can share them.": "Paylaşım yapabilmek için lutfen fotoğraflarınıza ve videolarınıza erişimi etkinleştirin.",
|
|
50
52
|
"Please select a channel first": "Lütfen önce bir kanal seçiniz",
|
|
51
53
|
"Reconnecting...": "",
|
|
@@ -54,8 +56,9 @@
|
|
|
54
56
|
"Resend": "",
|
|
55
57
|
"Search GIFs": "GIF Ara",
|
|
56
58
|
"Select More Photos": "Daha Fazla Fotoğraf Seçin",
|
|
59
|
+
"Send Anyway": "",
|
|
57
60
|
"Send a message": "Mesaj gönder",
|
|
58
|
-
"Sending links is not allowed in this conversation": "
|
|
61
|
+
"Sending links is not allowed in this conversation": "",
|
|
59
62
|
"Slow mode ON": "Yavaş Mod Açık",
|
|
60
63
|
"The message has been reported to a moderator.": "",
|
|
61
64
|
"Thread Reply": "",
|
|
@@ -119,9 +119,11 @@ export declare class Streami18n {
|
|
|
119
119
|
"Allow camera access in device settings": string;
|
|
120
120
|
"Also send to channel": string;
|
|
121
121
|
"Are you sure you want to permanently delete this message?": string;
|
|
122
|
+
"Are you sure?": string;
|
|
122
123
|
"Block User": string;
|
|
123
124
|
Cancel: string;
|
|
124
125
|
"Cannot Flag Message": string;
|
|
126
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": string;
|
|
125
127
|
"Copy Message": string;
|
|
126
128
|
Delete: string;
|
|
127
129
|
"Delete Message": string;
|
|
@@ -168,6 +170,7 @@ export declare class Streami18n {
|
|
|
168
170
|
Resend: string;
|
|
169
171
|
"Search GIFs": string;
|
|
170
172
|
"Select More Photos": string;
|
|
173
|
+
"Send Anyway": string;
|
|
171
174
|
"Send a message": string;
|
|
172
175
|
"Sending links is not allowed in this conversation": string;
|
|
173
176
|
"Slow mode ON": string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MessageResponse } from 'stream-chat';
|
|
1
2
|
import type { MessageType } from '../components/MessageList/hooks/useMessageList';
|
|
2
3
|
import type { DefaultStreamChatGenerics } from '../types/types';
|
|
3
|
-
export declare const removeReservedFields: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(message: MessageType<StreamChatGenerics>) => MessageType<StreamChatGenerics>;
|
|
4
|
+
export declare const removeReservedFields: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(message: MessageType<StreamChatGenerics> | MessageResponse<StreamChatGenerics>) => MessageType<StreamChatGenerics> | MessageResponse<StreamChatGenerics>;
|
|
@@ -33,7 +33,18 @@ export declare const MessageStatusTypes: {
|
|
|
33
33
|
export declare type FileStateValue = typeof FileState[keyof typeof FileState];
|
|
34
34
|
declare type Progress = ValueOf<typeof ProgressIndicatorTypes>;
|
|
35
35
|
export declare const getIndicatorTypeForFileState: (fileState: FileStateValue, enableOfflineSupport: boolean) => Progress | null;
|
|
36
|
+
/**
|
|
37
|
+
* Utility to check if the message is a Blocked message.
|
|
38
|
+
* @param message
|
|
39
|
+
* @returns boolean
|
|
40
|
+
*/
|
|
36
41
|
export declare const isBlockedMessage: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(message: TableRowJoinedUser<"messages"> | MessageType<StreamChatGenerics>) => boolean | "" | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* Utility to check if the message is a Bounced message.
|
|
44
|
+
* @param message
|
|
45
|
+
* @returns boolean
|
|
46
|
+
*/
|
|
47
|
+
export declare const isBouncedMessage: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(message: MessageType<StreamChatGenerics>) => boolean;
|
|
37
48
|
export declare const queryMembersDebounced: DebouncedFunc<(<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(channel: Channel<StreamChatGenerics>, query: SuggestionUser<StreamChatGenerics>["name"], onReady?: ((users: SuggestionUser<StreamChatGenerics>[]) => void) | undefined, options?: {
|
|
38
49
|
limit?: number;
|
|
39
50
|
}) => Promise<void>)>;
|
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.24.0-beta.
|
|
4
|
+
"version": "5.24.0-beta.5",
|
|
5
5
|
"author": {
|
|
6
6
|
"company": "Stream.io Inc",
|
|
7
7
|
"name": "Stream.io Inc"
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"path": "0.12.7",
|
|
81
81
|
"react-native-markdown-package": "1.8.2",
|
|
82
82
|
"react-native-url-polyfill": "^1.3.0",
|
|
83
|
-
"stream-chat": "8.
|
|
83
|
+
"stream-chat": "8.15.0"
|
|
84
84
|
},
|
|
85
85
|
"peerDependencies": {
|
|
86
86
|
"react-native-quick-sqlite": ">=5.1.0",
|
|
@@ -82,7 +82,14 @@ import { compressedImageURI } from '../../utils/compressImage';
|
|
|
82
82
|
import { DBSyncManager } from '../../utils/DBSyncManager';
|
|
83
83
|
import { patchMessageTextCommand } from '../../utils/patchMessageTextCommand';
|
|
84
84
|
import { removeReactionFromLocalState } from '../../utils/removeReactionFromLocalState';
|
|
85
|
-
import {
|
|
85
|
+
import { removeReservedFields } from '../../utils/removeReservedFields';
|
|
86
|
+
import {
|
|
87
|
+
generateRandomId,
|
|
88
|
+
isBouncedMessage,
|
|
89
|
+
isLocalUrl,
|
|
90
|
+
MessageStatusTypes,
|
|
91
|
+
ReactionData,
|
|
92
|
+
} from '../../utils/utils';
|
|
86
93
|
import { Attachment as AttachmentDefault } from '../Attachment/Attachment';
|
|
87
94
|
import { AttachmentActions as AttachmentActionsDefault } from '../Attachment/AttachmentActions';
|
|
88
95
|
import { AudioAttachment as AudioAttachmentDefault } from '../Attachment/AudioAttachment';
|
|
@@ -107,6 +114,7 @@ import { LoadingIndicator as LoadingIndicatorDefault } from '../Indicators/Loadi
|
|
|
107
114
|
import { KeyboardCompatibleView as KeyboardCompatibleViewDefault } from '../KeyboardCompatibleView/KeyboardCompatibleView';
|
|
108
115
|
import { Message as MessageDefault } from '../Message/Message';
|
|
109
116
|
import { MessageAvatar as MessageAvatarDefault } from '../Message/MessageSimple/MessageAvatar';
|
|
117
|
+
import { MessageBounce as MessageBounceDefault } from '../Message/MessageSimple/MessageBounce';
|
|
110
118
|
import { MessageContent as MessageContentDefault } from '../Message/MessageSimple/MessageContent';
|
|
111
119
|
import { MessageDeleted as MessageDeletedDefault } from '../Message/MessageSimple/MessageDeleted';
|
|
112
120
|
import { MessageError as MessageErrorDefault } from '../Message/MessageSimple/MessageError';
|
|
@@ -273,6 +281,7 @@ export type ChannelPropsWithContext<
|
|
|
273
281
|
| 'Message'
|
|
274
282
|
| 'messageActions'
|
|
275
283
|
| 'MessageAvatar'
|
|
284
|
+
| 'MessageBounce'
|
|
276
285
|
| 'MessageContent'
|
|
277
286
|
| 'messageContentOrder'
|
|
278
287
|
| 'MessageDeleted'
|
|
@@ -495,6 +504,7 @@ const ChannelWithContext = <
|
|
|
495
504
|
Message = MessageDefault,
|
|
496
505
|
messageActions,
|
|
497
506
|
MessageAvatar = MessageAvatarDefault,
|
|
507
|
+
MessageBounce = MessageBounceDefault,
|
|
498
508
|
MessageContent = MessageContentDefault,
|
|
499
509
|
messageContentOrder = ['quoted_reply', 'gallery', 'files', 'text', 'attachments'],
|
|
500
510
|
MessageDeleted = MessageDeletedDefault,
|
|
@@ -564,7 +574,7 @@ const ChannelWithContext = <
|
|
|
564
574
|
},
|
|
565
575
|
} = useTheme();
|
|
566
576
|
const [deleted, setDeleted] = useState(false);
|
|
567
|
-
const [editing, setEditing] = useState<
|
|
577
|
+
const [editing, setEditing] = useState<MessageType<StreamChatGenerics> | undefined>(undefined);
|
|
568
578
|
const [error, setError] = useState<Error | boolean>(false);
|
|
569
579
|
const [hasMore, setHasMore] = useState(true);
|
|
570
580
|
const [lastRead, setLastRead] = useState<ChannelContextValue<StreamChatGenerics>['lastRead']>();
|
|
@@ -1679,9 +1689,17 @@ const ChannelWithContext = <
|
|
|
1679
1689
|
status: MessageStatusTypes.SENDING,
|
|
1680
1690
|
};
|
|
1681
1691
|
|
|
1682
|
-
|
|
1692
|
+
const messageWithoutReservedFields = removeReservedFields(statusPendingMessage);
|
|
1693
|
+
|
|
1694
|
+
// For bounced messages, we don't need to update the message, instead always send a new message.
|
|
1695
|
+
if (!isBouncedMessage(message)) {
|
|
1696
|
+
updateMessage(messageWithoutReservedFields as MessageResponse<StreamChatGenerics>);
|
|
1697
|
+
}
|
|
1683
1698
|
|
|
1684
|
-
await sendMessageRequest(
|
|
1699
|
+
await sendMessageRequest(
|
|
1700
|
+
messageWithoutReservedFields as MessageResponse<StreamChatGenerics>,
|
|
1701
|
+
true,
|
|
1702
|
+
);
|
|
1685
1703
|
};
|
|
1686
1704
|
|
|
1687
1705
|
// hard limit to prevent you from scrolling faster than 1 page per 2 seconds
|
|
@@ -1843,10 +1861,10 @@ const ChannelWithContext = <
|
|
|
1843
1861
|
: client.updateMessage(updatedMessage);
|
|
1844
1862
|
|
|
1845
1863
|
const setEditingState: MessagesContextValue<StreamChatGenerics>['setEditingState'] = (
|
|
1846
|
-
|
|
1864
|
+
message,
|
|
1847
1865
|
) => {
|
|
1848
1866
|
clearQuotedMessageState();
|
|
1849
|
-
setEditing(
|
|
1867
|
+
setEditing(message);
|
|
1850
1868
|
};
|
|
1851
1869
|
|
|
1852
1870
|
const setQuotedMessageState: MessagesContextValue<StreamChatGenerics>['setQuotedMessageState'] = (
|
|
@@ -1856,7 +1874,7 @@ const ChannelWithContext = <
|
|
|
1856
1874
|
};
|
|
1857
1875
|
|
|
1858
1876
|
const clearEditingState: InputMessageInputContextValue<StreamChatGenerics>['clearEditingState'] =
|
|
1859
|
-
() => setEditing(
|
|
1877
|
+
() => setEditing(undefined);
|
|
1860
1878
|
|
|
1861
1879
|
const clearQuotedMessageState: InputMessageInputContextValue<StreamChatGenerics>['clearQuotedMessageState'] =
|
|
1862
1880
|
() => setQuotedMessage(false);
|
|
@@ -2223,6 +2241,7 @@ const ChannelWithContext = <
|
|
|
2223
2241
|
Message,
|
|
2224
2242
|
messageActions,
|
|
2225
2243
|
MessageAvatar,
|
|
2244
|
+
MessageBounce,
|
|
2226
2245
|
MessageContent,
|
|
2227
2246
|
messageContentOrder,
|
|
2228
2247
|
MessageDeleted,
|
|
@@ -54,6 +54,7 @@ export const useCreateMessagesContext = <
|
|
|
54
54
|
Message,
|
|
55
55
|
messageActions,
|
|
56
56
|
MessageAvatar,
|
|
57
|
+
MessageBounce,
|
|
57
58
|
MessageContent,
|
|
58
59
|
messageContentOrder,
|
|
59
60
|
MessageDeleted,
|
|
@@ -149,6 +150,7 @@ export const useCreateMessagesContext = <
|
|
|
149
150
|
Message,
|
|
150
151
|
messageActions,
|
|
151
152
|
MessageAvatar,
|
|
153
|
+
MessageBounce,
|
|
152
154
|
MessageContent,
|
|
153
155
|
messageContentOrder,
|
|
154
156
|
MessageDeleted,
|