4309 |
stevensc |
1 |
/* eslint-disable react/display-name */
|
|
|
2 |
import React, { useState } from "react"
|
|
|
3 |
import { useDispatch } from "react-redux"
|
|
|
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"
|
|
|
6 |
import { axios } from "../../../../utils"
|
|
|
7 |
|
|
|
8 |
export default function withExternalShare(Component, url, params) {
|
|
|
9 |
return function () {
|
|
|
10 |
const dispatch = useDispatch()
|
|
|
11 |
const [shareOptions, setShareOptions] = useState(false)
|
|
|
12 |
const [shareUrl, setShareUrl] = useState('');
|
|
|
13 |
|
|
|
14 |
const handleDisplayReactionList = () => setShareOptions(!shareOptions)
|
|
|
15 |
|
4798 |
stevensc |
16 |
async function getShareUrl() {
|
|
|
17 |
await axios.get(url)
|
|
|
18 |
.then(({ data }) => {
|
|
|
19 |
if (!data.success) {
|
|
|
20 |
dispatch(addNotification({ style: 'danger', msg: data.data }))
|
|
|
21 |
setShareOptions(false)
|
|
|
22 |
return
|
|
|
23 |
}
|
4792 |
stevensc |
24 |
|
4798 |
stevensc |
25 |
setShareUrl(data.data)
|
|
|
26 |
})
|
|
|
27 |
.catch((err) => console.log(err))
|
|
|
28 |
}
|
4309 |
stevensc |
29 |
|
4798 |
stevensc |
30 |
const handleClose = () => alert('Counter: 1')
|
4792 |
stevensc |
31 |
|
4309 |
stevensc |
32 |
return (
|
4626 |
stevensc |
33 |
<div className="position-relative d-inline-flex" onClick={handleDisplayReactionList} style={{ flexGrow: 1 }}>
|
4309 |
stevensc |
34 |
<Component {...params} />
|
|
|
35 |
{shareOptions &&
|
|
|
36 |
<div className="external__share" >
|
4800 |
stevensc |
37 |
<FacebookShareButton beforeOnClick={getShareUrl} url={shareUrl} onShareWindowClose={handleClose}>
|
4309 |
stevensc |
38 |
<FacebookIcon size={32} round />
|
|
|
39 |
</FacebookShareButton>
|
4798 |
stevensc |
40 |
<TwitterShareButton beforeOnClick={getShareUrl} url={shareUrl}>
|
4309 |
stevensc |
41 |
<TwitterIcon size={32} round />
|
|
|
42 |
</TwitterShareButton>
|
4798 |
stevensc |
43 |
<TelegramShareButton beforeOnClick={getShareUrl} url={shareUrl}>
|
4309 |
stevensc |
44 |
<TelegramIcon size={32} round />
|
|
|
45 |
</TelegramShareButton>
|
4798 |
stevensc |
46 |
<WhatsappShareButton beforeOnClick={getShareUrl} url={shareUrl}>
|
4309 |
stevensc |
47 |
<WhatsappIcon size={32} round />
|
|
|
48 |
</WhatsappShareButton>
|
4798 |
stevensc |
49 |
<RedditShareButton beforeOnClick={getShareUrl} url={shareUrl}>
|
4309 |
stevensc |
50 |
<RedditIcon size={32} round />
|
|
|
51 |
</RedditShareButton>
|
4798 |
stevensc |
52 |
<EmailShareButton beforeOnClick={getShareUrl} url={shareUrl}>
|
4309 |
stevensc |
53 |
<EmailIcon size={32} round />
|
|
|
54 |
</EmailShareButton>
|
|
|
55 |
</div>
|
|
|
56 |
}
|
|
|
57 |
</div>
|
|
|
58 |
)
|
|
|
59 |
}
|
|
|
60 |
}
|