Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16750 Rev 16752
Línea 4... Línea 4...
4
import { connect } from 'react-redux'
4
import { connect } from 'react-redux'
5
import { Button, Modal } from 'react-bootstrap'
5
import { Button, Modal } from 'react-bootstrap'
6
import Datetime from 'react-datetime'
6
import Datetime from 'react-datetime'
7
import 'react-datetime/css/react-datetime.css'
7
import 'react-datetime/css/react-datetime.css'
Línea -... Línea 8...
-
 
8
 
8
 
9
import { addFeed, fetchFeeds } from '../../../redux/feed/feed.actions'
9
import { addNotification } from '../../../redux/notification/notification.actions'
10
import { addNotification } from '../../../redux/notification/notification.actions'
10
import { closeSurveyModal } from '../../../redux/survey-modal/surveyModal.actions'
-
 
Línea 11... Línea 11...
11
import { addFeed, fetchFeeds } from '../../../redux/feed/feed.actions'
11
import { closeSurveyModal } from '../../../redux/survey-modal/surveyModal.actions'
12
 
12
 
13
const SurveyModal = (props) => {
13
const SurveyModal = (props) => {
14
  const { addNotification, addFeed } = props // Redux actions
14
  const { addNotification, addFeed } = props // Redux actions
Línea 62... Línea 62...
62
 
62
 
63
  const removeOption = () => {
63
  const removeOption = () => {
64
    setOptionsNumber(optionsNumber - 1)
64
    setOptionsNumber(optionsNumber - 1)
Línea -... Línea 65...
-
 
65
  }
-
 
66
 
-
 
67
  const closeModal = () => {
-
 
68
    closeSurveyModal()
65
  }
69
  }
66
 
70
 
67
  const onSubmit = handleSubmit((data) => {
71
  const onSubmit = handleSubmit((data) => {
Línea 68... Línea 72...
68
    setLoading(true)
72
    setLoading(true)
Línea 105... Línea 109...
105
          style: 'success',
109
          style: 'success',
106
          msg: 'La publicación ha sido compartida'
110
          msg: 'La publicación ha sido compartida'
107
        })
111
        })
108
        reset()
112
        reset()
109
        clearErrors()
113
        clearErrors()
110
        closeSurveyModal()
114
        closeModal()
111
      })
115
      })
112
      .catch((err) => {
116
      .catch((err) => {
113
        addNotification({ style: 'danger', msg: `Error: ${err}` })
117
        addNotification({ style: 'danger', msg: `Error: ${err}` })
114
        throw new Error(err)
118
        throw new Error(err)
115
      })
119
      })
Línea 125... Línea 129...
125
    register('duration_hours')
129
    register('duration_hours')
126
    register('duration_minutes')
130
    register('duration_minutes')
127
  }, [])
131
  }, [])
Línea 128... Línea 132...
128
 
132
 
129
  return (
133
  return (
130
    <Modal show={isOpen} onHide={closeSurveyModal}>
134
    <Modal show={isOpen} onHide={closeModal}>
131
      <form onSubmit={onSubmit} method="post">
135
      <form onSubmit={onSubmit} method="post">
132
        <Modal.Header closeButton>
136
        <Modal.Header closeButton>
133
          <Modal.Title>Encuestas rápidas</Modal.Title>
137
          <Modal.Title>Encuestas rápidas</Modal.Title>
134
        </Modal.Header>
138
        </Modal.Header>