104 lines
2.6 KiB
PHP
104 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace Elementor\Modules\AtomicWidgets\PropsResolver;
|
|
|
|
use Elementor\Modules\AtomicWidgets\DynamicTags\Dynamic_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Base\Array_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Base\Object_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Contracts\Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Union_Prop_Type;
|
|
use Elementor\Plugin;
|
|
use Exception;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
class Render_Props_Resolver extends Props_Resolver {
|
|
/**
|
|
* Each transformer can return a value that is also a transformable value,
|
|
* which means that it can be transformed again by another transformer.
|
|
* This constant defines the maximum depth of transformations to avoid infinite loops.
|
|
*/
|
|
const TRANSFORM_DEPTH_LIMIT = 3;
|
|
|
|
const CONTEXT_SETTINGS = 'settings';
|
|
const CONTEXT_STYLES = 'styles';
|
|
|
|
public static function for_styles(): self {
|
|
return static::instance( self::CONTEXT_STYLES );
|
|
}
|
|
|
|
public static function for_settings(): self {
|
|
return static::instance( self::CONTEXT_SETTINGS );
|
|
}
|
|
|
|
public function resolve( array $schema, array $props ): array {
|
|
$resolved = [];
|
|
|
|
foreach ( $schema as $key => $prop_type ) {
|
|
if ( ! ( $prop_type instanceof Prop_Type ) ) {
|
|
continue;
|
|
}
|
|
|
|
$prop_value = $props[ $key ] ?? null;
|
|
$actual_value = $this->get_validated_value( $prop_type, $prop_value );
|
|
|
|
$transformed = $this->resolve_item(
|
|
$actual_value,
|
|
$key,
|
|
$prop_type
|
|
);
|
|
|
|
if ( Multi_Props::is( $transformed ) ) {
|
|
$resolved = array_merge( $resolved, Multi_Props::get_value( $transformed ) );
|
|
|
|
continue;
|
|
}
|
|
|
|
$resolved[ $key ] = $transformed;
|
|
}
|
|
|
|
return $resolved;
|
|
}
|
|
|
|
protected function resolve_item( $value, $key, Prop_Type $prop_type, int $depth = 0 ) {
|
|
if ( null === $value ) {
|
|
return null;
|
|
}
|
|
|
|
if ( ! $this->is_transformable( $value ) ) {
|
|
return $value;
|
|
}
|
|
|
|
if ( $depth >= self::TRANSFORM_DEPTH_LIMIT ) {
|
|
return null;
|
|
}
|
|
|
|
if ( isset( $value['disabled'] ) && true === $value['disabled'] ) {
|
|
return null;
|
|
}
|
|
|
|
$transformed = $this->transform( $value, $key, $prop_type );
|
|
|
|
return $this->resolve_item( $transformed, $key, $prop_type, $depth + 1 );
|
|
}
|
|
|
|
private function get_validated_value( Prop_Type $prop_type, $prop_value ) {
|
|
$default = $prop_type->get_default() ?? null;
|
|
|
|
if ( null === $prop_value ) {
|
|
return $default;
|
|
}
|
|
|
|
if ( ! Dynamic_Prop_Type::is_dynamic_prop_value( $prop_value ) ) {
|
|
return $prop_value;
|
|
}
|
|
|
|
$tag_name = $prop_value['value']['name'] ?? null;
|
|
$tag = Plugin::$instance->dynamic_tags->get_tag_info( $tag_name );
|
|
|
|
return ! $tag ? $default : $prop_value;
|
|
}
|
|
}
|