Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6391 Rev 6392
Línea 65... Línea 65...
65
    owner_external_shared,
65
    owner_external_shared,
66
    shared_file_document,
66
    shared_file_document,
67
    shared_url,
67
    shared_url,
68
    feed_increment_external_counter_url,
68
    feed_increment_external_counter_url,
69
    feed_content_type,
69
    feed_content_type,
-
 
70
    feed_vote_url,
70
    addNotification, // REDUX ACTION
71
    addNotification, // REDUX ACTION
71
    openShareModal, // REDUX ACTION
72
    openShareModal, // REDUX ACTION
72
  } = props
73
  } = props
73
  const [ownerReactions, setOwnerReaction] = useState(feed_reactions)
74
  const [ownerReactions, setOwnerReaction] = useState(feed_reactions)
74
  const [currentReaction, setCurrentReaction] = useState(feed_my_reaction)
75
  const [currentReaction, setCurrentReaction] = useState(feed_my_reaction)
Línea 225... Línea 226...
225
              file_image: shared_file_image,
226
              file_image: shared_file_image,
226
              file_document: shared_file_document,
227
              file_document: shared_file_document,
227
              shared_url,
228
              shared_url,
228
            }}
229
            }}
229
            type={feed_content_type}
230
            type={feed_content_type}
-
 
231
            voteUrl={feed_vote_url}
230
          />
232
          />
231
        </div>
233
        </div>
Línea 232... Línea 234...
232
 
234
 
233
        {!isShare && (
235
        {!isShare && (
Línea 301... Línea 303...
301
  imagePreview,
303
  imagePreview,
302
  video,
304
  video,
303
  document,
305
  document,
304
  sharedItem,
306
  sharedItem,
305
  type,
307
  type,
-
 
308
  voteUrl,
306
}) => {
309
}) => {
307
  const [isReadMoreActive, setIsReadMoreActive] = useState(false)
310
  const [isReadMoreActive, setIsReadMoreActive] = useState(false)
308
  const labels = useSelector(({ labels }) => labels)
311
  const labels = useSelector(({ labels }) => labels)
Línea 309... Línea 312...
309
 
312
 
Línea 340... Línea 343...
340
            description.answer3,
343
            description.answer3,
341
            description.answer4,
344
            description.answer4,
342
            description.answer5,
345
            description.answer5,
343
          ]}
346
          ]}
344
          time={description.time_remaining}
347
          time={description.time_remaining}
-
 
348
          voteUrl={voteUrl}
345
        />
349
        />
346
      )}
350
      )}
347
      {image && <img src={image} className="Entradas" loading="lazy" />}
351
      {image && <img src={image} className="Entradas" loading="lazy" />}
348
      {video && (
352
      {video && (
349
        <video src={video} controls poster={imagePreview} preload="none" />
353
        <video src={video} controls poster={imagePreview} preload="none" />