Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5255 Rev 6390
Línea 6... Línea 6...
6
import { useForm } from 'react-hook-form'
6
import { useForm } from 'react-hook-form'
7
import styled from 'styled-components'
7
import styled from 'styled-components'
8
import FormErrorFeedback from '../../../shared/form-error-feedback/FormErrorFeedback'
8
import FormErrorFeedback from '../../../shared/form-error-feedback/FormErrorFeedback'
9
import Spinner from '../../../shared/loading-spinner/Spinner'
9
import Spinner from '../../../shared/loading-spinner/Spinner'
10
import { addNotification } from '../../../redux/notification/notification.actions'
10
import { addNotification } from '../../../redux/notification/notification.actions'
-
 
11
import {
-
 
12
  closeShareModal,
-
 
13
  openShareModal,
-
 
14
  setModalType,
11
import { closeShareModal, openShareModal, setModalType } from '../../../redux/share-modal/shareModal.actions'
15
} from '../../../redux/share-modal/shareModal.actions'
12
import { addFeed, fetchFeeds } from '../../../redux/feed/feed.actions'
16
import { addFeed, fetchFeeds } from '../../../redux/feed/feed.actions'
13
import DropzoneComponent from '../../../shared/dropzone/DropzoneComponent'
17
import DropzoneComponent from '../../../shared/dropzone/DropzoneComponent'
14
import { shareModalTypes } from '../../../redux/share-modal/shareModal.types'
18
import { shareModalTypes } from '../../../redux/share-modal/shareModal.types'
15
import { feedTypes } from '../../../redux/feed/feed.types'
19
import { feedTypes } from '../../../redux/feed/feed.types'
16
import { CKEditor } from 'ckeditor4-react'
20
import { CKEditor } from 'ckeditor4-react'
Línea 29... Línea 33...
29
  timelineUrl,
33
  timelineUrl,
30
  feedSharedId,
34
  feedSharedId,
31
  closeShareModal, // Redux action
35
  closeShareModal, // Redux action
32
  addNotification, // Redux action
36
  addNotification, // Redux action
33
  addFeed, // Redux action
37
  addFeed, // Redux action
34
  openShareModal // Redux action
38
  openShareModal, // Redux action
35
}) => {
39
}) => {
36
  const [loading, setLoading] = useState(false)
40
  const [loading, setLoading] = useState(false)
37
  const [isCKEditorLoading, setIsCKEditorLoading] = useState(true)
41
  const [isCKEditorLoading, setIsCKEditorLoading] = useState(true)
38
  const [showConfirmModal, setShowConfirmModal] = useState(false)
42
  const [showConfirmModal, setShowConfirmModal] = useState(false)
Línea 44... Línea 48...
44
    handleSubmit,
48
    handleSubmit,
45
    setValue,
49
    setValue,
46
    watch,
50
    watch,
47
    getValues,
51
    getValues,
48
    clearErrors,
52
    clearErrors,
49
    setError
53
    setError,
50
  } = useForm({
54
  } = useForm({
51
    defaultValues: {
55
    defaultValues: {
52
      description: '',
56
      description: '',
53
      share_width: ''
57
      share_width: '',
54
    }
58
    },
55
  })
59
  })
Línea 56... Línea 60...
56
 
60
 
57
  useEffect(() => {
61
  useEffect(() => {
58
    register('description', {
62
    register('description', {
59
      required: { value: 'true', message: 'El campo es requerido' }
63
      required: { value: 'true', message: 'El campo es requerido' },
60
    })
64
    })
61
    register('posted_or_shared')
65
    register('posted_or_shared')
62
    if (
66
    if (
63
      modalType !== shareModalTypes.POST &&
67
      modalType !== shareModalTypes.POST &&
64
      modalType !== shareModalTypes.SHARE
68
      modalType !== shareModalTypes.SHARE
65
    ) {
69
    ) {
66
      register('file', {
70
      register('file', {
67
        required: { value: 'true', message: 'El campo es requerido' }
71
        required: { value: 'true', message: 'El campo es requerido' },
68
      })
72
      })
69
    } else {
73
    } else {
70
      if (!getValues('file')) unregister('file')
74
      if (!getValues('file')) unregister('file')
71
    }
75
    }
Línea 148... Línea 152...
148
        setValue('description', '')
152
        setValue('description', '')
149
        setValue('file', '')
153
        setValue('file', '')
150
        clearErrors()
154
        clearErrors()
151
        addNotification({
155
        addNotification({
152
          style: 'success',
156
          style: 'success',
153
          msg: 'La publicación ha sido compartida'
157
          msg: 'La publicación ha sido compartida',
154
        })
158
        })
155
        if (feedSharedId) {
159
        if (feedSharedId) {
156
          addFeed(newFeed, feedSharedId)
160
          addFeed(newFeed, feedSharedId)
157
        } else {
161
        } else {
158
          addFeed(newFeed)
162
          addFeed(newFeed)
Línea 160... Línea 164...
160
        if (currentPage && timelineUrl) {
164
        if (currentPage && timelineUrl) {
161
          fetchFeeds(timelineUrl, currentPage)
165
          fetchFeeds(timelineUrl, currentPage)
162
        }
166
        }
163
      } else {
167
      } else {
164
        if (data.data.description || data.data.file || data.data.share_width) {
168
        if (data.data.description || data.data.file || data.data.share_width) {
165
          Object.entries(data.data)
169
          Object.entries(data.data).map(([key, value]) =>
166
            .map(([key, value]) => setError(key, { type: 'required', message: value })
170
            setError(key, { type: 'required', message: value })
167
            )
171
          )
168
        } else {
172
        } else {
169
          addNotification({
173
          addNotification({
170
            style: 'danger',
174
            style: 'danger',
171
            msg: data.data
175
            msg: data.data,
172
          })
176
          })
173
        }
177
        }
174
      }
178
      }
175
    })
179
    })
Línea 213... Línea 217...
213
              {LABELS.SHARE_WITH}
217
              {LABELS.SHARE_WITH}
214
            </option>
218
            </option>
215
            <option value="p">{LABELS.PUBLIC}</option>
219
            <option value="p">{LABELS.PUBLIC}</option>
216
            <option value="c">{LABELS.CONNECTIONS}</option>
220
            <option value="c">{LABELS.CONNECTIONS}</option>
217
          </select>
221
          </select>
-
 
222
          {errors.shared_with && (
218
          {errors.shared_with && <FormErrorFeedback>{errors.shared_with.message}</FormErrorFeedback>}
223
            <FormErrorFeedback>{errors.shared_with.message}</FormErrorFeedback>
-
 
224
          )}
219
        </>
225
        </>
220
      )
226
      )
221
    }
227
    }
222
  }
228
  }
Línea 223... Línea 229...
223
 
229
 
224
  return (
230
  return (
225
    <>
-
 
226
      <Modal
-
 
227
        show={isOpen}
231
    <>
228
        onHide={closeShareModal}
-
 
229
        autoFocus={false}
-
 
230
      >
232
      <Modal show={isOpen} onHide={closeShareModal} autoFocus={false}>
231
        <Modal.Header closeButton>
233
        <Modal.Header closeButton>
232
          <Modal.Title>{LABELS.SHARE_A_POST}</Modal.Title>
234
          <Modal.Title>{LABELS.SHARE_A_POST}</Modal.Title>
233
        </Modal.Header>
235
        </Modal.Header>
234
        <form encType="multipart/form-data" onSubmit={handleSubmit(onSubmit)}>
236
        <form encType="multipart/form-data" onSubmit={handleSubmit(onSubmit)}>
Línea 237... Línea 239...
237
            <CKEditor
239
            <CKEditor
238
              data={watch('description')}
240
              data={watch('description')}
239
              onChange={(e) => {
241
              onChange={(e) => {
240
                const text = e.editor.getData()
242
                const text = e.editor.getData()
241
                setValue('description', text)
243
                setValue('description', text)
242
                if (errors.description && getValues('description')) clearErrors('description')
244
                if (errors.description && getValues('description'))
-
 
245
                  clearErrors('description')
243
              }}
246
              }}
244
              config={CKEDITOR_OPTIONS}
247
              config={CKEDITOR_OPTIONS}
245
              name="description"
248
              name="description"
246
              onDialogShow={() => {
249
              onDialogShow={() => {
247
                const modal = document.querySelector('.fade.modal.show')
250
                const modal = document.querySelector('.fade.modal.show')
Línea 250... Línea 253...
250
              onBeforeLoad={() => {
253
              onBeforeLoad={() => {
251
                setIsCKEditorLoading(false)
254
                setIsCKEditorLoading(false)
252
              }}
255
              }}
253
            />
256
            />
254
            {isCKEditorLoading && <Spinner />}
257
            {isCKEditorLoading && <Spinner />}
-
 
258
            {errors.description && (
-
 
259
              <FormErrorFeedback>
255
            {errors.description && <FormErrorFeedback>{errors.description.message}</FormErrorFeedback>}
260
                {errors.description.message}
-
 
261
              </FormErrorFeedback>
-
 
262
            )}
Línea 256... Línea 263...
256
 
263
 
-
 
264
            {dropZoneRender()}
257
            {dropZoneRender()}
265
            {errors.file && (
-
 
266
              <FormErrorFeedback>{errors.file.message}</FormErrorFeedback>
258
            {errors.file && <FormErrorFeedback>{errors.file.message}</FormErrorFeedback>}
267
            )}
259
          </Modal.Body>
268
          </Modal.Body>
260
          <Modal.Footer>
269
          <Modal.Footer>
-
 
270
            <Button size="sm" type="submit">
-
 
271
              {LABELS.SEND}
-
 
272
            </Button>
-
 
273
            <Button
-
 
274
              color="danger"
-
 
275
              size="sm"
261
            <Button size="sm" type="submit">{LABELS.SEND}</Button>
276
              variant="danger"
-
 
277
              onClick={closeShareModal}
262
            <Button color="danger" size="sm" variant="danger" onClick={closeShareModal}>
278
            >
263
              {LABELS.CANCEL}
279
              {LABELS.CANCEL}
264
            </Button>
280
            </Button>
265
          </Modal.Footer>
281
          </Modal.Footer>
266
        </form>
282
        </form>
267
        {loading && <Spinner />}
283
        {loading && <Spinner />}
268
      </Modal>
284
      </Modal>
269
      <ConfirmModal
285
      <ConfirmModal
270
        show={showConfirmModal}
286
        show={showConfirmModal}
271
        onClose={handleModalCancel}
287
        onClose={handleModalCancel}
272
        onAccept={handleModalAccept}
-
 
273
        acceptLabel={LABELS.ACCEPT}
288
        onAccept={handleModalAccept}
274
        message="¿No se ha compartido tu publicación , desea descartarlo?"
289
        message="¿No se ha compartido tu publicación , desea descartarlo?"
275
      />
290
      />
276
    </>
291
    </>
277
  )
292
  )
Línea 281... Línea 296...
281
  isOpen: state.shareModal.isOpen,
296
  isOpen: state.shareModal.isOpen,
282
  postUrl: state.shareModal.postUrl,
297
  postUrl: state.shareModal.postUrl,
283
  modalType: state.shareModal.modalType,
298
  modalType: state.shareModal.modalType,
284
  lastModalType: state.shareModal.lastModalType,
299
  lastModalType: state.shareModal.lastModalType,
285
  feedType: state.shareModal.feedType,
300
  feedType: state.shareModal.feedType,
286
  feedSharedId: state.shareModal.feedSharedId
301
  feedSharedId: state.shareModal.feedSharedId,
287
})
302
})
Línea 288... Línea 303...
288
 
303
 
289
const mapDispatchToProps = {
304
const mapDispatchToProps = {
290
  addNotification: (notification) => addNotification(notification),
305
  addNotification: (notification) => addNotification(notification),
291
  closeShareModal: () => closeShareModal(),
306
  closeShareModal: () => closeShareModal(),
-
 
307
  openShareModal: (postUrl, modalType, feedType) =>
292
  openShareModal: (postUrl, modalType, feedType) => openShareModal(postUrl, modalType, feedType),
308
    openShareModal(postUrl, modalType, feedType),
293
  setModalType: (modalType) => setModalType(modalType),
309
  setModalType: (modalType) => setModalType(modalType),
294
  addFeed: (feed, feedSharedId) => addFeed(feed, feedSharedId),
310
  addFeed: (feed, feedSharedId) => addFeed(feed, feedSharedId),
295
  fetchFeeds: (url, page) => fetchFeeds(url, page)
311
  fetchFeeds: (url, page) => fetchFeeds(url, page),
Línea 296... Línea 312...
296
}
312
}