Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { sprintf } from '@wordpress/i18n';
import { useI18n } from '@wordpress/react-i18n';
import clsx from 'clsx';
import { useMemo } from 'react';
import { getStylesColorFromVariation } from './utils';
import type { StyleVariation } from '../../types';
import './style.scss';
const SPACE_BAR_KEYCODE = 32;
interface BadgeProps {
variation: StyleVariation;
onClick?: ( variation: StyleVariation ) => void;
isSelected?: boolean;
}
const Badge: React.FC< BadgeProps > = ( { variation, onClick, isSelected } ) => {
const { __ } = useI18n();
const color = useMemo(
() => variation && getStylesColorFromVariation( variation ),
[ variation ]
);
if ( ! color ) {
return null;
}
const title = variation.title
? // translators: %(title)s - the style variation title.
sprintf( __( 'Style: %(title)s' ), { title: variation.title } )
: __( 'Preview with this style' );
return (
<div
className={ clsx( 'style-variation__badge-wrapper', {
'style-variation__badge-is-selected': isSelected,
} ) }
tabIndex={ 0 }
role="button"
title={ title }
aria-label={ title }
onClick={ ( e ) => {
if ( isSelected ) {
return;
}
// Prevent the event from bubbling to the parent button.
e.stopPropagation();
onClick?.( variation );
} }
onKeyDown={ ( e ) => {
if ( isSelected ) {
return;
}
if ( e.keyCode === SPACE_BAR_KEYCODE ) {
// Prevent the event from bubbling to the parent button.
e.stopPropagation();
e.preventDefault();
onClick?.( variation );
}
} }
>
<span
style={ {
background: `linear-gradient(
to right,
${ color.background } 0 50%,
${ color.text } 50% 100%)`,
} }
/>
</div>
);
};
export default Badge;