HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/globfdxw/www/wp-content/plugins/give/src/DonationForms/resources/app/form/Section.tsx
import {withTemplateWrapper} from '@givewp/forms/app/templates';
import SectionNode from '@givewp/forms/app/fields/SectionNode';
import useVisibilityCondition from '@givewp/forms/app/hooks/useVisibilityCondition';
import {Field, isField, Section as SectionType} from '@givewp/forms/types';
import DonationFormErrorBoundary from '@givewp/forms/app/errors/boundaries/DonationFormErrorBoundary';
import {useEffect} from '@wordpress/element';

const formTemplates = window.givewp.form.templates;
const FormSectionTemplate = withTemplateWrapper(formTemplates.layouts.section, 'section');

export default function Section({section}: {section: SectionType}) {
    const showNode = useVisibilityCondition(section.visibilityConditions);
    const {unregister} = window.givewp.form.hooks.useFormContext();

    useEffect(() => {
        if (showNode) {
            return;
        }

        section.walkNodes((field: Field) => {
            unregister(field.name);
        }, isField);
    }, [showNode]);

    if (!showNode) {
        return null;
    }

    return (
        <FormSectionTemplate section={section}>
            {section.nodes.map((node) => (
                <DonationFormErrorBoundary key={node.name}>
                    <SectionNode node={node} />
                </DonationFormErrorBoundary>
            ))}
        </FormSectionTemplate>
    );
}