2022-12-09 17:37:21 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2022-12-13 13:36:09 +00:00
|
|
|
import { Button } from '@wordpress/components';
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
import GridiconCheckmarkCircle from 'gridicons/dist/checkmark-circle';
|
|
|
|
import GridiconSync from 'gridicons/dist/sync';
|
|
|
|
import GridiconNotice from 'gridicons/dist/notice';
|
|
|
|
import classnames from 'classnames';
|
2022-12-09 17:37:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2022-12-13 13:36:09 +00:00
|
|
|
import { PluginCardBody } from '~/marketing/components';
|
|
|
|
import { InstalledChannel, SyncStatusType } from '~/marketing/types';
|
2022-12-09 17:37:21 +00:00
|
|
|
import './InstalledChannelCardBody.scss';
|
|
|
|
|
|
|
|
type InstalledChannelCardBodyProps = {
|
|
|
|
installedChannel: InstalledChannel;
|
|
|
|
};
|
|
|
|
|
2022-12-13 13:36:09 +00:00
|
|
|
type SyncStatusPropsType = {
|
|
|
|
status: SyncStatusType;
|
|
|
|
};
|
|
|
|
|
|
|
|
const iconSize = 18;
|
|
|
|
const className = 'woocommerce-marketing-sync-status';
|
|
|
|
|
|
|
|
const SyncStatus: React.FC< SyncStatusPropsType > = ( { status } ) => {
|
|
|
|
if ( status === 'failed' ) {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={ classnames( className, `${ className }__failed` ) }
|
|
|
|
>
|
|
|
|
<GridiconNotice size={ iconSize } />
|
|
|
|
{ __( 'Sync failed', 'woocommerce' ) }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( status === 'syncing' ) {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={ classnames( className, `${ className }__syncing` ) }
|
|
|
|
>
|
|
|
|
<GridiconSync size={ iconSize } />
|
|
|
|
{ __( 'Syncing', 'woocommerce' ) }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={ classnames( className, `${ className }__synced` ) }>
|
|
|
|
<GridiconCheckmarkCircle size={ iconSize } />
|
|
|
|
{ __( 'Synced', 'woocommerce' ) }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-12-09 17:37:21 +00:00
|
|
|
export const InstalledChannelCardBody: React.FC<
|
|
|
|
InstalledChannelCardBodyProps
|
|
|
|
> = ( { installedChannel } ) => {
|
|
|
|
return (
|
2022-12-13 13:36:09 +00:00
|
|
|
<PluginCardBody
|
|
|
|
className="woocommerce-marketing-installed-channel-card-body"
|
|
|
|
icon={
|
|
|
|
<img
|
|
|
|
src={ installedChannel.icon }
|
|
|
|
alt={ installedChannel.title }
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
name={ installedChannel.title }
|
|
|
|
description={
|
|
|
|
<div>
|
|
|
|
<SyncStatus status={ installedChannel.syncStatus } />
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
button={
|
|
|
|
<Button variant="secondary" href={ installedChannel.manageUrl }>
|
|
|
|
{ __( 'Manage', 'woocommerce' ) }
|
|
|
|
</Button>
|
|
|
|
}
|
|
|
|
/>
|
2022-12-09 17:37:21 +00:00
|
|
|
);
|
|
|
|
};
|