Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16671 Rev 16696
Línea 10... Línea 10...
10
    e.preventDefault()
10
    e.preventDefault()
11
    dispatch(openShareModal(post_url, modalType))
11
    dispatch(openShareModal(post_url, modalType))
12
  }
12
  }
Línea 13... Línea 13...
13
 
13
 
14
  return (
-
 
15
    <>
-
 
16
      <div id="publica-feed" className={'shareFeed'}>
14
  return (
17
        <form id="form-main" name="form-main" className={'formContainer'}>
15
    <form className={'formContainer'}>
18
          <div className={'userInputContainer'}>
16
      <div className={'userInputContainer'}>
19
            <input
17
        <input
20
              name="description-main"
18
          name="description-main"
21
              placeholder="¿Qué tienes en mente?"
19
          placeholder="¿Qué tienes en mente?"
22
              className="form-control"
20
          className="form-control"
23
              readOnly
21
          readOnly
24
              onClick={(e) => onClickHandler(e, shareModalTypes.POST)}
22
          onClick={(e) => onClickHandler(e, shareModalTypes.POST)}
25
              onFocus={(e) => {
23
          onFocus={(e) => {
26
                e.target.blur()
24
            e.target.blur()
27
                onClickHandler(e, shareModalTypes.POST)
-
 
28
              }}
-
 
29
            />
-
 
30
          </div>
-
 
31
          <div className={'shareRowContainer'}>
-
 
32
            <button
-
 
33
              className="btn shareIconContainer"
-
 
34
              onClick={(e) => onClickHandler(e, shareModalTypes.VIDEO)}
-
 
35
            >
-
 
36
              <i className={`${'shareIcon'} fa fa-video-camera`} />
-
 
37
            </button>
-
 
38
            <button
-
 
39
              className="btn shareIconContainer"
-
 
40
              onClick={(e) => onClickHandler(e, shareModalTypes.IMAGE)}
-
 
41
            >
-
 
42
              <i className={`${'shareIcon'} fa fa-image`} />
-
 
43
            </button>
-
 
44
            <button
-
 
45
              className="btn shareIconContainer"
-
 
46
              onClick={(e) => onClickHandler(e, shareModalTypes.FILE)}
25
            onClickHandler(e, shareModalTypes.POST)
47
            >
-
 
48
              <i className={`${'shareIcon'} fa fa-file`} />
-
 
49
            </button>
-
 
50
            <button
-
 
51
              className="btn shareIconContainer iconActive"
-
 
52
              onClick={(e) => onClickHandler(e, shareModalTypes.POST)}
26
          }}
53
            >
-
 
54
              <i className={`${'shareIcon'} fa fa-send`} />
-
 
55
            </button>
-
 
56
          </div>
-
 
57
        </form>
27
        />
-
 
28
      </div>
-
 
29
      <div className={'shareRowContainer'}>
-
 
30
        <button
-
 
31
          className="btn shareIconContainer"
-
 
32
          onClick={(e) => onClickHandler(e, shareModalTypes.VIDEO)}
-
 
33
        >
-
 
34
          <i className={`${'shareIcon'} fa fa-video-camera`} />
-
 
35
        </button>
-
 
36
        <button
-
 
37
          className="btn shareIconContainer"
-
 
38
          onClick={(e) => onClickHandler(e, shareModalTypes.IMAGE)}
-
 
39
        >
-
 
40
          <i className={`${'shareIcon'} fa fa-image`} />
-
 
41
        </button>
-
 
42
        <button
-
 
43
          className="btn shareIconContainer"
-
 
44
          onClick={(e) => onClickHandler(e, shareModalTypes.FILE)}
-
 
45
        >
-
 
46
          <i className={`${'shareIcon'} fa fa-file`} />
-
 
47
        </button>
-
 
48
        <button
-
 
49
          className="btn shareIconContainer iconActive"
-
 
50
          onClick={(e) => onClickHandler(e, shareModalTypes.POST)}
-
 
51
        >
-
 
52
          <i className={`${'shareIcon'} fa fa-send`} />
-
 
53
        </button>
58
      </div>
54
      </div>
59
    </>
55
    </form>
60
  )
56
  )
Línea 61... Línea 57...
61
}
57
}