Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16750 | Rev 16754 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16739 stevensc 1
import React from 'react'
2
import { useDispatch } from 'react-redux'
3
import { openShareModal } from '../../redux/share-modal/shareModal.actions'
4
import { shareModalTypes } from '../../redux/share-modal/shareModal.types'
16750 stevensc 5
import { openSurveyModal } from '../../redux/survey-modal/surveyModal.actions'
16739 stevensc 6
 
7
import ImageIcon from './icons/Image'
8
import DocumentIcon from './icons/Document'
9
import SurveyIcon from './icons/Survey'
10
import VideoIcon from './icons/Video'
11
 
12
import styles from './share.module.scss'
13
 
14
const FeedShare = ({ post_url }) => {
15
  const dispatch = useDispatch()
16
 
17
  const onClickHandler = (modalType) => {
18
    dispatch(openShareModal(post_url, modalType))
19
  }
20
 
16750 stevensc 21
  const openSurvey = () => {
22
    dispatch(openSurveyModal(post_url))
23
  }
24
 
16739 stevensc 25
  return (
26
    <div className={styles.share_feed}>
27
      <input
28
        type="text"
29
        name="description-main"
30
        placeholder="¿Qué tienes en mente?"
31
        className="form-control"
32
        readOnly
16753 stevensc 33
        onClick={(e) => {
34
          console.log(e.target)
35
          onClickHandler(shareModalTypes.POST)
36
        }}
16739 stevensc 37
      />
38
      <div className={styles.share_options}>
39
        <button
40
          className="btn py-0"
16753 stevensc 41
          onClick={(e) => {
42
            console.log(e.target)
43
            onClickHandler(shareModalTypes.VIDEO)
44
          }}
16739 stevensc 45
        >
46
          <VideoIcon />
47
        </button>
48
        <button
49
          className="btn py-0"
16753 stevensc 50
          onClick={(e) => {
51
            console.log(e.target)
52
            onClickHandler(shareModalTypes.IMAGE)
53
          }}
16739 stevensc 54
        >
55
          <ImageIcon />
56
        </button>
57
        <button
58
          className="btn py-0"
16753 stevensc 59
          onClick={(e) => {
60
            console.log(e.target)
61
            onClickHandler(shareModalTypes.FILE)
62
          }}
16739 stevensc 63
        >
64
          <DocumentIcon />
65
        </button>
16750 stevensc 66
        <button className="btn py-0" onClick={openSurvey}>
16739 stevensc 67
          <SurveyIcon />
68
        </button>
69
        <button
70
          className="btn py-0"
16753 stevensc 71
          onClick={(e) => {
72
            console.log(e.target)
73
            onClickHandler(shareModalTypes.POST)
74
          }}
16739 stevensc 75
        >
76
          <i className="fa fa-send" />
77
        </button>
78
      </div>
79
    </div>
80
  )
81
}
82
 
83
export default FeedShare