File "index.js"

Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/extend/inspector-control/controls/background-panel/index.js
File size: 3.27 B (3.27 KB bytes)
MIME-type: text/x-java
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

import { __ } from '@wordpress/i18n';
import getIcon from '../../../../utils/get-icon';
import PanelArea from '../../../../components/panel-area';
import ImageUrl from './components/image-url';
import { useContext } from '@wordpress/element';
import ControlsContext from '../../../../block-context';
import UseInlineStyle from './components/use-inline-style';
import BackgroundOptions from './components/background-options';
import Size from './components/size';
import Position from './components/position';
import Repeat from './components/repeat';
import Attachment from './components/attachment';
import GradientControl from '../../../../components/gradient';

export default function BackgroundPanel( { attributes, setAttributes } ) {
	const { id, isInQueryLoop, supports: { backgroundPanel } } = useContext( ControlsContext );

	const {
		bgImage,
		bgOptions,
		bgImageInline,
		useDynamicData,
		dynamicContentType,
		isQueryLoopItem,
	} = attributes;

	return (
		<PanelArea
			title={ __( 'Backgrounds', 'generateblocks' ) }
			initialOpen={ false }
			icon={ getIcon( 'gradients' ) }
			className={ 'gblocks-panel-label' }
			id={ `${ id }Background` }
			attributes={ attributes }
			setAttributes={ setAttributes }
		>
			{ !! backgroundPanel.backgroundImage &&
				<>
					<ImageUrl
						bgImage={ bgImage }
						setAttributes={ setAttributes }
						isUsingFeaturedImage={ useDynamicData && '' !== dynamicContentType }
					/>

					{ ( !! bgImage || ( useDynamicData && '' !== dynamicContentType ) ) &&
						<>
							<UseInlineStyle
								checked={ !! bgImageInline }
								disabled={ useDynamicData && '' !== dynamicContentType && ( isQueryLoopItem || isInQueryLoop ) }
								onChange={ ( value ) => setAttributes( { bgImageInline: value } ) }
							/>

							<BackgroundOptions
								attributes={ attributes }
								setAttributes={ setAttributes }
							/>

							<Size
								value={ bgOptions.size }
								onChange={ ( nextSize ) => setAttributes( { bgOptions: { size: nextSize } } ) }
							/>

							<Position
								value={ bgOptions.position }
								onChange={ ( nextPosition ) => setAttributes( {
									bgOptions: { position: nextPosition },
								} ) }
							/>

							<Repeat
								value={ bgOptions.repeat }
								onChange={ ( nextRepeat ) => setAttributes( {
									bgOptions: { repeat: nextRepeat },
								} ) }
							/>

							<Attachment
								value={ bgOptions.attachment }
								onChange={ ( nextAttachment ) => setAttributes( {
									bgOptions: { attachment: nextAttachment },
								} ) }
							/>
						</>
					}
				</>
			}

			{ !! backgroundPanel.backgroundGradient &&
				<GradientControl
					attributes={ attributes }
					setAttributes={ setAttributes }
					attrGradient={ 'gradient' }
					attrGradientDirection={ 'gradientDirection' }
					attrGradientColorOne={ 'gradientColorOne' }
					attrGradientColorStopOne={ 'gradientColorStopOne' }
					attrGradientColorTwo={ 'gradientColorTwo' }
					attrGradientColorStopTwo={ 'gradientColorStopTwo' }
					attrGradientColorOneOpacity={ 'gradientColorOneOpacity' }
					attrGradientColorTwoOpacity={ 'gradientColorTwoOpacity' }
					defaultColorOne={ generateBlocksDefaults[ id ].gradientColorOne }
					defaultColorTwo={ generateBlocksDefaults[ id ].gradientColorTwo }
				/>
			}
		</PanelArea>
	);
}