HEX
Server: Apache
System: Linux www 5.10.0-10-amd64 #1 SMP Debian 5.10.84-1 (2021-12-08) x86_64
User: root (0)
PHP: 8.2.1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals
Upload Files
File: /mnt/drbd/www/edenhouse/wp-content/plugins/essential-blocks/blocks/advanced-video/src/inspector.js
/**
 * WordPress dependencies
 */
import { __ } from "@wordpress/i18n";
import { InspectorControls, MediaUpload } from "@wordpress/block-editor";
import {
    PanelBody,
    SelectControl,
    ToggleControl,
    Button,
    ButtonGroup,
    BaseControl,
    TabPanel,
    TextControl,
    PanelRow,
    __experimentalDivider as Divider,
} from "@wordpress/components";
import { useEffect, useState } from "@wordpress/element";

/**
 * Internal depencencies
 */

import objAttributes from "./attributes";

import {
    WRAPPER_BG,
    WRAPPER_MARGIN,
    WRAPPER_PADDING,
    WRAPPER_BORDER_SHADOW,
    VIDEO_WIDTH,
    SIZE_UNIT_TYPES,
    VIDEO_BORDER_SHADOW,
    OPTIONS,
    PLAY_ICON_WIDTH,
    LIGHTBOX_WIDTH,
    LIGHTBOX_HEIGHT,
    LIGHTBOX_BORDER_SHADOW,
    CLOSE_ICON_WIDTH,
    STICKY_VIDEO_HEIGHT,
    STICKY_VIDEO_WIDTH,
    PLACEHOLDER_IMAGE_WIDTH,
    PLACEHOLDER_IMAGE_HEIGHT,
    PLACEHOLDER_PLAY_ICON_WIDTH,
    LIGHTBOX_UNIT_TYPES,
    STICKY_POSITION,
    ALIGNMENT,
    ICON_TYPE,
    stickyVisibility,
    STICKY_VISIBILITY,
} from "./constants";

const {
    faIcons: iconList,
    ResponsiveDimensionsControl,
    BorderShadowControl,
    ImageAvatar,
    ResponsiveRangeController,
    BackgroundControl,
    ColorControl,
    AdvancedControls,
    ResponsiveSelectController,
    EBIconPicker
} = window.EBControls;

function Inspector(props) {
    const { attributes, setAttributes } = props;
    const {
        resOption,
        showBar,
        videoConfig,
        videoOptions,
        imageOverlay,
        videoURL,
        previewImage,
        previewImageId,
        customPlayIcon,
        lightboxPlayIcon,
        customPlayIconId,
        customPlayIconURL,
        lightboxBGColor,
        closeIconColor,
        closeIconBgColor,
        placeholderImage,
        placeholderImageId,
        placeholderPlayIconURL,
        placeholderPlayIconId,
        stickyPosition,
        videoAlignment,
        customPlayIconlib,
        placeholderCustomPlayIconType,
        customPlayIconlibColor,
        lightboxPlayIconType,
        lightboxPlayIconlib,
        lightboxPlayIconlibColor,
        showDownload,
    } = attributes;

    useEffect(() => {
        if (videoOptions === "lightbox") {
            setAttributes({
                imageOverlay: false,
            });
        }
    }, [videoOptions]);

    const resRequiredProps = {
        setAttributes,
        resOption,
        attributes,
        objAttributes,
    };

    const [selfhostVideo, setSelfhostVideo] = useState(false);

    useEffect(() => {
        if (videoURL) {
            const extension = videoURL.split(".").pop();
            const fileFormats = ["mp4", "webm", "ogg"];

            if (fileFormats.indexOf(extension) === -1) {
                setSelfhostVideo(false);
            } else {
                setSelfhostVideo(true);
            }
        }
    }, [videoURL]);

    return (
        <InspectorControls key="controls">
            <div className="eb-panel-control">
                <TabPanel
                    className="eb-parent-tab-panel"
                    activeClass="active-tab"
                    // onSelect={onSelect}
                    tabs={[
                        {
                            name: "general",
                            title: "General",
                            className: "eb-tab general",
                        },
                        {
                            name: "styles",
                            title: "Style",
                            className: "eb-tab styles",
                        },
                        {
                            name: "advance",
                            title: "Advanced",
                            className: "eb-tab advance",
                        },
                    ]}
                >
                    {(tab) => (
                        <div className={"eb-tab-controls" + tab.name}>
                            {tab.name === "general" && (
                                <>
                                    <PanelBody title={__("General", "essential-blocks")} initialOpen={true}>
                                        <TextControl
                                            label={__("URL", "essential-blocks")}
                                            value={videoURL}
                                            onChange={(videoURL) => setAttributes({ videoURL })}
                                        />
                                        <Divider />
                                        <PanelRow> {__("Video Options", "essential-blocks")} </PanelRow>

                                        {videoOptions != "lightbox" && (
                                            <>
                                                <ToggleControl
                                                    label={__("Autoplay", "essential-blocks")}
                                                    checked={videoConfig.autoplay}
                                                    onChange={(autoplay) =>
                                                        setAttributes({
                                                            videoConfig: {
                                                                ...videoConfig,
                                                                autoplay: autoplay,
                                                            },
                                                        })
                                                    }
                                                />
                                                {videoConfig.autoplay && (
                                                    <PanelRow>
                                                        <em>Audio will be muted by default if autoplay is enabled.</em>
                                                    </PanelRow>
                                                )}

                                                <ToggleControl
                                                    label={__("Mute", "essential-blocks")}
                                                    checked={videoConfig.muted}
                                                    onChange={(muted) =>
                                                        setAttributes({
                                                            videoConfig: {
                                                                ...videoConfig,
                                                                muted: muted,
                                                            },
                                                        })
                                                    }
                                                />
                                            </>
                                        )}

                                        <ToggleControl
                                            label={__("Loop", "essential-blocks")}
                                            checked={videoConfig.loop}
                                            onChange={(loop) =>
                                                setAttributes({
                                                    videoConfig: {
                                                        ...videoConfig,
                                                        loop: loop,
                                                    },
                                                })
                                            }
                                        />
                                        <ToggleControl
                                            label={__("Show Controls", "essential-blocks")}
                                            checked={showBar}
                                            onChange={(showBar) => setAttributes({ showBar })}
                                        />

                                        {showBar && selfhostVideo && (
                                            <ToggleControl
                                                label={__("Show Download", "essential-blocks")}
                                                checked={showDownload}
                                                onChange={(showDownload) => setAttributes({ showDownload })}
                                            />
                                        )}

                                        {videoOptions != "lightbox" && (
                                            <>
                                                <Divider />

                                                <ToggleControl
                                                    label={__("Image Overlay", "essential-blocks")}
                                                    checked={imageOverlay}
                                                    onChange={(imageOverlay) =>
                                                        setAttributes({
                                                            imageOverlay,
                                                        })
                                                    }
                                                />

                                                {imageOverlay && (
                                                    <>
                                                        {!previewImage && (
                                                            <MediaUpload
                                                                onSelect={({ id, url }) =>
                                                                    setAttributes({
                                                                        previewImage: url,
                                                                        previewImageId: id,
                                                                    })
                                                                }
                                                                type="image"
                                                                value={previewImageId}
                                                                render={({ open }) => {
                                                                    return (
                                                                        <Button
                                                                            className="eb-background-control-inspector-panel-img-btn components-button"
                                                                            label={__(
                                                                                "Upload Image",
                                                                                "essential-blocks"
                                                                            )}
                                                                            icon="format-image"
                                                                            onClick={open}
                                                                        />
                                                                    );
                                                                }}
                                                            />
                                                        )}
                                                        {previewImage && (
                                                            <ImageAvatar
                                                                imageUrl={previewImage}
                                                                onDeleteImage={() =>
                                                                    setAttributes({
                                                                        previewImage: null,
                                                                    })
                                                                }
                                                            />
                                                        )}

                                                        <ToggleControl
                                                            label={__("Custom Play Icon", "essential-blocks")}
                                                            checked={customPlayIcon}
                                                            onChange={(customPlayIcon) =>
                                                                setAttributes({
                                                                    customPlayIcon,
                                                                })
                                                            }
                                                        />

                                                        {customPlayIcon && (
                                                            <>
                                                                <BaseControl
                                                                    label={__("Icon Type", "essential-blocks")}
                                                                >
                                                                    <ButtonGroup>
                                                                        {ICON_TYPE.map((item) => (
                                                                            <Button
                                                                                // isLarge
                                                                                isPrimary={
                                                                                    placeholderCustomPlayIconType ===
                                                                                    item.value
                                                                                }
                                                                                isSecondary={
                                                                                    placeholderCustomPlayIconType !==
                                                                                    item.value
                                                                                }
                                                                                onClick={() =>
                                                                                    setAttributes({
                                                                                        placeholderCustomPlayIconType:
                                                                                            item.value,
                                                                                    })
                                                                                }
                                                                            >
                                                                                {item.label}
                                                                            </Button>
                                                                        ))}
                                                                    </ButtonGroup>
                                                                </BaseControl>

                                                                {placeholderCustomPlayIconType === "icon" && (
                                                                    <BaseControl>
                                                                        <EBIconPicker
                                                                            value={customPlayIconlib}
                                                                            onChange={(icon) =>
                                                                                setAttributes({
                                                                                    customPlayIconlib: icon,
                                                                                })
                                                                            }
                                                                        />
                                                                    </BaseControl>
                                                                )}
                                                                {placeholderCustomPlayIconType === "image" && (
                                                                    <>
                                                                        {!customPlayIconURL && (
                                                                            <MediaUpload
                                                                                onSelect={({ id, url }) =>
                                                                                    setAttributes({
                                                                                        customPlayIconURL: url,
                                                                                        customPlayIconId: id,
                                                                                    })
                                                                                }
                                                                                type="image"
                                                                                value={customPlayIconId}
                                                                                render={({ open }) => {
                                                                                    return (
                                                                                        <Button
                                                                                            className="eb-background-control-inspector-panel-img-btn components-button"
                                                                                            label={__(
                                                                                                "Upload Image",
                                                                                                "essential-blocks"
                                                                                            )}
                                                                                            icon="format-image"
                                                                                            onClick={open}
                                                                                        />
                                                                                    );
                                                                                }}
                                                                            />
                                                                        )}

                                                                        {customPlayIconURL && (
                                                                            <ImageAvatar
                                                                                imageUrl={customPlayIconURL}
                                                                                onDeleteImage={() =>
                                                                                    setAttributes({
                                                                                        customPlayIconURL: null,
                                                                                    })
                                                                                }
                                                                            />
                                                                        )}
                                                                    </>
                                                                )}
                                                            </>
                                                        )}
                                                    </>
                                                )}
                                            </>
                                        )}

                                        <Divider />

                                        <SelectControl
                                            label={__("Additional Option", "essential-blocks")}
                                            value={videoOptions}
                                            options={OPTIONS}
                                            onChange={(videoOptions) => setAttributes({ videoOptions })}
                                        />

                                        {videoOptions == "eb-sticky" && (
                                            <>
                                                <BaseControl label={__("Sticky Position", "essential-blocks")}>
                                                    <ButtonGroup>
                                                        {STICKY_POSITION.map((item) => (
                                                            <Button
                                                                // isLarge
                                                                isPrimary={stickyPosition === item.value}
                                                                isSecondary={stickyPosition !== item.value}
                                                                onClick={() =>
                                                                    setAttributes({
                                                                        stickyPosition: item.value,
                                                                    })
                                                                }
                                                            >
                                                                {item.label}
                                                            </Button>
                                                        ))}
                                                    </ButtonGroup>
                                                </BaseControl>
                                                <ResponsiveSelectController
                                                    baseLabel={"Visibility"}
                                                    controlName={stickyVisibility}
                                                    resRequiredProps={resRequiredProps}
                                                    options={STICKY_VISIBILITY}
                                                    resOption={resOption}
                                                />
                                            </>
                                        )}

                                        {videoOptions == "lightbox" && (
                                            <>
                                                <PanelRow>Placeholder Image</PanelRow>
                                                {!placeholderImage && (
                                                    <MediaUpload
                                                        onSelect={({ id, url }) =>
                                                            setAttributes({
                                                                placeholderImage: url,
                                                                placeholderImageId: id,
                                                            })
                                                        }
                                                        type="image"
                                                        value={placeholderImageId}
                                                        render={({ open }) => {
                                                            return (
                                                                <Button
                                                                    className="eb-background-control-inspector-panel-img-btn components-button"
                                                                    label={__("Upload Image", "essential-blocks")}
                                                                    icon="format-image"
                                                                    onClick={open}
                                                                />
                                                            );
                                                        }}
                                                    />
                                                )}

                                                {placeholderImage && (
                                                    <ImageAvatar
                                                        imageUrl={placeholderImage}
                                                        onDeleteImage={() =>
                                                            setAttributes({
                                                                placeholderImage: null,
                                                            })
                                                        }
                                                    />
                                                )}

                                                <PanelRow>Play Icon</PanelRow>
                                                <ToggleControl
                                                    label={__("Show Play Icon", "essential-blocks")}
                                                    checked={lightboxPlayIcon}
                                                    onChange={(lightboxPlayIcon) =>
                                                        setAttributes({
                                                            lightboxPlayIcon,
                                                        })
                                                    }
                                                />

                                                {lightboxPlayIcon && (
                                                    <>
                                                        <BaseControl label={__("Icon Type", "essential-blocks")}>
                                                            <ButtonGroup>
                                                                {ICON_TYPE.map((item) => (
                                                                    <Button
                                                                        // isLarge
                                                                        isPrimary={lightboxPlayIconType === item.value}
                                                                        isSecondary={
                                                                            lightboxPlayIconType !== item.value
                                                                        }
                                                                        onClick={() =>
                                                                            setAttributes({
                                                                                lightboxPlayIconType: item.value,
                                                                            })
                                                                        }
                                                                    >
                                                                        {item.label}
                                                                    </Button>
                                                                ))}
                                                            </ButtonGroup>
                                                        </BaseControl>

                                                        {lightboxPlayIconType === "icon" && (
                                                            <BaseControl>
                                                                <EBIconPicker
                                                                    value={lightboxPlayIconlib}
                                                                    onChange={(icon) =>
                                                                        setAttributes({
                                                                            lightboxPlayIconlib: icon,
                                                                        })
                                                                    }
                                                                />
                                                            </BaseControl>
                                                        )}

                                                        {lightboxPlayIconType === "image" && (
                                                            <>
                                                                {!placeholderPlayIconURL && (
                                                                    <MediaUpload
                                                                        onSelect={({ id, url }) =>
                                                                            setAttributes({
                                                                                placeholderPlayIconURL: url,
                                                                                placeholderPlayIconId: id,
                                                                            })
                                                                        }
                                                                        type="image"
                                                                        value={placeholderPlayIconId}
                                                                        render={({ open }) => {
                                                                            return (
                                                                                <Button
                                                                                    className="eb-background-control-inspector-panel-img-btn components-button"
                                                                                    label={__(
                                                                                        "Upload Image",
                                                                                        "essential-blocks"
                                                                                    )}
                                                                                    icon="format-image"
                                                                                    onClick={open}
                                                                                />
                                                                            );
                                                                        }}
                                                                    />
                                                                )}

                                                                {placeholderPlayIconURL && (
                                                                    <ImageAvatar
                                                                        imageUrl={placeholderPlayIconURL}
                                                                        onDeleteImage={() =>
                                                                            setAttributes({
                                                                                placeholderPlayIconURL: null,
                                                                            })
                                                                        }
                                                                    />
                                                                )}
                                                            </>
                                                        )}
                                                    </>
                                                )}
                                            </>
                                        )}
                                    </PanelBody>
                                </>
                            )}

                            {tab.name === "styles" && (
                                <>
                                    <PanelBody title={__("Video Styles", "essential-blocks")}>
                                        {videoOptions != "lightbox" && (
                                            <>
                                                <ResponsiveRangeController
                                                    baseLabel={__("Width", "essential-blocks")}
                                                    controlName={VIDEO_WIDTH}
                                                    resRequiredProps={resRequiredProps}
                                                    min={1}
                                                    max={1000}
                                                    step={1}
                                                    units={SIZE_UNIT_TYPES}
                                                />
                                                <BaseControl label={__("Alignment", "essential-blocks")}>
                                                    <ButtonGroup>
                                                        {ALIGNMENT.map((item) => (
                                                            <Button
                                                                // isLarge
                                                                isPrimary={videoAlignment === item.value}
                                                                isSecondary={videoAlignment !== item.value}
                                                                onClick={() =>
                                                                    setAttributes({
                                                                        videoAlignment: item.value,
                                                                    })
                                                                }
                                                            >
                                                                {item.label}
                                                            </Button>
                                                        ))}
                                                    </ButtonGroup>
                                                </BaseControl>
                                            </>
                                        )}

                                        {videoOptions == "lightbox" && (
                                            <>
                                                {lightboxPlayIcon && (
                                                    <>
                                                        <PanelRow>Play Icon</PanelRow>
                                                        {lightboxPlayIconType == "icon" && (
                                                            <>
                                                                <ColorControl
                                                                    label={__("Icon Color", "essential-blocks")}
                                                                    color={lightboxPlayIconlibColor}
                                                                    onChange={(lightboxPlayIconlibColor) =>
                                                                        setAttributes({
                                                                            lightboxPlayIconlibColor,
                                                                        })
                                                                    }
                                                                />
                                                            </>
                                                        )}
                                                        <ResponsiveRangeController
                                                            baseLabel={__("Size", "essential-blocks")}
                                                            controlName={PLACEHOLDER_PLAY_ICON_WIDTH}
                                                            resRequiredProps={resRequiredProps}
                                                            min={1}
                                                            max={400}
                                                            step={1}
                                                            units={SIZE_UNIT_TYPES}
                                                        />
                                                    </>
                                                )}

                                                <PanelRow>Placeholder Image</PanelRow>
                                                <ResponsiveRangeController
                                                    baseLabel={__("Width", "essential-blocks")}
                                                    controlName={PLACEHOLDER_IMAGE_WIDTH}
                                                    resRequiredProps={resRequiredProps}
                                                    min={1}
                                                    max={1000}
                                                    step={1}
                                                    units={SIZE_UNIT_TYPES}
                                                />
                                                <ResponsiveRangeController
                                                    baseLabel={__("Height", "essential-blocks")}
                                                    controlName={PLACEHOLDER_IMAGE_HEIGHT}
                                                    resRequiredProps={resRequiredProps}
                                                    min={1}
                                                    max={1000}
                                                    step={1}
                                                    units={SIZE_UNIT_TYPES}
                                                />

                                                <Divider />
                                            </>
                                        )}

                                        <BaseControl>
                                            <h3 className="eb-control-title">{__("Border", "essential-blocks")}</h3>
                                        </BaseControl>
                                        <BorderShadowControl
                                            controlName={VIDEO_BORDER_SHADOW}
                                            resRequiredProps={resRequiredProps}
                                        // noShadow
                                        // noBorder
                                        />
                                    </PanelBody>

                                    {imageOverlay && customPlayIcon && (
                                        <PanelBody title={__("Image Overlay", "essential-blocks")} initialOpen={false}>
                                            <ResponsiveRangeController
                                                baseLabel={__("Play Icon Size", "essential-blocks")}
                                                controlName={PLAY_ICON_WIDTH}
                                                resRequiredProps={resRequiredProps}
                                                min={1}
                                                max={400}
                                                step={1}
                                                units={SIZE_UNIT_TYPES}
                                            />

                                            {placeholderCustomPlayIconType == "icon" && (
                                                <>
                                                    <ColorControl
                                                        label={__("Icon Color", "essential-blocks")}
                                                        color={customPlayIconlibColor}
                                                        onChange={(customPlayIconlibColor) =>
                                                            setAttributes({
                                                                customPlayIconlibColor,
                                                            })
                                                        }
                                                    />
                                                </>
                                            )}
                                        </PanelBody>
                                    )}
                                    {videoOptions == "lightbox" && (
                                        <PanelBody title={__("Lightbox", "essential-blocks")}>
                                            <PanelRow>Lightbox</PanelRow>
                                            <ColorControl
                                                label={__("Overlay Color", "essential-blocks")}
                                                color={lightboxBGColor}
                                                onChange={(backgroundColor) =>
                                                    setAttributes({
                                                        lightboxBGColor: backgroundColor,
                                                    })
                                                }
                                            />

                                            <ResponsiveRangeController
                                                baseLabel={__("Content Width", "essential-blocks")}
                                                controlName={LIGHTBOX_WIDTH}
                                                resRequiredProps={resRequiredProps}
                                                min={1}
                                                max={1000}
                                                step={1}
                                                units={SIZE_UNIT_TYPES}
                                            />
                                            <ResponsiveRangeController
                                                baseLabel={__("Content Height", "essential-blocks")}
                                                controlName={LIGHTBOX_HEIGHT}
                                                resRequiredProps={resRequiredProps}
                                                min={1}
                                                max={1000}
                                                step={1}
                                                units={LIGHTBOX_UNIT_TYPES}
                                            />
                                            <BorderShadowControl
                                                controlName={LIGHTBOX_BORDER_SHADOW}
                                                resRequiredProps={resRequiredProps}
                                                noShadow
                                                noBdrHover
                                            // noBorder
                                            />

                                            <PanelRow>Close Icon</PanelRow>
                                            <ColorControl
                                                label={__("Background Color", "essential-blocks")}
                                                color={closeIconBgColor}
                                                onChange={(newColor) =>
                                                    setAttributes({
                                                        closeIconBgColor: newColor,
                                                    })
                                                }
                                            />
                                            <ColorControl
                                                label={__("Color", "essential-blocks")}
                                                color={closeIconColor}
                                                onChange={(newColor) =>
                                                    setAttributes({
                                                        closeIconColor: newColor,
                                                    })
                                                }
                                            />

                                            <ResponsiveRangeController
                                                baseLabel={__("Size (PX)", "essential-blocks")}
                                                controlName={CLOSE_ICON_WIDTH}
                                                resRequiredProps={resRequiredProps}
                                                min={1}
                                                max={100}
                                                step={1}
                                                noUnits
                                            />
                                        </PanelBody>
                                    )}
                                    {videoOptions == "eb-sticky" && (
                                        <PanelBody title={__("Sticky", "essential-blocks")} initialOpen={false}>
                                            <ResponsiveRangeController
                                                baseLabel={__("Width", "essential-blocks")}
                                                controlName={STICKY_VIDEO_WIDTH}
                                                resRequiredProps={resRequiredProps}
                                                min={1}
                                                max={1000}
                                                step={1}
                                                units={SIZE_UNIT_TYPES}
                                            />
                                            <ResponsiveRangeController
                                                baseLabel={__("Height", "essential-blocks")}
                                                controlName={STICKY_VIDEO_HEIGHT}
                                                resRequiredProps={resRequiredProps}
                                                min={1}
                                                max={1000}
                                                step={1}
                                                units={SIZE_UNIT_TYPES}
                                            />

                                            <PanelRow>Close Icon</PanelRow>
                                            <ColorControl
                                                label={__("Color", "essential-blocks")}
                                                color={closeIconColor}
                                                onChange={(newColor) =>
                                                    setAttributes({
                                                        closeIconColor: newColor,
                                                    })
                                                }
                                            />
                                            <ResponsiveRangeController
                                                baseLabel={__("Size", "essential-blocks")}
                                                controlName={CLOSE_ICON_WIDTH}
                                                resRequiredProps={resRequiredProps}
                                                min={1}
                                                max={1000}
                                                step={1}
                                                units={SIZE_UNIT_TYPES}
                                            />
                                        </PanelBody>
                                    )}
                                </>
                            )}

                            {tab.name === "advance" && (
                                <>
                                    <PanelBody>
                                        <ResponsiveDimensionsControl
                                            resRequiredProps={resRequiredProps}
                                            controlName={WRAPPER_MARGIN}
                                            baseLabel="Margin"
                                        />
                                        <ResponsiveDimensionsControl
                                            resRequiredProps={resRequiredProps}
                                            controlName={WRAPPER_PADDING}
                                            baseLabel="Padding"
                                        />
                                    </PanelBody>
                                    <PanelBody title={__("Background", "essential-blocks")} initialOpen={false}>
                                        <BackgroundControl
                                            controlName={WRAPPER_BG}
                                            resRequiredProps={resRequiredProps}
                                            noOverlay
                                        />
                                    </PanelBody>
                                    <PanelBody title={__("Border & Shadow")} initialOpen={false}>
                                        <BorderShadowControl
                                            controlName={WRAPPER_BORDER_SHADOW}
                                            resRequiredProps={resRequiredProps}
                                        // noShadow
                                        // noBorder
                                        />
                                    </PanelBody>

                                    <AdvancedControls attributes={attributes} setAttributes={setAttributes} />
                                </>
                            )}
                        </div>
                    )}
                </TabPanel>
            </div>
        </InspectorControls>
    );
}

export default Inspector;