Fix message key so that message status updates work

This commit is contained in:
Vitaliy Vlasov 2018-08-27 17:06:00 +03:00
parent 9136dd0d3f
commit 400e8b6d99
No known key found for this signature in database
GPG Key ID: A7D57C347F2B2964
1 changed files with 28 additions and 27 deletions

View File

@ -27,6 +27,7 @@
:as current-chat}]
(views/letsubs [chat-name [:get-current-chat-name]
{:keys [pending? whisper-identity photo-path]} [:get-current-chat-contact]]
[react/view
[react/view {:style styles/toolbar-chat-view}
[react/view {:style {:flex-direction :row
:flex 1}}
@ -59,7 +60,7 @@
[react/text {:style (styles/profile-actions-text colors/black)
:on-press #(re-frame/dispatch [:chat.ui/delete-chat-pressed chat-id])}
(i18n/label :t/delete-chat)]]]
[connectivity/error-view {:top 2}]))
[connectivity/error-view {:top 2}]]))
(views/defview message-author-name [{:keys [outgoing from] :as message}]
(views/letsubs [current-account [:get-current-account]
@ -170,7 +171,7 @@
[react/view
(doall
(for [[index {:keys [from content message-id type value] :as message-obj}] (map-indexed vector (reverse messages))]
^{:key (or message-id (str type value))}
^{:key message-obj}
[message content (= from current-public-key)
(assoc message-obj :group-chat group-chat
:current-public-key current-public-key)]))]]])))