Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3105 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3105 Rev 3106
Línea 141... Línea 141...
141
        return data.success
141
        return data.success
142
      } catch (error) {
142
      } catch (error) {
143
        console.log(`Error: ${error}`)
143
        console.log(`Error: ${error}`)
144
      }
144
      }
145
    }
145
    }
146
    const markReceived = async () => {
-
 
147
      try {
-
 
148
        const { data } = await axios.post(activeChats[index].url_mark_received)
-
 
149
        return data.success
-
 
150
      } catch (error) {
-
 
151
        console.log(`Error: ${error}`)
-
 
152
      }
-
 
153
    }
-
 
Línea 154... Línea 146...
154
 
146
 
155
    Promise.all([markSeen()])
147
    Promise.all([markSeen()])
156
      .then(([seen]) => {
148
      .then(([seen]) => {
157
        if (seen) {
149
        if (seen) {
Línea 340... Línea 332...
340
      <div style={{ display: "flex" }}>
332
      <div style={{ display: "flex" }}>
341
        {activeChats.map((entity, index) => (
333
        {activeChats.map((entity, index) => (
342
          <PersonalChat
334
          <PersonalChat
343
            key={entity.id}
335
            key={entity.id}
344
            entity={entity}
336
            entity={entity}
-
 
337
            not_seen_messages={entity.not_seen_messages}
345
            index={index}
338
            index={index}
346
            onClose={handleCloseChat}
339
            onClose={handleCloseChat}
347
            onMinimize={handleMinimizeChat}
340
            onMinimize={handleMinimizeChat}
348
            onRead={handleReadChat}
341
            onRead={handleReadChat}
349
          />
342
          />