Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { FoldableCard, ExternalLink as ExternalLinkComponent } from '@automattic/components';
import { useBreakpoint } from '@automattic/viewport-react';
import { css } from '@emotion/react';
import styled from '@emotion/styled';
import { Fragment } from 'react';
import InlineSupportLink from 'calypso/components/inline-support-link';
const PLUGIN_DETAILS_LINK_TYPES = {
NEW_TAB: 'NewTab',
HELP_CENTER: 'HelpCenter',
};
const Container = styled( FoldableCard )`
display: flex;
flex-direction: column;
align-items: flex-start;
width: 100%;
margin-bottom: 0;
box-shadow: none;
${ ( props ) => props.showAsAccordion && 'border-bottom: 1px solid #eeeeee' };
${ ( props ) => props.showAsAccordion && 'border-top: 1px solid var( --studio-gray-5)' };
${ ( props ) => props.showAsAccordion && props.first && 'border-top: 0' };
.foldable-card__content {
width: 100%;
}
.foldable-card__header {
padding-left: 0;
padding-right: 0;
${ ( props ) => ! props.showAsAccordion && 'display: none' };
}
// Increase specificity to avoid conflicts with foldable-card styles
&&.is-expanded .foldable-card__content {
${ ( props ) => props.first && 'border-top: 0' };
${ ( props ) => props.showAsAccordion && 'border: 0' };
padding: ${ ( props ) => ( props.first ? '0 0 24px' : '24px 0' ) };
${ ( props ) => props.showAsAccordion && 'padding: 0' };
}
&:last-child.is-expanded {
margin-bottom: 0;
&.is-expanded .foldable-card__content {
padding-bottom: 0;
}
}
`;
const Icon = styled.img`
margin-right: 6px;
width: 32px;
height: 24px;
${ ( props ) => ! props.showAsAccordion && 'margin-bottom: 12px;' };
`;
const Title = styled.div`
color: var( --studio-gray-100 );
font-size: 14px;
${ ( props ) => ! props.showAsAccordion && 'font-weight: 600' };
${ ( props ) => ! props.showAsAccordion && 'margin-bottom: 12px;' };
`;
const Description = styled.div`
color: var( --studio-gray-80 );
font-size: 14px;
${ ( props ) => props.showAsAccordion && 'margin-bottom: 12px;' };
`;
const linkStyles = css`
display: inline-block;
margin-top: 6px;
font-size: 14px;
`;
const ExternalLink = styled( ExternalLinkComponent )`
${ linkStyles }
`;
const Link = styled.a`
${ linkStyles }
`;
const StyledInlineSupportLink = styled( InlineSupportLink )`
${ linkStyles }
`;
const PluginDetailsSidebarUSP = ( {
id,
title,
description,
icon = undefined,
links = undefined,
first = false,
} ) => {
const isNarrow = useBreakpoint( '<960px' );
const Header = () => {
return (
<>
{ icon && (
<>
<Icon src={ icon.src } showAsAccordion={ isNarrow } />
&nbsp;
</>
) }
<Title showAsAccordion={ isNarrow }>{ title }</Title>
</>
);
};
return (
<Container
key={ id }
header={ <Header /> }
expanded={ ! isNarrow }
showAsAccordion={ isNarrow }
first={ first }
>
{ ! isNarrow && <Header /> }
<Description showAsAccordion={ isNarrow }>{ description }</Description>
{ links &&
links.map( ( link, idx ) => {
const { openIn, label, ...linkProps } = link;
let LinkComponent;
if ( openIn === PLUGIN_DETAILS_LINK_TYPES.NEW_TAB ) {
LinkComponent = ExternalLink;
linkProps.icon = true;
} else if ( openIn === PLUGIN_DETAILS_LINK_TYPES.HELP_CENTER ) {
LinkComponent = StyledInlineSupportLink;
} else {
LinkComponent = Link;
}
return (
<Fragment key={ idx }>
<LinkComponent { ...linkProps }>{ label }</LinkComponent>
<br />
</Fragment>
);
} ) }
</Container>
);
};
export { PLUGIN_DETAILS_LINK_TYPES };
export default PluginDetailsSidebarUSP;