Jelajahi Sumber

update chat after sending msg

sheva77 3 tahun lalu
induk
melakukan
830e74e1e7
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  1. 2 1
      chat_final_bootstrap/src/Actions/ActionsGqlUpsert.js

+ 2 - 1
chat_final_bootstrap/src/Actions/ActionsGqlUpsert.js

@@ -2,7 +2,7 @@
 //
 import { urlUploadConst } from "../const";
 import { actionPromise } from "../Reducers";
-import { gql } from "../Actions";
+import { gql, actionSearchMessagesByChatId } from "../Actions";
 
 export const actionMessageUpsert = ({ text, chatId }) => async (dispatch) => {
     console.log("actionMessageUpsert --- ", text, chatId);
@@ -25,6 +25,7 @@ export const actionMessageUpsert = ({ text, chatId }) => async (dispatch) => {
 
     if (msgData && msgData.data && msgData.data.MessageUpsert && msgData.data.MessageUpsert._id) {
         console.log("MessageUpsert - ", msgData);
+        dispatch(actionSearchMessagesByChatId(chatId));
     }
 };