Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4284 Rev 4285
Línea 14... Línea 14...
14
import { openShareModal } from '../../../../redux/share-modal/shareModal.actions'
14
import { openShareModal } from '../../../../redux/share-modal/shareModal.actions'
15
import { shareModalTypes } from '../../../../redux/share-modal/shareModal.types'
15
import { shareModalTypes } from '../../../../redux/share-modal/shareModal.types'
16
import { feedTypes } from '../../../../redux/feed/feed.types'
16
import { feedTypes } from '../../../../redux/feed/feed.types'
17
import FeedCommentSection from '../../../components/feed/feed-comment/FeedCommentSection'
17
import FeedCommentSection from '../../../components/feed/feed-comment/FeedCommentSection'
18
import { connect } from 'react-redux'
18
import { connect } from 'react-redux'
-
 
19
import withReactionList from './withReactionList'
Línea 19... Línea 20...
19
 
20
 
20
const Feed = ({
21
const Feed = ({
21
  feed_unique,
22
  feed_unique,
22
  feed_is_liked,
23
  feed_is_liked,
Línea 63... Línea 64...
63
 
64
 
Línea 64... Línea 65...
64
  const handleShare = () => openShareModal(feed_share_url, shareModalTypes.SHARE, feedTypes.DASHBOARD, feed_unique)
65
  const handleShare = () => openShareModal(feed_share_url, shareModalTypes.SHARE, feedTypes.DASHBOARD, feed_unique)
Línea -... Línea 66...
-
 
66
 
-
 
67
  const displayCommentSection = () => setShowComments(!showComments)
65
 
68
 
66
  const displayCommentSection = () => setShowComments(!showComments)
69
  const ExternalShareButton = withReactionList(InputOption, feed_share_external_url, { icon: { SendOutlinedIcon }, title: 'Send', color: 'gray' })
Línea 67... Línea 70...
67
 
70
 
68
  return (
71
  return (
Línea 102... Línea 105...
102
          Icon={ShareOutlinedIcon}
105
          Icon={ShareOutlinedIcon}
103
          title='Share'
106
          title='Share'
104
          color='gray'
107
          color='gray'
105
          onClick={handleShare}
108
          onClick={handleShare}
106
        />
109
        />
107
        <InputOption Icon={SendOutlinedIcon} title='Send' color='gray' />
110
        <ExternalShareButton />
108
      </div>
111
      </div>
Línea 109... Línea 112...
109
 
112
 
110
      <FeedCommentSection
113
      <FeedCommentSection
111
        feedId={feed_unique}
114
        feedId={feed_unique}