2019-12-31 16:21:34 +00:00
|
|
|
import socket from "../socket";
|
|
|
|
import store from "../store";
|
|
|
|
|
|
|
|
socket.on("search:results", (response) => {
|
|
|
|
store.commit("messageSearchInProgress", false);
|
2020-04-23 16:50:45 +00:00
|
|
|
|
|
|
|
if (store.state.messageSearchResults) {
|
|
|
|
store.commit("addMessageSearchResults", response);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-12-31 16:21:34 +00:00
|
|
|
store.commit("messageSearchResults", response);
|
|
|
|
});
|