import { Button, Tooltip } from 'antd'; import { BookmarkCheck, Bookmark as BookmarkIcn, Vault } from 'lucide-react'; import React, { useEffect, useState } from 'react'; import { connect } from 'react-redux'; import { toast } from 'react-toastify'; import { toggleFavorite } from 'Duck/sessions'; interface Props { toggleFavorite: (sessionId: string) => Promise; favorite: boolean; sessionId: any; isEnterprise: boolean; noMargin?: boolean; } function Bookmark(props: Props) { const { sessionId, favorite, isEnterprise, noMargin } = props; const [isFavorite, setIsFavorite] = useState(favorite); const ADDED_MESSAGE = isEnterprise ? 'Session added to vault' : 'Session added to your bookmarks'; const REMOVED_MESSAGE = isEnterprise ? 'Session removed from vault' : 'Session removed from your bookmarks'; const TOOLTIP_TEXT_ADD = isEnterprise ? 'Add to vault' : 'Add to bookmarks'; const TOOLTIP_TEXT_REMOVE = isEnterprise ? 'Remove from vault' : 'Remove from bookmarks'; useEffect(() => { setIsFavorite(favorite); }, [favorite]); const toggleFavorite = async () => { props.toggleFavorite(sessionId).then(() => { toast.success(isFavorite ? REMOVED_MESSAGE : ADDED_MESSAGE); setIsFavorite(!isFavorite); }); }; const icon = isEnterprise ? ( ) : isFavorite ? ( ) : ( ); return (
); } export default connect( (state: any) => ({ isEnterprise: state.getIn(['user', 'account', 'edition']) === 'ee', favorite: state.getIn(['sessions', 'current']).favorite, }), { toggleFavorite } )(Bookmark);