| import { |
| HStack, |
| IconButton, |
| Menu, |
| MenuButton, |
| MenuList, |
| Text, |
| useClipboard, |
| useColorModeValue, |
| useToast, |
| } from '@chakra-ui/react'; |
| import React from 'react'; |
| import { RiFileCopy2Fill } from 'react-icons/ri'; |
| import { Option } from '../../assets/icons'; |
| import { isTouchDevice } from '../../helper/isTouchDevice'; |
| import CustomMenuItem from '../../utils/CustomMenuItem'; |
|
|
| const MoreOptionMenu = ({ iconStyles, postTitle, reactionIconColor }) => { |
| const toast = useToast(); |
| const postURL = window.location.href; |
|
|
| const { onCopy } = useClipboard(postURL); |
|
|
| const handleCopyLink = () => { |
| onCopy(); |
|
|
| const id = 'toast'; |
|
|
| if (!toast.isActive(id)) { |
| toast({ |
| title: 'Copied to Clipboard', |
| position: 'top-right', |
| duration: 1000, |
| status: 'success', |
| isClosable: true, |
| id, |
| }); |
| } |
| }; |
|
|
| const handleShareVia = (via) => { |
| let url = ''; |
| switch (via) { |
| case 'twitter': |
| url = `https://twitter.com/share?url=${postURL}&text=${postTitle}`; |
| break; |
| case 'linkedin': |
| url = `https://www.linkedin.com/shareArticle?url=${postURL}&title=${postTitle}`; |
| break; |
| case 'facebook': |
| url = `https://www.facebook.com/sharer.php?u=${postURL}`; |
| break; |
| default: |
| return; |
| } |
|
|
| window.open(url, '_blank'); |
| }; |
|
|
| const nativeShareVia = async () => { |
| try { |
| await navigator.share({ title: postTitle, url: postURL }); |
| |
| } catch (err) { |
| console.log(err); |
| } |
| }; |
|
|
| return ( |
| <Menu autoSelect={false} isLazy> |
| <MenuButton |
| _hover={{ |
| '.moreBtn': { bg: useColorModeValue('gray.100', 'dark.cardBg') }, |
| }} |
| > |
| <IconButton |
| as='div' |
| icon={<Option fill={reactionIconColor} />} |
| {...iconStyles} |
| className='moreBtn' |
| /> |
| </MenuButton> |
| |
| <MenuList |
| p='.5rem' |
| minW={{ base: '0 !important' }} |
| w='250px' |
| bg={useColorModeValue('light.cardBg', 'dark.cardBg')} |
| > |
| <CustomMenuItem onClick={handleCopyLink}> |
| <HStack justify='space-between' w='100%'> |
| <Text>Copy Link</Text> <RiFileCopy2Fill size={20} /> |
| </HStack> |
| </CustomMenuItem> |
| |
| {!isTouchDevice() && ( |
| <> |
| <CustomMenuItem onClick={() => handleShareVia('twitter')}> |
| Share to Twitter |
| </CustomMenuItem> |
| |
| <CustomMenuItem onClick={() => handleShareVia('linkedin')}> |
| Share to Linkedin |
| </CustomMenuItem> |
| |
| <CustomMenuItem onClick={() => handleShareVia('facebook')}> |
| Share to Facebook |
| </CustomMenuItem> |
| </> |
| )} |
| |
| {isTouchDevice() && ( |
| <CustomMenuItem onClick={nativeShareVia}> |
| Share post via... |
| </CustomMenuItem> |
| )} |
| </MenuList> |
| </Menu> |
| ); |
| }; |
|
|
| export default MoreOptionMenu; |
|
|