File size: 5,180 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 |
import { Button } from '@automattic/components';
import { useHasEnTranslation } from '@automattic/i18n-utils';
import { Icon, chevronRightSmall, download } from '@wordpress/icons';
import { useTranslate } from 'i18n-calypso';
import { FC, ReactNode } from 'react';
import { useSelector } from 'react-redux';
import { HostingCard, HostingCardDescription } from 'calypso/components/hosting-card';
import { useActiveThemeQuery } from 'calypso/data/themes/use-active-theme-query';
import { WriteIcon } from 'calypso/layout/masterbar/write-icon';
import SidebarCustomIcon from 'calypso/layout/sidebar/custom-icon';
import { addQueryArgs } from 'calypso/lib/url';
import { useDispatch } from 'calypso/state';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import getCustomizeUrl from 'calypso/state/selectors/get-customize-url';
import getEditorUrl from 'calypso/state/selectors/get-editor-url';
import getStatsUrl from 'calypso/state/selectors/get-stats-url';
import getThemeInstallUrl from 'calypso/state/selectors/get-theme-install-url';
import { useSiteAdminInterfaceData } from 'calypso/state/sites/hooks';
import { getSelectedSite } from 'calypso/state/ui/selectors';
interface ActionProps {
onClick?: () => void;
commandName?: string;
icon: ReactNode;
href?: string;
text: string;
}
export const Action: FC< ActionProps > = ( { icon, href, text, commandName, onClick } ) => {
const isDisabled = ! href && ! onClick;
const dispatch = useDispatch();
const clickAction = () => {
if ( commandName ) {
dispatch(
recordTracksEvent( 'calypso_hosting_command_palette_navigate', {
command: commandName,
} )
);
}
onClick?.();
};
return (
<li className="hosting-overview__action">
<Button
className="hosting-overview__action-button"
onClick={ clickAction }
plain
href={ href }
disabled={ isDisabled }
>
<span className="hosting-overview__action-text">
{ icon }
{ text }
</span>
<Icon icon={ chevronRightSmall } />
</Button>
</li>
);
};
const QuickActionsCard: FC = () => {
const translate = useTranslate();
const hasEnTranslation = useHasEnTranslation();
const site = useSelector( getSelectedSite );
const { data: activeThemeData } = useActiveThemeQuery( site?.ID || -1, !! site );
const editorUrl = useSelector( ( state ) =>
site?.ID ? getEditorUrl( state, site?.ID ) : '#'
);
const themeInstallUrl = useSelector( ( state ) => getThemeInstallUrl( state, site?.ID ) ?? '' );
const statsUrl = useSelector( ( state ) => getStatsUrl( state, site?.ID ) ?? '' );
const siteEditorUrl = useSelector( ( state ) =>
site?.ID && activeThemeData
? getCustomizeUrl(
state as object,
activeThemeData[ 0 ]?.stylesheet,
site?.ID,
activeThemeData[ 0 ]?.is_block_theme
)
: ''
);
const importSiteUrl = addQueryArgs( { siteSlug: site?.slug }, '/setup/site-migration' );
const { adminLabel, adminUrl } = useSiteAdminInterfaceData( site?.ID );
const isMac = window?.navigator.userAgent && window.navigator.userAgent.indexOf( 'Mac' ) > -1;
const paletteShortcut = isMac ? '⌘K' : 'Ctrl + K';
return (
<HostingCard className="hosting-overview__quick-actions">
<div className="hosting-card__title-wrapper">
<h3 className="hosting-card__title">
{ hasEnTranslation( 'Command Palette' )
? translate( 'Command Palette' )
: translate( 'Quick actions' ) }
</h3>
<span className="hosting-card__title-shortcut">{ paletteShortcut }</span>
</div>
<HostingCardDescription>
{ translate(
// Translators: {{shortcut/}} is "⌘K" or "Ctrl+K" depending on the user's OS.
'Navigate your site smoothly. Use the commands below or press %(shortcut)s for more options.',
{
args: { shortcut: paletteShortcut },
}
) }
</HostingCardDescription>
<ul className="hosting-overview__actions-list">
<Action
icon={ <SidebarCustomIcon icon="dashicons-wordpress-alt hosting-overview__dashicon" /> }
href={ adminUrl }
text={ adminLabel }
commandName="openSiteDashboard"
/>
<Action
icon={
<SidebarCustomIcon icon="dashicons-admin-customizer hosting-overview__dashicon" />
}
href={ siteEditorUrl }
text={ translate( 'Edit site' ) }
commandName="openSiteEditor"
/>
<Action
icon={ <WriteIcon /> }
href={ editorUrl }
text={ translate( 'Write post' ) }
commandName="addNewPost"
/>
<Action
icon={
<SidebarCustomIcon icon="dashicons-admin-appearance hosting-overview__dashicon" />
}
href={ themeInstallUrl }
text={ translate( 'Change theme' ) }
commandName="installTheme"
/>
<Action
icon={ <SidebarCustomIcon icon="dashicons-chart-bar hosting-overview__dashicon" /> }
href={ statsUrl }
text={ translate( 'See Jetpack Stats' ) }
commandName="openJetpackStats"
/>
<Action
icon={ <Icon className="hosting-overview__dashicon" icon={ download } /> }
href={ importSiteUrl }
text={ translate( 'Import site to WordPress.com' ) }
commandName="importSite"
/>
</ul>
</HostingCard>
);
};
export default QuickActionsCard;
|