<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
<?php

namespace Elementor\Modules\Promotions\Widgets;

use Elementor\Plugin;
use Elementor\Utils;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Atomic_Form_Widget_Promotion {

	public function register(): void {
		add_filter( 'elementor/editor/localize_settings', [ $this, 'add_promotion_data' ] );
	}

	private function is_active(): bool {
		return Plugin::$instance->experiments->is_feature_active( 'e_atomic_elements' );
	}

	public function add_promotion_data( array $settings ): array {
		if ( ! current_user_can( 'manage_options' ) || ! $this->is_active() ) {
			return $settings;
		}

		$settings['atomicFormPromotionWidgets'] = $this->get_widgets();
		$settings['atomicFormPromotion'] = $this->get_promotion_content();

		return $settings;
	}

	private function get_widgets(): array {
		return [
			[
				'name' => 'e-form',
				'title' => __( 'Form', 'elementor' ),
				'icon' => 'eicon-atomic-form',
				'categories' => '["atomic-form"]',
			],
			[
				'name' => 'e-form-input',
				'title' => __( 'Input', 'elementor' ),
				'icon' => 'eicon-atomic-input',
				'categories' => '["atomic-form"]',
			],
			[
				'name' => 'e-form-label',
				'title' => __( 'Label', 'elementor' ),
				'icon' => 'eicon-atomic-label',
				'categories' => '["atomic-form"]',
			],
			[
				'name' => 'e-form-textarea',
				'title' => __( 'Text area', 'elementor' ),
				'icon' => 'eicon-atomic-text-area',
				'categories' => '["atomic-form"]',
			],
			[
				'name' => 'e-form-submit-button',
				'title' => __( 'Submit button', 'elementor' ),
				'icon' => 'eicon-atomic-submit-button',
				'categories' => '["atomic-form"]',
			],
			[
				'name' => 'e-form-checkbox',
				'title' => __( 'Checkbox', 'elementor' ),
				'icon' => 'eicon-atomic-checkbox',
				'categories' => '["atomic-form"]',
			],
		];
	}

	private function get_promotion_content(): array {
		return [
			'title' => __( 'Atomic form', 'elementor' ),
			'content' => __( 'Design fully customized forms to capture leads without compromising on style.', 'elementor' ),
			'ctaText' => __( 'Upgrade now', 'elementor' ),
			'widgetCtaUrl' => 'https://go.elementor.com/go-pro-atomic-form-modal/',
			'sectionCtaUrl' => 'https://go.elementor.com/go-pro-atomic-form-section/',
		];
	}
}
