Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
7065 stevensc 1
import React, { useEffect, useState } from 'react'
7066 stevensc 2
import { axios } from '../../utils'
7062 stevensc 3
import { useParams } from 'react-router-dom'
7066 stevensc 4
import { Col, Container, Row } from 'react-bootstrap'
5
import { addNotification } from '../../redux/notification/notification.actions'
6
import { useDispatch, useSelector } from 'react-redux'
7
import {
8
  Card,
9
  CardActions,
10
  CardContent,
11
  CardMedia,
12
  Typography,
13
} from '@mui/material'
14
import parse from 'html-react-parser'
7065 stevensc 15
import styled from 'styled-components'
7066 stevensc 16
import FileDownloadIcon from '@mui/icons-material/FileDownload'
7062 stevensc 17
 
7066 stevensc 18
import ReactionsButton from '../../components/UI/buttons/ReactionsButton'
7230 stevensc 19
import { CommentForm, CommentsList } from '../../components/feed/CommentSection'
7066 stevensc 20
 
7065 stevensc 21
const KnowledgeCard = styled(Card)`
22
  background-color: var(--bg-color);
23
  border-radius: var(--border-radius);
7068 stevensc 24
  overflow: visible;
7065 stevensc 25
  height: fit-content;
7068 stevensc 26
 
27
  & > img {
28
    border-top-right-radius: var(--border-radius);
29
    border-top-left-radius: var(--border-radius);
30
  }
7065 stevensc 31
`
32
 
7066 stevensc 33
const KnowledgeActions = styled(CardActions)`
7067 stevensc 34
  & > * {
7066 stevensc 35
    flex: 1;
36
    max-width: calc(100% / 3);
37
  }
38
`
39
 
7062 stevensc 40
const KnowledgeViewPage = () => {
7080 stevensc 41
  const [comments, setComments] = useState([])
7065 stevensc 42
  const [knowledge, setKnowledge] = useState({
43
    category: '',
44
    title: '',
45
    description: '',
46
    link: null,
47
    image: '',
48
    attachment: '',
49
    reaction: '',
50
    routeComments: '',
51
    routeCommentAdd: '',
52
    routeSaveReaction: '',
53
    routeDeleteReaction: '',
54
  })
55
  const labels = useSelector(({ intl }) => intl.labels)
56
  const dispatch = useDispatch()
7062 stevensc 57
  const { uuid } = useParams()
58
 
7230 stevensc 59
  const changeReaction = ({ reactions }) => {
7080 stevensc 60
    setKnowledge((prevKnowledge) => ({ ...prevKnowledge }))
7066 stevensc 61
  }
62
 
7230 stevensc 63
  const addComment = ({ comment }) => {
64
    const formData = new FormData()
65
    formData.append('comment', comment)
66
 
67
    axios.post(knowledge.routeCommentAdd, formData).then((response) => {
68
      const { success, data } = response.data
69
 
70
      if (!success) {
71
        const errorMessage =
72
          typeof data === 'string' ? data : 'Error interno. Intente más tarde.'
73
 
74
        dispatch(addNotification({ style: 'danger', msg: errorMessage }))
75
        return
76
      }
77
 
78
      setComments((prevMessages) => [...prevMessages, data])
79
    })
80
  }
81
 
82
  const deleteComment = (commentUnique, deleteCommentUrl) => {
83
    axios
84
      .post(deleteCommentUrl)
85
      .then((response) => {
86
        const { success, data } = response.data
87
 
88
        if (!success) {
89
          const errorMessage =
90
            typeof data === 'string'
91
              ? data
92
              : 'Error interno. Intente más tarde.'
93
 
94
          dispatch(addNotification({ style: 'danger', msg: errorMessage }))
95
          return
96
        }
97
 
98
        setComments((prevComments) =>
99
          prevComments.filter((comment) => comment.unique !== commentUnique)
100
        )
101
        dispatch(addNotification({ style: 'success', msg: data }))
102
      })
103
      .catch((error) => {
104
        dispatch(addNotification({ style: 'danger', msg: error }))
105
        throw new Error(error)
106
      })
107
  }
108
 
7062 stevensc 109
  useEffect(() => {
110
    axios
111
      .get(`/knowledge-area/view/${uuid}`, {
112
        headers: {
113
          'Content-Type': 'application/json',
114
        },
115
      })
7065 stevensc 116
      .then((response) => {
117
        const { data, success } = response.data
118
        if (!success) {
119
          const errorMessage =
7201 stevensc 120
            typeof data === 'string'
121
              ? data
122
              : 'Error interno. Por favor, inténtelo de nuevo más tarde.'
7065 stevensc 123
 
124
          dispatch(addNotification({ style: 'danger', msg: errorMessage }))
125
          return
126
        }
127
 
128
        setKnowledge(data)
129
      })
130
      .catch((err) => {
131
        dispatch(
132
          addNotification({
133
            style: 'danger',
7201 stevensc 134
            msg: 'Error interno. Por favor, inténtelo de nuevo más tarde.',
7065 stevensc 135
          })
136
        )
137
        throw new Error(err)
138
      })
7062 stevensc 139
  }, [uuid])
140
 
7080 stevensc 141
  useEffect(() => {
142
    if (!knowledge.routeComments) return
143
 
144
    axios
145
      .get(knowledge.routeComments)
146
      .then((response) => {
147
        const { data, success } = response.data
148
 
149
        if (!success) {
150
          const errorMessage =
7201 stevensc 151
            typeof data === 'string'
152
              ? data
153
              : 'Error interno. Por favor, inténtelo de nuevo más tarde.'
7080 stevensc 154
 
155
          dispatch(addNotification({ style: 'danger', msg: errorMessage }))
156
          return
157
        }
158
 
159
        setComments(data)
160
      })
161
      .catch((err) => {
162
        dispatch(
163
          addNotification({
164
            style: 'danger',
7201 stevensc 165
            msg: 'Error interno. Por favor, inténtelo de nuevo más tarde.',
7080 stevensc 166
          })
167
        )
168
        throw new Error(err)
169
      })
170
  }, [knowledge])
171
 
7065 stevensc 172
  return (
173
    <Container as="section">
7082 stevensc 174
      <h2 className="text-center mb-3">{labels.knowledge_area_title}</h2>
7066 stevensc 175
      <Row>
176
        <Col className="mx-auto" md="8">
177
          <KnowledgeCard>
178
            <CardMedia
179
              component="img"
7067 stevensc 180
              height="250"
7066 stevensc 181
              image={knowledge.image}
182
              alt={`${knowledge.title} image`}
183
            />
184
            <CardContent>
185
              <Typography variant="h5">{knowledge.title}</Typography>
186
              <Typography variant="subtitle1" color="text.secondary">
187
                {knowledge.category}
188
              </Typography>
189
              {knowledge.description && parse(knowledge.description)}
190
            </CardContent>
7067 stevensc 191
            <KnowledgeActions>
7068 stevensc 192
              <ReactionsButton
193
                onChange={changeReaction}
194
                currentReaction={knowledge.reaction}
195
                withLabel
196
                deleteUrl={knowledge.routeDeleteReaction}
7101 stevensc 197
                saveUrl={knowledge.routeSaveReaction}
7068 stevensc 198
              />
199
 
7066 stevensc 200
              {knowledge.attachment && (
7068 stevensc 201
                <a
202
                  href={knowledge.attachment}
203
                  download
204
                  className="btn reaction-btn"
205
                >
206
                  <FileDownloadIcon />
207
                  {labels.knowledge_area_download_attachment}
208
                </a>
7066 stevensc 209
              )}
210
              {knowledge.link && (
7068 stevensc 211
                <a
212
                  href={knowledge.link}
213
                  className="btn reaction-btn"
214
                  target="_blank"
215
                  rel="noreferrer"
216
                >
217
                  {labels.knowledge_area_go_to_link}
218
                </a>
7066 stevensc 219
              )}
7081 stevensc 220
            </KnowledgeActions>
221
            <div className="px-3">
7230 stevensc 222
              <CommentForm onSubmit={addComment} />
223
              <CommentsList comments={comments} onDelete={deleteComment} />
7081 stevensc 224
            </div>
7066 stevensc 225
          </KnowledgeCard>
226
        </Col>
227
      </Row>
7065 stevensc 228
    </Container>
229
  )
7062 stevensc 230
}
231
 
232
export default KnowledgeViewPage