Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import {
__unstableMotion as motion,
__experimentalHStack as HStack,
__experimentalVStack as VStack,
} from '@wordpress/components';
import { useReducedMotion, useResizeObserver } from '@wordpress/compose';
import { useState } from '@wordpress/element';
import { useGlobalSetting, useGlobalStyle } from '../../gutenberg-bridge';
import GlobalStylesVariationContainer from '../global-styles-variation-container';
import type { Color } from '../../types';
const firstFrame = {
start: {
scale: 1,
opacity: 1,
},
hover: {
scale: 0,
opacity: 0,
},
};
const midFrame = {
hover: {
opacity: 1,
},
start: {
opacity: 0.5,
},
};
const secondFrame = {
hover: {
scale: 1,
opacity: 1,
},
start: {
scale: 0,
opacity: 0,
},
};
const normalizedWidth = 248;
const normalizedHeight = 152;
const normalizedColorSwatchSize = 32;
interface Props {
title?: string;
inlineCss?: string;
isFocused?: boolean;
onFocusOut?: () => void;
}
const GlobalStylesVariationPreview = ( { title, inlineCss, isFocused, onFocusOut }: Props ) => {
const [ fontWeight ] = useGlobalStyle( 'typography.fontWeight' );
const [ fontFamily = 'serif' ] = useGlobalStyle( 'typography.fontFamily' );
const [ baseHeadingFontFamily = fontFamily ] = useGlobalStyle(
'elements.heading.typography.fontFamily'
);
const [ baseHeadingFontWeight = fontWeight ] = useGlobalStyle(
'elements.heading.typography.fontWeight'
);
const [ headingFontFamily = baseHeadingFontFamily ] = useGlobalStyle(
'elements.h1.typography.fontFamily'
);
const [ headingFontWeight = baseHeadingFontWeight ] = useGlobalStyle(
'elements.h1.typography.fontWeight'
);
const [ textColor = 'black' ] = useGlobalStyle( 'color.text' );
const [ backgroundColor = 'white' ] = useGlobalStyle( 'color.background' );
const [ headingColor = textColor ] = useGlobalStyle( 'elements.h1.color.text' );
const [ linkColor = headingColor ] = useGlobalStyle( 'elements.link.color.text' );
const [ buttonBackgroundColor = linkColor ] = useGlobalStyle(
'elements.button.color.background'
);
const [ gradientValue ] = useGlobalStyle( 'color.gradient' );
const disableMotion = useReducedMotion();
const [ coreColors ] = useGlobalSetting( 'color.palette.core' );
const [ themeColors ] = useGlobalSetting( 'color.palette.theme' );
const [ customColors ] = useGlobalSetting( 'color.palette.custom' );
const [ isHovered, setIsHovered ] = useState( false );
const [ containerResizeListener, { width } ] = useResizeObserver();
const ratio = width ? width / normalizedWidth : 1;
const paletteColors = ( themeColors ?? [] )
.concat( customColors ?? [] )
.concat( coreColors ?? [] );
const textColorObject = paletteColors.filter(
( { color }: { color: Color } ) => color === textColor
);
const buttonBackgroundColorObject = paletteColors.filter(
( { color }: { color: Color } ) => color === buttonBackgroundColor
);
// Prefer the text & button background (or link) color, then look through the full palette.
const highlightedColors = textColorObject
.concat( buttonBackgroundColorObject )
.concat( paletteColors )
.filter(
// we exclude this background color because it is already visible in the preview.
( { color }: { color: Color } ) => color !== backgroundColor
)
.slice( 0, 2 );
return (
<GlobalStylesVariationContainer
width={ width }
height={ normalizedHeight * ratio }
inlineCss={ inlineCss }
containerResizeListener={ containerResizeListener }
onFocusOut={ onFocusOut }
>
<motion.div
style={ {
height: normalizedHeight * ratio,
width: '100%',
background: gradientValue ?? backgroundColor,
cursor: 'pointer',
} }
initial="start"
animate={ ( isHovered || isFocused ) && ! disableMotion && title ? 'hover' : 'start' }
onMouseEnter={ () => setIsHovered( true ) }
onMouseLeave={ () => setIsHovered( false ) }
>
<motion.div
variants={ firstFrame }
style={ {
height: '100%',
overflow: 'hidden',
} }
>
<HStack
spacing={ 10 * ratio }
justify="center"
style={ {
height: '100%',
overflow: 'hidden',
} }
>
<motion.div
style={ {
fontFamily: headingFontFamily,
fontSize: 65 * ratio,
color: headingColor,
fontWeight: headingFontWeight,
} }
animate={ { scale: 1, opacity: 1 } }
initial={ { scale: 0.1, opacity: 0 } }
transition={ { delay: 0.3, type: 'tween' } }
>
Aa
</motion.div>
<VStack spacing={ 4 * ratio }>
{ highlightedColors.map(
( { slug, color }: { slug: string; color: string }, index: number ) => (
<motion.div
key={ `${ slug }-${ index }` }
style={ {
height: normalizedColorSwatchSize * ratio,
width: normalizedColorSwatchSize * ratio,
background: color,
borderRadius: ( normalizedColorSwatchSize * ratio ) / 2,
} }
animate={ { scale: 1, opacity: 1 } }
initial={ { scale: 0.1, opacity: 0 } }
transition={ {
delay: index === 1 ? 0.2 : 0.1,
} }
/>
)
) }
</VStack>
</HStack>
</motion.div>
<motion.div
variants={ midFrame }
style={ {
height: '100%',
width: '100%',
position: 'absolute',
top: 0,
overflow: 'hidden',
filter: 'blur(60px)',
opacity: 0.1,
} }
>
<HStack
spacing={ 0 }
justify="flex-start"
style={ {
height: '100%',
overflow: 'hidden',
} }
>
{ paletteColors.slice( 0, 4 ).map( ( { color }: { color: string }, index: number ) => (
<div
key={ index }
style={ {
height: '100%',
background: color,
flexGrow: 1,
} }
/>
) ) }
</HStack>
</motion.div>
<motion.div
variants={ secondFrame }
style={ {
height: '100%',
width: '100%',
overflow: 'hidden',
position: 'absolute',
top: 0,
} }
>
<VStack
spacing={ 3 * ratio }
justify="center"
style={ {
height: '100%',
overflow: 'hidden',
padding: 10 * ratio,
boxSizing: 'border-box',
} }
>
{ title && (
<div
style={ {
fontSize: 40 * ratio,
fontFamily: headingFontFamily,
color: headingColor,
fontWeight: headingFontWeight,
lineHeight: '1em',
textAlign: 'center',
} }
>
{ title }
</div>
) }
</VStack>
</motion.div>
</motion.div>
</GlobalStylesVariationContainer>
);
};
export default GlobalStylesVariationPreview;