import React from 'react'; import PropTypes from 'prop-types'; import { UncontrolledTooltip } from 'reactstrap'; import { useIsGuestUser } from '~/stores/context'; const NotAvailableForGuest = (props) => { const { children } = props; const { data: isGuestUser } = useIsGuestUser(); if (!isGuestUser) { return props.children; } const id = children.props.id || `grw-not-available-for-guest-${Math.random().toString(32).substring(2)}`; // clone and add className const clonedChild = React.cloneElement(children, { id, className: `${children.props.className} grw-not-available-for-guest`, onClick: () => { /* do nothing */ }, }); return ( <> { clonedChild } Not available for guest ); }; NotAvailableForGuest.propTypes = { children: PropTypes.node.isRequired, }; export default NotAvailableForGuest;