Corrige a busca no whaticket

Estavam aparecendo mensagens novas na busca e a busca estava trazendo resultados da busca anterior
This commit is contained in:
Horgun
2022-09-19 15:00:06 -04:00
parent bfeeea0875
commit d39c0eb213
2 changed files with 4 additions and 3 deletions

View File

@@ -179,12 +179,12 @@ const reducer = (state, action) => {
type: "LOAD_TICKETS",
payload: tickets,
});
}, [tickets, status, searchParam]);
}, [tickets]);
useEffect(() => {
const socket = openSocket();
const shouldUpdateTicket = ticket =>
const shouldUpdateTicket = ticket => !searchParam &&
(!ticket.userId || ticket.userId === user?.id || showAll) &&
(!ticket.queueId || selectedQueueIds.indexOf(ticket.queueId) > -1);
@@ -244,7 +244,7 @@ const reducer = (state, action) => {
return () => {
socket.disconnect();
};
}, [status, showAll, user, selectedQueueIds]);
}, [status, searchParam, showAll, user, selectedQueueIds]);
useEffect(() => {
if (typeof updateCount === "function") {

View File

@@ -118,6 +118,7 @@ const TicketsManager = () => {
useEffect(() => {
if (tab === "search") {
searchInputRef.current.focus();
setSearchParam("");
}
}, [tab]);