HEX
Server: LiteSpeed
System: Linux server240.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: creaqbdc (8964)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/creaqbdc/public_html/wp-content/plugins/essential-blocks/src/blocks/slider/src/inspector.js
/**
 * WordPress dependencies
 */
import { __ } from "@wordpress/i18n";
import {
    PanelRow,
    SelectControl,
    ToggleControl,
    Button,
    ButtonGroup,
    RangeControl,
    TextControl,
    TextareaControl,
    __experimentalDivider as Divider,
} from "@wordpress/components";

/*
 * Internal depencencies
 */
import {
    WRAPPER_BG,
    WRAPPER_MARGIN,
    WRAPPER_PADDING,
    WRAPPER_BORDER_SHADOW,
    TITLE_MARGIN,
    SUBTITLE_MARGIN,
    BUTTON_MARGIN,
    BUTTON_PADDING,
    BUTTON_BORDER_SHADOW,
    BUTTON2_MARGIN,
    BUTTON2_PADDING,
    BUTTON2_BORDER_SHADOW,
    DOTS_GAP,
    ARROW_POSITION,
    DOTS_POSITION,
    ARROW_SIZE,
    DOTS_SIZE,
    SLIDES_GAP,
    SLIDE_TO_SHOW,
    CUSTOM_HEIGHT,
    NORMAL_HOVER,
    SLIDER_CONTENT_TYPE,
    SLIDER_TYPE,
    UNIT_TYPES,
    HEIGHT_UNIT_TYPES,
    FONT_UNIT_TYPES,
    COLORS,
    TEXT_ALIGN,
    VERTICAL_ALIGN,
    TAGS_TYPE,
    SLIDER_BORDER_SHADOW,
} from "./constants/constants";


import { TITLE_TYPOGRAPHY, SUBTITLE_TYPOGRAPHY, BUTTON_TYPOGRAPHY, BUTTON2_TYPOGRAPHY } from "./constants/typography-constant";

import {
    handleImageData,
    handleImage,
} from "./helpers";

import {
    ResponsiveDimensionsControl,
    TypographyDropdown,
    BorderShadowControl,
    ResponsiveRangeController,
    ColorControl,
    faArrowIcons,
    EBIconPicker,
    InspectorPanel,
    isValidHtml,
    SortControl,
    sanitizeIconValue,
    ImageComponent,
    EBTextControl
} from "@essential-blocks/controls";

function Inspector(props) {
    const { attributes, setAttributes, slider } = props;
    const {
        resOption,
        sliderType,
        sliderContentType,
        images,
        arrows,
        adaptiveHeight,
        autoplay,
        autoplaySpeed,
        dots,
        fade,
        infinite,
        vertical,
        pauseOnHover,
        isCustomHeight,
        speed,
        titleColor,
        subtitleColor,
        buttonColorType,
        buttonColor,
        buttonHoverColor,
        buttonBGColor,
        buttonHoverBGColor,
        secondButtonColorType,
        secondButtonColor,
        secondButtonHoverColor,
        secondButtonBGColor,
        secondButtonHoverBGColor,
        overlayColor,
        arrowColorType,
        arrowColor,
        arrowHoverColor,
        dotsColor,
        dotsActiveColor,
        textAlign,
        verticalAlign,
        arrowPrevIcon,
        arrowNextIcon,
        titleTag,
        contentTag,
        showLightbox,
        version,
    } = attributes;

    // Add this function to get the settings components for each slide
    const getSliderItemsComponents = () => {
        return images.map((each, i) => (
            <div key={i}>
                <PanelRow>
                    {__("Image", "essential-blocks")}
                </PanelRow>
                <ImageComponent.GeneralTab
                    onSelect={(value) => handleImage(value, i, images, setAttributes)}
                    value={(!each.url || each.url.startsWith('data:image/')) ? each.id : each.url}
                    hasTag={false}
                    hasCaption={false}
                    hasStyle={false}
                    hasLink={false}
                    showInPanel={false}
                />

                {sliderType === "content" && (
                    <>
                        <EBTextControl
                            label={__("Title", "essential-blocks")}
                            value={each.title}
                            onChange={(value) =>
                                handleImageData(
                                    'title',
                                    value,
                                    each.id,
                                    images,
                                    setAttributes
                                )
                            }
                            enableAi={true}
                        />

                        {!isValidHtml(each.title) && (
                            <PanelRow className="eb-instruction-row">
                                <div className="eb-instruction">
                                    <strong>Note:</strong> Invalid HTML Tag.
                                </div>
                            </PanelRow>
                        )}

                        <EBTextControl
                            label={__("Subtitle", "essential-blocks")}
                            value={each.subtitle}
                            onChange={(value) =>
                                handleImageData(
                                    'subtitle',
                                    value,
                                    each.id,
                                    images,
                                    setAttributes
                                )
                            }
                            enableAi={true}
                        />

                        {!isValidHtml(each.subtitle) && (
                            <PanelRow className="eb-instruction-row">
                                <div className="eb-instruction">
                                    <strong>Note:</strong> Invalid HTML Tag.
                                </div>
                            </PanelRow>
                        )}

                        <ToggleControl
                            label={__("Show Button", "essential-blocks")}
                            checked={each.showButton}
                            onChange={() =>
                                handleImageData(
                                    'showButton',
                                    !each.showButton,
                                    each.id,
                                    images,
                                    setAttributes
                                )
                            }
                        />

                        {each.showButton && (
                            <>
                                <EBTextControl
                                    label={__("Button Text", "essential-blocks")}
                                    value={each.buttonText}
                                    onChange={(value) =>
                                        handleImageData(
                                            'buttonText',
                                            value,
                                            each.id,
                                            images,
                                            setAttributes
                                        )
                                    }
                                    enableAi={true}
                                />

                                {!isValidHtml(each.buttonText) && (
                                    <PanelRow className="eb-instruction-row">
                                        <div className="eb-instruction">
                                            <strong>Note:</strong> Invalid HTML Tag.
                                        </div>
                                    </PanelRow>
                                )}

                                <EBTextControl
                                    label={__("Button URL", "essential-blocks")}
                                    fieldType="url"
                                    value={each.buttonUrl}
                                    onChange={(value) =>
                                        handleImageData(
                                            'buttonUrl',
                                            value,
                                            each.id,
                                            images,
                                            setAttributes
                                        )
                                    }
                                    placeholder="https://example.com"
                                    help={__(
                                        "Enter a valid URL.",
                                        "essential-blocks"
                                    )}
                                    showValidation={true}
                                    enableSecurity={true}
                                />

                                {each.buttonUrl && each.buttonUrl.length > 0 && !each.isValidUrl && (
                                    <span className="error">{__("URL is not valid", "essential-blocks")}</span>
                                )}

                                <ToggleControl
                                    label={__("Open in New Tab", "essential-blocks")}
                                    checked={each.openNewTab}
                                    onChange={() =>
                                        handleImageData(
                                            'openNewTab',
                                            !each.openNewTab,
                                            each.id,
                                            images,
                                            setAttributes
                                        )
                                    }
                                />

                                <ToggleControl
                                    label={__("Add Second Button", "essential-blocks")}
                                    checked={each.showSecondButton}
                                    onChange={(value) =>
                                        handleImageData(
                                            'showSecondButton',
                                            value,
                                            each.id,
                                            images,
                                            setAttributes
                                        )
                                    }
                                />

                                {each.showSecondButton && (
                                    <>
                                        <TextControl
                                            label={__("Second Button Text", "essential-blocks")}
                                            value={each.secondButtonText}
                                            onChange={(value) =>
                                                handleImageData(
                                                    'secondButtonText',
                                                    value,
                                                    each.id,
                                                    images,
                                                    setAttributes
                                                )
                                            }
                                        />

                                        {!isValidHtml(each.secondButtonText) && (
                                            <PanelRow className="eb-instruction-row">
                                                <div className="eb-instruction">
                                                    <strong>Note:</strong> Invalid HTML Tag.
                                                </div>
                                            </PanelRow>
                                        )}

                                        <EBTextControl
                                            label={__("Second Button URL", "essential-blocks")}
                                            fieldType="url"
                                            value={each.secondButtonUrl}
                                            onChange={(value) =>
                                                handleImageData(
                                                    'secondButtonUrl',
                                                    value,
                                                    each.id,
                                                    images,
                                                    setAttributes
                                                )
                                            }
                                            placeholder="https://example.com"
                                            help={__(
                                                "Enter a valid URL.",
                                                "essential-blocks"
                                            )}
                                            showValidation={true}
                                            enableSecurity={true}
                                        />

                                        {each.secondButtonUrl && each.secondButtonUrl.length > 0 && !each.isValidUrl && (
                                            <span className="error">{__("URL is not valid", "essential-blocks")}</span>
                                        )}

                                        <ToggleControl
                                            label={__("Open in New Tab", "essential-blocks")}
                                            checked={each.secondButtonOpenNewTab}
                                            onChange={() =>
                                                handleImageData(
                                                    'secondButtonOpenNewTab',
                                                    !each.secondButtonOpenNewTab,
                                                    each.id,
                                                    images,
                                                    setAttributes
                                                )
                                            }
                                        />

                                    </>
                                )}
                            </>
                        )}

                        {sliderContentType === "content-1" && (
                            <>
                                <ToggleControl
                                    label={__("Enable Content Link", "essential-blocks")}
                                    checked={each.enableContentLink}
                                    onChange={() =>
                                        handleImageData(
                                            'enableContentLink',
                                            !each.enableContentLink,
                                            each.id,
                                            images,
                                            setAttributes
                                        )
                                    }
                                />

                                {each.enableContentLink && (
                                    <>
                                        <EBTextControl
                                            label={__("Content Link", "essential-blocks")}
                                            fieldType="url"
                                            value={each.contentLink}
                                            onChange={(value) =>
                                                handleImageData(
                                                    'contentLink',
                                                    value,
                                                    each.id,
                                                    images,
                                                    setAttributes
                                                )
                                            }
                                            placeholder="https://example.com"
                                            help={__(
                                                "Enter a valid URL.",
                                                "essential-blocks"
                                            )}
                                            showValidation={true}
                                            enableSecurity={true}
                                        />

                                        {each.contentLink && each.contentLink.length > 0 && !each.isContentUrlValid && (
                                            <span className="error">{__("URL is not valid", "essential-blocks")}</span>
                                        )}

                                        <ToggleControl
                                            label={__("Open in New Tab", "essential-blocks")}
                                            checked={each.contentOpenNewTab}
                                            onChange={() =>
                                                handleImageData(
                                                    'contentOpenNewTab',
                                                    !each.contentOpenNewTab,
                                                    each.id,
                                                    images,
                                                    setAttributes
                                                )
                                            }
                                        />
                                    </>
                                )}
                            </>
                        )}
                    </>
                )}

                {sliderType === "image" && (
                    <>
                        <EBTextControl
                            label={__("URL", "essential-blocks")}
                            fieldType="url"
                            value={each.buttonUrl}
                            onChange={(value) =>
                                handleImageData(
                                    'buttonUrl',
                                    value,
                                    each.id,
                                    images,
                                    setAttributes
                                )
                            }
                            placeholder="https://example.com"
                            help={__(
                                "Enter a valid URL.",
                                "essential-blocks"
                            )}
                            showValidation={true}
                            enableSecurity={true}
                        />

                        {each.buttonUrl && each.buttonUrl.length > 0 && !each.isValidUrl && (
                            <span className="error">{__("URL is not valid", "essential-blocks")}</span>
                        )}

                        <ToggleControl
                            label={__("Open in New Tab", "essential-blocks")}
                            checked={each.openNewTab}
                            onChange={() =>
                                handleImageData(
                                    'openNewTab',
                                    !each.openNewTab,
                                    each.id,
                                    images,
                                    setAttributes
                                )
                            }
                        />
                    </>
                )}
            </div>
        ))
    };

    return (
        <>
            <InspectorPanel
                advancedControlProps={{
                    marginPrefix: WRAPPER_MARGIN,
                    paddingPrefix: WRAPPER_PADDING,
                    borderPrefix: WRAPPER_BORDER_SHADOW,
                    backgroundPrefix: WRAPPER_BG,
                }}>
                <InspectorPanel.General>
                    <InspectorPanel.PanelBody title={__("General", "essential-blocks")} initialOpen={true}>
                        <SelectControl
                            label={__("Slider Type", "essential-blocks")}
                            value={sliderType}
                            options={SLIDER_TYPE}
                            onChange={(value) =>
                                setAttributes({
                                    sliderType: value,
                                })
                            }
                        />

                        <ToggleControl
                            label={__("Show Arrows", "essential-blocks")}
                            checked={arrows}
                            onChange={() => {
                                setAttributes({
                                    arrows: !arrows,
                                });
                            }}
                        />
                        <ToggleControl
                            label={__("Adaptive Height", "essential-blocks")}
                            checked={adaptiveHeight}
                            onChange={() => {
                                setAttributes({
                                    adaptiveHeight: !adaptiveHeight,
                                });
                            }}
                        />

                        <ToggleControl
                            label={__("Autoplay", "essential-blocks")}
                            checked={autoplay}
                            onChange={() => {
                                autoplay ? slider.current.slickPlay() : slider.current.slickPause();
                                setAttributes({
                                    autoplay: !autoplay,
                                });
                            }}
                        />

                        <ToggleControl
                            label={__("Dots", "essential-blocks")}
                            checked={dots}
                            onChange={() => setAttributes({ dots: !dots })}
                        />

                        {!vertical && (
                            <ToggleControl
                                label={__("Fade", "essential-blocks")}
                                checked={fade}
                                onChange={() => setAttributes({ fade: !fade })}
                            />
                        )}

                        <ToggleControl
                            label={__("Infinite", "essential-blocks")}
                            checked={infinite}
                            onChange={() =>
                                setAttributes({
                                    infinite: !infinite,
                                })
                            }
                        />

                        <ToggleControl
                            label={__("Vertical Slide", "essential-blocks")}
                            checked={vertical}
                            onChange={() =>
                                setAttributes({
                                    vertical: !vertical,
                                })
                            }
                        />

                        {vertical && (
                            <PanelRow>
                                <em>{__("Fade will disable if enable Vertical Slide", "essential-blocks")}</em>
                            </PanelRow>
                        )}

                        <ToggleControl
                            label={__("Pause on Hover", "essential-blocks")}
                            checked={pauseOnHover}
                            onChange={() =>
                                setAttributes({
                                    pauseOnHover: !pauseOnHover,
                                })
                            }
                        />

                        <ToggleControl
                            label={__("Custom Height", "essential-blocks")}
                            checked={isCustomHeight}
                            onChange={() =>
                                setAttributes({
                                    isCustomHeight: !isCustomHeight,
                                })
                            }
                        />

                        {isCustomHeight && (
                            <ResponsiveRangeController
                                baseLabel={__("Image Height", "essential-blocks")}
                                controlName={CUSTOM_HEIGHT}
                                units={HEIGHT_UNIT_TYPES}
                                min={1}
                                max={1200}
                                step={1}
                            />
                        )}

                        {!fade && (
                            <ResponsiveRangeController
                                baseLabel={__("Slides to Show", "essential-blocks")}
                                controlName={SLIDE_TO_SHOW}
                                units={[]}
                                min={1}
                                max={8}
                                step={1}
                            />
                        )}

                        {autoplay && (
                            <RangeControl
                                label={__("Autoplay Speed", "essential-blocks")}
                                value={autoplaySpeed}
                                onChange={(autoplaySpeed) =>
                                    setAttributes({
                                        autoplaySpeed,
                                    })
                                }
                                min={0}
                                max={8000}
                            />
                        )}

                        <RangeControl
                            label={__("Animation Speed", "essential-blocks")}
                            value={speed}
                            onChange={(speed) => setAttributes({ speed })}
                            min={0}
                            max={3000}
                        />

                        {arrows && (
                            <>
                                <EBIconPicker
                                    value={arrowPrevIcon}
                                    onChange={(iconValue) =>
                                        setAttributes({
                                            arrowPrevIcon: sanitizeIconValue(iconValue),
                                        })
                                    }
                                    title={__("Arrow Prev Icon", "essential-blocks")}
                                    icons={{ fontAwesome: faArrowIcons }}
                                    disableDashicon={true}
                                />
                                <EBIconPicker
                                    value={arrowNextIcon}
                                    onChange={(iconValue) =>
                                        setAttributes({
                                            arrowNextIcon: sanitizeIconValue(iconValue),
                                        })
                                    }
                                    title={__("Arrow Next Icon", "essential-blocks")}
                                    icons={{ fontAwesome: faArrowIcons }}
                                    disableDashicon={true}
                                />
                            </>
                        )}

                        {version === 'v2' && (
                            <>
                                <Divider />

                                <ToggleControl
                                    label={__("Show Lightbox", "essential-blocks")}
                                    checked={showLightbox}
                                    onChange={() => {
                                        setAttributes({
                                            showLightbox: !showLightbox,
                                        });
                                    }}
                                />
                            </>
                        )}

                    </InspectorPanel.PanelBody>

                    <InspectorPanel.PanelBody title={__("Slides", "essential-blocks")} initialOpen={true}>
                        {sliderType === "content" && (
                            <>
                                <SelectControl
                                    label={__("Content Styles", "essential-blocks")}
                                    value={sliderContentType}
                                    options={SLIDER_CONTENT_TYPE}
                                    onChange={(value) =>
                                        setAttributes({
                                            sliderContentType: value,
                                        })
                                    }
                                />

                                <SelectControl
                                    label={__("Title Tag", "essential-blocks")}
                                    value={titleTag}
                                    options={TAGS_TYPE}
                                    onChange={(titleTag) => {
                                        setAttributes({
                                            titleTag
                                        });
                                    }}
                                />
                                <SelectControl
                                    label={__("Content Tag", "essential-blocks")}
                                    value={contentTag}
                                    options={TAGS_TYPE}
                                    onChange={(contentTag) => {
                                        setAttributes({
                                            contentTag,
                                        });
                                    }}
                                />

                                <Divider />
                            </>
                        )}
                        <SortControl
                            items={attributes.images}
                            onSortEnd={(newImages) => setAttributes({ images: newImages })}
                            onDeleteItem={(index) => {
                                setAttributes({
                                    images: images.filter((_, i) => i !== index),
                                });
                            }}
                            hasSettings={true}
                            settingsComponents={getSliderItemsComponents()}
                            labelKey={'title'}
                            preserveLabels={true}
                            hasAddButton={false}
                        />
                    </InspectorPanel.PanelBody>
                </InspectorPanel.General>
                <InspectorPanel.Style>
                    <InspectorPanel.PanelBody title={__("Settings", "essential-blocks")} initialOpen={true}>
                        <ResponsiveRangeController
                            baseLabel={__("Slides Gap", "essential-blocks")}
                            controlName={SLIDES_GAP}
                            units={[]}
                            min={0}
                            max={100}
                            step={1}
                        />

                        {sliderType === "content" && sliderContentType === "content-1" && (
                            <ColorControl
                                label={__("Overlay Color", "essential-blocks")}
                                color={overlayColor}
                                attributeName={'overlayColor'}
                            />
                        )}
                        {sliderType === "content" && (
                            <>
                                <PanelRow>Text Align</PanelRow>
                                <ButtonGroup>
                                    {TEXT_ALIGN.map((item, index) => (
                                        <Button
                                            key={index}
                                            isPrimary={textAlign === item.value}
                                            isSecondary={textAlign !== item.value}
                                            onClick={() =>
                                                setAttributes({
                                                    textAlign: item.value,
                                                })
                                            }
                                        >
                                            {item.label}
                                        </Button>
                                    ))}
                                </ButtonGroup>

                                {sliderContentType != "content-2" && (
                                    <>
                                        <PanelRow>Vertical Align</PanelRow>
                                        <ButtonGroup>
                                            {VERTICAL_ALIGN.map((item, index) => (
                                                <Button
                                                    key={index}
                                                    isPrimary={verticalAlign === item.value}
                                                    isSecondary={verticalAlign !== item.value}
                                                    onClick={() =>
                                                        setAttributes({
                                                            verticalAlign: item.value,
                                                        })
                                                    }
                                                >
                                                    {item.label}
                                                </Button>
                                            ))}
                                        </ButtonGroup>
                                    </>
                                )}
                            </>
                        )}

                        <Divider />

                        <PanelRow>Slider Border</PanelRow>
                        <BorderShadowControl
                            controlName={SLIDER_BORDER_SHADOW}
                            noBdrHover
                            noShadow
                        />
                    </InspectorPanel.PanelBody>

                    {sliderType === "content" && (
                        <>
                            <InspectorPanel.PanelBody title={__("Title", "essential-blocks")} initialOpen={false}>
                                <ColorControl
                                    label={__("Color", "essential-blocks")}
                                    color={titleColor}
                                    attributeName={'titleColor'}
                                />

                                <TypographyDropdown
                                    baseLabel={__("Typography", "essential-blocks")}
                                    typographyPrefixConstant={TITLE_TYPOGRAPHY}
                                />
                                <ResponsiveDimensionsControl
                                    controlName={TITLE_MARGIN}
                                    baseLabel="Margin"
                                />
                            </InspectorPanel.PanelBody>

                            <InspectorPanel.PanelBody title={__("Subtitle", "essential-blocks")} initialOpen={false}>
                                <ColorControl
                                    label={__("Color", "essential-blocks")}
                                    color={subtitleColor}
                                    attributeName={'subtitleColor'}
                                />

                                <TypographyDropdown
                                    baseLabel={__("Typography", "essential-blocks")}
                                    typographyPrefixConstant={SUBTITLE_TYPOGRAPHY}
                                />
                                <ResponsiveDimensionsControl
                                    controlName={SUBTITLE_MARGIN}
                                    baseLabel="Margin"
                                />
                            </InspectorPanel.PanelBody>

                            <InspectorPanel.PanelBody title={__("Button", "essential-blocks")} initialOpen={false}>
                                <ButtonGroup className="eb-inspector-btn-group">
                                    {NORMAL_HOVER.map((item, index) => (
                                        <Button
                                            key={index}
                                            isPrimary={buttonColorType === item.value}
                                            isSecondary={buttonColorType !== item.value}
                                            onClick={() =>
                                                setAttributes({
                                                    buttonColorType: item.value,
                                                })
                                            }
                                        >
                                            {item.label}
                                        </Button>
                                    ))}
                                </ButtonGroup>

                                {buttonColorType === "normal" && (
                                    <>
                                        <ColorControl
                                            label={__("Color", "essential-blocks")}
                                            color={buttonColor}
                                            attributeName={'buttonColor'}
                                        />
                                        <ColorControl
                                            label={__("Background Color", "essential-blocks")}
                                            color={buttonBGColor}
                                            attributeName={'buttonBGColor'}
                                        />
                                    </>
                                )}

                                {buttonColorType === "hover" && (
                                    <>
                                        <ColorControl
                                            label={__("Color", "essential-blocks")}
                                            color={buttonHoverColor}
                                            attributeName={'buttonHoverColor'}
                                        />
                                        <ColorControl
                                            label={__("Background Color", "essential-blocks")}
                                            color={buttonHoverBGColor}
                                            attributeName={'buttonHoverBGColor'}
                                        />
                                    </>
                                )}
                                <PanelRow>Button Border & Shadow</PanelRow>
                                <BorderShadowControl
                                    controlName={BUTTON_BORDER_SHADOW}
                                // noShadow
                                // noBorder
                                />
                                <TypographyDropdown
                                    baseLabel={__("Typography", "essential-blocks")}
                                    typographyPrefixConstant={BUTTON_TYPOGRAPHY}
                                />
                                <ResponsiveDimensionsControl
                                    controlName={BUTTON_MARGIN}
                                    baseLabel="Margin"
                                />
                                <ResponsiveDimensionsControl
                                    controlName={BUTTON_PADDING}
                                    baseLabel="Padding"
                                />

                                <InspectorPanel.PanelBody
                                    title={__(
                                        "Second Button",
                                        "essential-blocks"
                                    )}
                                    initialOpen={false}
                                >
                                    <ButtonGroup className="eb-inspector-btn-group">
                                        {NORMAL_HOVER.map(
                                            (item, index) => (
                                                <Button
                                                    key={index}
                                                    isPrimary={
                                                        secondButtonColorType ===
                                                        item.value
                                                    }
                                                    isSecondary={
                                                        secondButtonColorType !==
                                                        item.value
                                                    }
                                                    onClick={() =>
                                                        setAttributes(
                                                            {
                                                                secondButtonColorType:
                                                                    item.value,
                                                            }
                                                        )
                                                    }
                                                >
                                                    {item.label}
                                                </Button>
                                            )
                                        )}
                                    </ButtonGroup>


                                    {secondButtonColorType === "normal" && (
                                        <>
                                            <ColorControl
                                                label={__("Color", "essential-blocks")}
                                                color={secondButtonColor}
                                                attributeName={'secondButtonColor'}
                                            />
                                            <ColorControl
                                                label={__("Background Color", "essential-blocks")}
                                                color={secondButtonBGColor}
                                                attributeName={'secondButtonBGColor'}
                                            />
                                        </>
                                    )}

                                    {secondButtonColorType === "hover" && (
                                        <>
                                            <ColorControl
                                                label={__("Color", "essential-blocks")}
                                                color={secondButtonHoverColor}
                                                attributeName={'secondButtonHoverColor'}
                                            />
                                            <ColorControl
                                                label={__("Background Color", "essential-blocks")}
                                                color={secondButtonHoverBGColor}
                                                attributeName={'secondButtonHoverBGColor'}
                                            />
                                        </>
                                    )}
                                    <PanelRow>
                                        Button Border & Shadow
                                    </PanelRow>
                                    <BorderShadowControl
                                        controlName={
                                            BUTTON2_BORDER_SHADOW
                                        }
                                    // noShadow
                                    // noBorder
                                    />
                                    <TypographyDropdown
                                        baseLabel={__(
                                            "Typography",
                                            "essential-blocks"
                                        )}
                                        typographyPrefixConstant={
                                            BUTTON2_TYPOGRAPHY
                                        }
                                    />
                                    <ResponsiveDimensionsControl
                                        controlName={
                                            BUTTON2_MARGIN
                                        }
                                        baseLabel="Margin"
                                    />
                                    <ResponsiveDimensionsControl
                                        controlName={
                                            BUTTON2_PADDING
                                        }
                                        baseLabel="Padding"
                                    />
                                </InspectorPanel.PanelBody>
                            </InspectorPanel.PanelBody>
                        </>
                    )}

                    {arrows && (
                        <InspectorPanel.PanelBody title={__("Arrow", "essential-blocks")} initialOpen={false}>
                            <ButtonGroup className="eb-inspector-btn-group">
                                {NORMAL_HOVER.map((item, index) => (
                                    <Button
                                        key={index}
                                        isPrimary={arrowColorType === item.value}
                                        isSecondary={arrowColorType !== item.value}
                                        onClick={() =>
                                            setAttributes({
                                                arrowColorType: item.value,
                                            })
                                        }
                                    >
                                        {item.label}
                                    </Button>
                                ))}
                            </ButtonGroup>

                            {arrowColorType === "normal" && (
                                <ColorControl
                                    label={__("Color", "essential-blocks")}
                                    color={arrowColor}
                                    attributeName={'arrowColor'}
                                />
                            )}

                            {arrowColorType === "hover" && (
                                <ColorControl
                                    label={__("Hover Color", "essential-blocks")}
                                    color={arrowHoverColor}
                                    attributeName={'arrowHoverColor'}
                                />
                            )}

                            <ResponsiveRangeController
                                baseLabel={__("Arrow Size", "essential-blocks")}
                                controlName={ARROW_SIZE}
                                units={FONT_UNIT_TYPES}
                                min={1}
                                max={50}
                                step={1}
                            />

                            <ResponsiveRangeController
                                baseLabel={__("Arrow Position", "essential-blocks")}
                                controlName={ARROW_POSITION}
                                units={UNIT_TYPES}
                                min={-50}
                                max={100}
                                step={1}
                            />
                        </InspectorPanel.PanelBody>
                    )}

                    {dots && (
                        <InspectorPanel.PanelBody title={__("Dot", "essential-blocks")} initialOpen={false}>
                            <ColorControl
                                label={__("Color", "essential-blocks")}
                                color={dotsColor}
                                attributeName={'dotsColor'}
                            />
                            <ColorControl
                                label={__("Active Color", "essential-blocks")}
                                color={dotsActiveColor}
                                attributeName={'dotsActiveColor'}
                            />

                            <ResponsiveRangeController
                                baseLabel={__(
                                    "Dots Size",
                                    "essential-blocks"
                                )}
                                controlName={DOTS_SIZE}
                                units={FONT_UNIT_TYPES}
                                min={1}
                                max={50}
                                step={1}
                            />
                            <ResponsiveRangeController
                                baseLabel={__(
                                    "Dots Gap",
                                    "essential-blocks"
                                )}
                                controlName={DOTS_GAP}
                                units={UNIT_TYPES}
                                min={0}
                                max={50}
                                step={1}
                            />
                            <ResponsiveRangeController
                                baseLabel={__("Dots Position", "essential-blocks")}
                                controlName={DOTS_POSITION}
                                units={UNIT_TYPES}
                                min={-50}
                                max={100}
                                step={1}
                            />
                        </InspectorPanel.PanelBody>
                    )}
                </InspectorPanel.Style>
            </InspectorPanel>
        </>

    );
}

export default Inspector;