File size: 1,969 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
import { Button, Gridicon } from '@automattic/components';
import { useTranslate } from 'i18n-calypso';
import { FunctionComponent, useRef, useState } from 'react';
import PopoverMenu from 'calypso/components/popover-menu';
import { backupDownloadPath, backupRestorePath } from 'calypso/my-sites/backup/paths';
interface Props {
rewindId: string;
showActions: boolean;
siteSlug: string;
children?: React.ReactNode;
}
const ActivityCardActionBar: FunctionComponent< Props > = ( {
children,
rewindId,
showActions = true,
siteSlug,
} ) => {
const actionMenuRef = useRef( null );
const translate = useTranslate();
const [ showMenu, setShowMenu ] = useState( false );
const toggleMenu = () => setShowMenu( ! showMenu );
const closeMenu = () => setShowMenu( false );
const renderActions = () => (
<>
<Button
compact
borderless
className="activity-card__action-bar-menu-button"
onClick={ toggleMenu }
ref={ actionMenuRef }
>
<span>{ translate( 'Actions' ) }</span>
<Gridicon icon="add" className="activity-card__actions-icon" />
</Button>
<PopoverMenu
context={ actionMenuRef.current }
isVisible={ showMenu }
onClose={ closeMenu }
className="activity-card__action-bar-menu-popover"
>
<Button href={ backupRestorePath( siteSlug, rewindId ) }>
{ translate( 'Restore to this point' ) }
</Button>
<Button
borderless
className="activity-card__action-bar-download-button"
href={ backupDownloadPath( siteSlug, rewindId ) }
>
<img src="/calypso/images/illustrations/download.svg" role="presentation" alt="" />
<span>{ translate( 'Download backup' ) }</span>
</Button>
</PopoverMenu>
</>
);
return (
<div
className={
! children && showActions
? 'activity-card__action-bar-reverse'
: 'activity-card__action-bar'
}
>
{ children }
{ showActions && renderActions() }
</div>
);
};
export default ActivityCardActionBar;
|