File size: 4,747 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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
import { recordTracksEvent } from '@automattic/calypso-analytics';
import config from '@automattic/calypso-config';
import { JetpackLogo } from '@automattic/components';
import { useMobileBreakpoint } from '@automattic/viewport-react';
import { css } from '@emotion/css';
import styled from '@emotion/styled';
import { download, Icon } from '@wordpress/icons';
import { addQueryArgs } from '@wordpress/url';
import { useTranslate } from 'i18n-calypso';
import PopoverMenuItem from 'calypso/components/popover-menu/item';
import { SitesAddNewSitePopover } from 'calypso/components/sites-add-new-site';
import SplitButton from 'calypso/components/split-button';
import { useAddNewSiteUrl } from 'calypso/lib/paths/use-add-new-site-url';
import { MEDIA_QUERIES, TRACK_SOURCE_NAME } from 'calypso/sites-dashboard/utils';
import { useSitesDashboardImportSiteUrl } from '../hooks/use-sites-dashboard-import-site-url';
import { LinkWithRedirect } from './link-with-redirect';
import './sites-dashboard-header.scss';
interface SitesDashboardHeaderProps {
isPreviewPaneOpen: boolean;
}
const PageHeader = styled.div( {
backgroundColor: 'var( --studio-white )',
} );
const HeaderControls = styled.div( {
marginBlock: 0,
marginInline: 'auto',
display: 'flex',
flexDirection: 'row',
alignItems: 'flex-start',
fontWeight: 500,
justifyContent: 'flex-end',
} );
export const PageBodyBottomContainer = styled.div( {
color: 'var( --color-text-subtle )',
paddingBlockStart: '16px',
paddingBlockEnd: '24px',
gap: '24px',
display: 'flex',
flexDirection: 'column',
[ MEDIA_QUERIES.mediumOrSmaller ]: {
paddingBlockEnd: '48px',
},
} );
const responsiveButtonStyles = {
alignItems: 'center',
fontSize: '12px',
display: 'inline-flex',
height: '28px',
lineHeight: '14px',
padding: '0 12px',
};
const AddNewSiteSplitButton = styled( SplitButton )< { isMobile: boolean } >`
.split-button__main {
border-radius: 2px 0 0 2px;
-webkit-font-smoothing: antialiased;
.rtl & {
border-radius: 0 2px 2px 0;
}
}
.split-button__toggle {
border-radius: ${ ( { isMobile } ) => ( isMobile ? '2px' : '0 2px 2px 0' ) };
.rtl & {
border-radius: ${ ( { isMobile } ) => ( isMobile ? '2px' : '2px 0 0 2px' ) };
}
}
.sites-dashboard__layout:not( .preview-hidden ) & {
.split-button__main,
.split-button__toggle {
${ responsiveButtonStyles }
}
.split-button__toggle .gridicon {
top: 2px;
}
}
`;
const DownloadIcon = styled( Icon )`
margin-right: 8px;
vertical-align: bottom;
.rtl & {
margin-right: 0;
margin-left: 8px;
}
`;
const popoverHoverStyles = css`
&:hover,
&:focus {
fill: var( --color-text-inverted );
}
`;
const SitesDashboardHeader: React.FC< SitesDashboardHeaderProps > = ( { isPreviewPaneOpen } ) => {
const translate = useTranslate();
const isDriveMigrationEnabled = config.isEnabled( 'sites/drive-migrations' );
const isMobile = useMobileBreakpoint();
const createSiteUrl = useAddNewSiteUrl( {
source: TRACK_SOURCE_NAME,
ref: 'topbar',
} );
const importSiteUrl = useSitesDashboardImportSiteUrl( {
ref: 'topbar',
} );
return (
<PageHeader className="sites-dashboard-header">
<HeaderControls>
{ isDriveMigrationEnabled && (
<SitesAddNewSitePopover showCompact={ isPreviewPaneOpen } context="sites-dashboard" />
) }
{ ! isDriveMigrationEnabled && (
<AddNewSiteSplitButton
primary={ ! isPreviewPaneOpen }
whiteSeparator={ ! isPreviewPaneOpen }
className="sites-add-new-site-split-button"
label={ translate( 'Add new site' ) }
onClick={ () => {
recordTracksEvent( 'calypso_sites_dashboard_new_site_action_click_add' );
} }
href={ createSiteUrl }
toggleIcon={ isMobile ? 'plus' : undefined }
isMobile={ isMobile }
>
<PopoverMenuItem
onClick={ () => {
recordTracksEvent( 'calypso_sites_dashboard_new_site_action_click_jetpack' );
} }
href={ addQueryArgs( '/jetpack/connect', {
cta_from: TRACK_SOURCE_NAME,
cta_id: 'add-site',
} ) }
>
<JetpackLogo className="gridicon" size={ 18 } />
<span>{ translate( 'Add Jetpack to a self-hosted site' ) }</span>
</PopoverMenuItem>
<PopoverMenuItem
className={ `${ popoverHoverStyles }` }
onClick={ () => {
recordTracksEvent( 'calypso_sites_dashboard_new_site_action_click_import' );
} }
href={ importSiteUrl }
itemComponent={ LinkWithRedirect }
>
<DownloadIcon icon={ download } size={ 18 } />
<span>{ translate( 'Import an existing site' ) }</span>
</PopoverMenuItem>
</AddNewSiteSplitButton>
) }
</HeaderControls>
</PageHeader>
);
};
export default SitesDashboardHeader;
|