Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6987 | Rev 6990 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6987 Rev 6989
Línea 44... Línea 44...
44
        }
44
        }
Línea 45... Línea 45...
45
 
45
 
46
        const resConversations = data
46
        const resConversations = data
47
        const newConversations = resConversations.reduce(
47
        const newConversations = resConversations.reduce(
48
          (acum, conversation) => {
48
          (acum, conversation) => {
-
 
49
            const messageIndex = conversations.findIndex(({ uuid }) => {
-
 
50
              console.log(uuid)
49
            const messageIndex = conversations.findIndex(
51
              console.log(conversation.uuid)
50
              ({ uuid }) => uuid === conversation.uuid
52
              return uuid === conversation.uuid
Línea 51... Línea 53...
51
            )
53
            })
52
 
54
 
53
            if (messageIndex === -1) {
55
            if (messageIndex === -1) {
Línea 54... Línea 56...
54
              acum = [...acum, conversation]
56
              acum = [...acum, conversation]
55
            }
57
            }
56
 
58
 
57
            return acum
59
            return acum
Línea -... Línea 60...
-
 
60
          },
-
 
61
          []
58
          },
62
        )
59
          []
63
 
60
        )
64
        console.log(newConversations)
Línea 61... Línea 65...
61
 
65