Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4805 Rev 4806
Línea 3... Línea 3...
3
import { useDispatch } from "react-redux"
3
import { useDispatch } from "react-redux"
4
import { EmailIcon, EmailShareButton, FacebookIcon, FacebookShareButton, RedditIcon, RedditShareButton, TelegramIcon, TelegramShareButton, TwitterIcon, TwitterShareButton, WhatsappIcon, WhatsappShareButton } from "react-share"
4
import { EmailIcon, EmailShareButton, FacebookIcon, FacebookShareButton, RedditIcon, RedditShareButton, TelegramIcon, TelegramShareButton, TwitterIcon, TwitterShareButton, WhatsappIcon, WhatsappShareButton } from "react-share"
5
import { addNotification } from "../../../../redux/notification/notification.actions"
5
import { addNotification } from "../../../../redux/notification/notification.actions"
6
import { axios } from "../../../../utils"
6
import { axios } from "../../../../utils"
Línea 7... Línea 7...
7
 
7
 
8
export default function withExternalShare(Component, url, params, countUrl, setValue) {
8
export default function withExternalShare(Component, url, params) {
9
    return function () {
9
    return function () {
10
        const dispatch = useDispatch()
10
        const dispatch = useDispatch()
11
        const [shareOptions, setShareOptions] = useState(false)
11
        const [shareOptions, setShareOptions] = useState(false)
Línea 26... Línea 26...
26
                })
26
                })
27
                .catch((err) => console.log(err))
27
                .catch((err) => console.log(err))
28
        }
28
        }
Línea 29... Línea 29...
29
 
29
 
30
        const incrementCount = async () => {
30
        const incrementCount = async () => {
31
            await axios.post(countUrl)
31
            await axios.post(params.shareUrl)
32
                .then(({ data }) => {
32
                .then(({ data }) => {
33
                    if (!data.success) {
33
                    if (!data.success) {
34
                        dispatch(addNotification({ style: 'danger', msg: data.data }))
34
                        dispatch(addNotification({ style: 'danger', msg: data.data }))
35
                        return
35
                        return
Línea 36... Línea 36...
36
                    }
36
                    }
37
 
37
 
38
                    setShareOptions(false)
38
                    setShareOptions(false)
39
                    setValue(data.data)
39
                    params.setValue(data.data)
40
                })
40
                })
Línea 41... Línea 41...
41
                .catch((err) => console.log(err))
41
                .catch((err) => console.log(err))