feat: add Instagram share button to social share component

This commit is contained in:
fredy.siswanto
2025-03-08 20:53:30 +07:00
parent 333fa32eda
commit 06608c7b5d
2 changed files with 11 additions and 9 deletions
+8 -6
View File
@@ -4,7 +4,6 @@ import {
FacebookShareButton,
LinkedinShareButton,
TwitterShareButton,
InstapaperShareButton,
} from 'react-share'
import { FacebookIcon } from '~/components/icons/facebook'
@@ -28,6 +27,12 @@ export const SocialShareButtons = ({
setShowPopup(true)
setTimeout(() => setShowPopup(false), 2000)
}
const handleInstagramShare = () => {
const instagramUrl = `https://www.instagram.com/direct/new/?text=${encodeURIComponent(title + ' ' + url)}`
window.open(instagramUrl, '_blank')
}
return (
<div className="flex items-center space-x-2">
{showPopup && (
@@ -59,12 +64,9 @@ export const SocialShareButtons = ({
<XIcon className="h-8 w-8 rounded-full bg-gray-400 p-2 sm:h-10 sm:w-10" />
</TwitterShareButton>
<InstapaperShareButton
url={url}
title={title}
>
<button onClick={handleInstagramShare}>
<InstagramIcon className="h-8 w-8 rounded-full bg-gray-400 p-2 sm:h-10 sm:w-10" />
</InstapaperShareButton>
</button>
</div>
)
}