HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/www/wp-content/plugins/essential-blocks/src/blocks/advanced-heading/src/edit.js
/**
 * WordPress dependencies
 */
import { __ } from "@wordpress/i18n";
import { useEffect, memo } from "@wordpress/element";
import { BlockControls, AlignmentToolbar } from "@wordpress/block-editor";
import { useEntityProp } from "@wordpress/core-data";

/**
 * Internal depencencies
 */
import Inspector from "./inspector";

/**
 * External depencencies
 */
import {
    DynamicInputValueHandler,
    EBDisplayIcon,
    BlockProps,
    withBlockContext,
} from "@essential-blocks/controls";

import Style from "./style";
import defaultAttributes from "./attributes";

function Edit(props) {
    const { attributes, setAttributes, isSelected, context } = props;
    const {
        blockId,
        preset,
        effects,
        align,
        tagName,
        titleText,
        title2Text,
        title3Text,
        subtitleTagName,
        subtitleText,
        displaySubtitle,
        displaySeperator,
        seperatorPosition,
        seperatorType,
        separatorIcon,
        classHook,
        source,
        currentPostId,
        currentPostType,
        version,
    } = attributes;

    // you must declare this variable
    const enhancedProps = {
        ...props,
        blockPrefix: "eb-advance-heading",
        style: <Style {...props} />,
    };

    useEffect(() => {
        if (source == undefined) {
            setAttributes({ source: "custom" });
        }
        setAttributes({ version: "2" });
    }, []);

    // Get post data from Loop Builder context
    const loopPostId = context?.["essential-blocks/postId"];
    const loopPostType = context?.["essential-blocks/postType"];

    // Check if block is inside Loop Builder context
    // We need to check multiple conditions because context might be available at different times
    const isInLoopBuilder = Boolean(
        context &&
            context.hasOwnProperty("essential-blocks/postId") &&
            context.hasOwnProperty("essential-blocks/postType"),
    );

    // Use loop context values when in Loop Builder, otherwise use current values
    const effectivePostType = isInLoopBuilder
        ? loopPostType || currentPostType
        : currentPostType;
    const effectivePostId = isInLoopBuilder
        ? loopPostId || currentPostId
        : currentPostId;

    const [rawTitle = "", setTitle] = useEntityProp(
        "postType",
        effectivePostType,
        "title",
        effectivePostId,
    );

    // Handle regular WordPress context (when not in Loop Builder)
    useEffect(() => {
        if (
            !isInLoopBuilder &&
            context?.postId &&
            !currentPostId &&
            !currentPostType
        ) {
            setAttributes({
                currentPostId: context.postId,
                currentPostType: context.postType,
            });
        }
    }, [
        source,
        isInLoopBuilder,
        context?.postId,
        context?.postType,
        currentPostId,
        currentPostType,
    ]);

    // Effect to handle Loop Builder context initialization
    useEffect(() => {
        if (isInLoopBuilder) {
            // Set source to dynamic-title and update context values
            setAttributes({
                source: "dynamic-title",
                currentPostId: loopPostId || 0,
                currentPostType: loopPostType || "post",
            });
        }
    }, [isInLoopBuilder, loopPostId, loopPostType]);

    const editorType = eb_conditional_localize?.editor_type || false;
    let TagName = tagName;

    return (
        <>
            {isSelected && (
                <>
                    <BlockControls>
                        <AlignmentToolbar
                            value={align}
                            onChange={(align) => setAttributes({ align })}
                            controls={["left", "center", "right"]}
                        />
                    </BlockControls>
                    <Inspector
                        attributes={attributes}
                        setAttributes={setAttributes}
                        context={context}
                    />
                </>
            )}

            <BlockProps.Edit {...enhancedProps}>
                <div
                    className={`eb-parent-wrapper eb-parent-${blockId} ${classHook}`}
                >
                    {source === "dynamic-title" && currentPostId === 0 && (
                        <>
                            {editorType === "edit-site" && (
                                <TagName className="eb-ah-title">
                                    Dynamic Title
                                </TagName>
                            )}
                            {editorType !== "edit-site" && (
                                <div className="eb-loading">
                                    <img
                                        src={`${EssentialBlocksLocalize?.image_url}/ajax-loader.gif`}
                                        alt="Loading..."
                                    />
                                </div>
                            )}
                        </>
                    )}

                    {((source === "dynamic-title" && currentPostId !== 0) ||
                        source === "custom") && (
                        <>
                            <div
                                className={`eb-advance-heading-wrapper ${blockId} ${preset} ${effects}`}
                                data-id={blockId}
                            >
                                {displaySeperator &&
                                    seperatorPosition === "top" && (
                                        <div
                                            className={
                                                "eb-ah-separator " +
                                                seperatorType
                                            }
                                        >
                                            {seperatorType === "icon" && (
                                                <EBDisplayIcon
                                                    icon={separatorIcon}
                                                />
                                            )}
                                        </div>
                                    )}

                                {source === "dynamic-title" && (
                                    <>
                                        {currentPostId > 0 && (
                                            <TagName className={`eb-ah-title`}>
                                                <DynamicInputValueHandler
                                                    value={rawTitle}
                                                    tagName={"span"}
                                                    className="first-title"
                                                    allowedFormats={[
                                                        "core/bold",
                                                        "core/italic",
                                                        "core/link",
                                                        "core/strikethrough",
                                                        "core/underline",
                                                        "core/text-color",
                                                    ]}
                                                    onChange={
                                                        isInLoopBuilder
                                                            ? () => {}
                                                            : setTitle
                                                    }
                                                    readOnly={isInLoopBuilder}
                                                />
                                            </TagName>
                                        )}

                                        {/* for FSE */}
                                        {typeof currentPostId == "string" && (
                                            <TagName>
                                                {rawTitle
                                                    ? rawTitle
                                                    : __("Title")}
                                            </TagName>
                                        )}
                                    </>
                                )}

                                {source === "custom" && (
                                    <TagName className={`eb-ah-title`}>
                                        <DynamicInputValueHandler
                                            value={titleText}
                                            tagName={"span"}
                                            className="first-title"
                                            allowedFormats={[
                                                "core/bold",
                                                "core/italic",
                                                "core/link",
                                                "core/strikethrough",
                                                "core/underline",
                                                "core/text-color",
                                            ]}
                                            onChange={(newTitleText) => {
                                                setAttributes({
                                                    titleText: newTitleText,
                                                });
                                            }}
                                            readOnly={true}
                                        />
                                        {title2Text && (
                                            <>
                                                <DynamicInputValueHandler
                                                    value={title2Text}
                                                    tagName={"span"}
                                                    className="second-title"
                                                    allowedFormats={[
                                                        "core/bold",
                                                        "core/italic",
                                                        "core/link",
                                                        "core/strikethrough",
                                                        "core/underline",
                                                        "core/text-color",
                                                    ]}
                                                    onChange={(title2Text) =>
                                                        setAttributes({
                                                            title2Text,
                                                        })
                                                    }
                                                    readOnly={true}
                                                />
                                            </>
                                        )}
                                        {title2Text && (
                                            <>
                                                <DynamicInputValueHandler
                                                    value={title3Text}
                                                    tagName={"span"}
                                                    className="third-title"
                                                    allowedFormats={[
                                                        "core/bold",
                                                        "core/italic",
                                                        "core/link",
                                                        "core/strikethrough",
                                                        "core/underline",
                                                        "core/text-color",
                                                    ]}
                                                    onChange={(title3Text) =>
                                                        setAttributes({
                                                            title3Text,
                                                        })
                                                    }
                                                    readOnly={true}
                                                />
                                            </>
                                        )}
                                    </TagName>
                                )}

                                {source === "custom" && displaySubtitle && (
                                    <DynamicInputValueHandler
                                        tagName={subtitleTagName}
                                        className="eb-ah-subtitle"
                                        value={subtitleText}
                                        allowedFormats={[
                                            "core/bold",
                                            "core/italic",
                                            "core/link",
                                            "core/strikethrough",
                                            "core/underline",
                                            "core/text-color",
                                        ]}
                                        onChange={(subtitleText) =>
                                            setAttributes({ subtitleText })
                                        }
                                        readOnly={true}
                                    />
                                )}
                                {displaySeperator &&
                                    seperatorPosition === "bottom" && (
                                        <div
                                            className={
                                                "eb-ah-separator " +
                                                seperatorType
                                            }
                                        >
                                            {seperatorType === "icon" && (
                                                // <i
                                                //     className={`${separatorIcon
                                                //         ? separatorIcon
                                                //         : "fas fa-arrow-circle-down"
                                                //         }`}
                                                // ></i>
                                                <EBDisplayIcon
                                                    icon={separatorIcon}
                                                />
                                            )}
                                        </div>
                                    )}
                            </div>
                        </>
                    )}
                </div>
            </BlockProps.Edit>
        </>
    );
}
export default memo(withBlockContext(defaultAttributes)(Edit));