<?php // phpcs:ignore WordPress.Files.FileName

/**
 * CSS overrides for block plugins.
 *
 * @since   4.0.0
 * @package Redux Framework
 */

namespace ReduxTemplates;

defined( 'ABSPATH' ) || exit;

/**
 * Redux Templates Templates Class
 *
 * @since 4.0.0
 */
class Template_Overrides {

	/**
	 * ReduxTemplates Template_Overrides.
	 *
	 * @since 4.0.0
	 */
	public function __construct() {
	}

	/**
	 * Detects if the current page has blocks or not.
	 *
	 * @return bool
	 * @since 4.0.0
	 */
	public static function is_gutenberg(): bool {
		global $post;
		if ( function_exists( 'has_blocks' ) && has_blocks( $post->ID ) ) {
			return true;
		}

		return false;
	}

	/**
	 * Detects the current theme and provides overrides.
	 *
	 * @return string
	 * @since 4.0.0
	 */
	public static function get_overrides(): string {

		if ( ! self::is_gutenberg() ) {
			return '';
		}

		$template = mb_strtolower( get_template() );

		$css = '';
		if ( method_exists( __CLASS__, $template ) ) {
			$css = call_user_func( array( __CLASS__, $template ) );
			$css = preg_replace( '/\s+/S', ' ', $css );
		}

		$css .= <<<'EOD'
			#main {
				padding: unset !important;
			}
			#content {
				padding: unset !important;
			}
			#wrapper {
				min-height: unset !important;
			}
			.alignfull, .alignwide {
				margin: unset !important;
				max-width: unset !important;
				width: unset !important;
			}
}
EOD;
		// Remove comments.
		$css = preg_replace( '!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css );
		// Remove space after colons.
		$css = str_replace( ': ', ':', $css );
		// Remove space after commas.
		$css = str_replace( ', ', ',', $css );
		// Remove space after opening bracket.
		$css = str_replace( ' {', '{', $css );
		// Remove whitespace.
		return str_replace( array( "\r\n", "\r", "\n", "\t", '  ', '    ', '    ' ), '', $css );
	}

	/**
	 * Consulting theme overrides.
	 *
	 * @return string
	 * @since 4.0.0
	 */
	public static function consulting(): string {
		return <<<'EOD'
			#content-core {
				max-width: 100%;
			}
EOD;
	}

	/**
	 * Avada theme overrides.
	 *
	 * @return string
	 * @since 4.0.0
	 */
	public static function avada(): string {
		return <<<'EOD'
			#main .fusion-row {
				max-width: unset;
			}
EOD;
	}

	/**
	 * GeneratePress theme overrides.
	 *
	 * @return string
	 * @since 4.1.24
	 */
	public static function generatepress(): string {
		return <<<'EOD'
			.site-content {
                            display: block!important;
                        }
EOD;
	}

	/**
	 * TwentyTwenty theme overrides.
	 *
	 * @return string
	 * @since 4.0.0
	 */
	public static function twentytwenty(): string {
		return <<<'EOD'
			[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
				max-width: unset !important;
			}
			.wp-block-archives:not(.alignwide):not(.alignfull), .wp-block-categories:not(.alignwide):not(.alignfull), .wp-block-code, .wp-block-columns:not(.alignwide):not(.alignfull), .wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .wp-block-group:not(.has-background):not(.alignwide):not(.alignfull), .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter), .wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright), .wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright), .wp-block-media-text:not(.alignwide):not(.alignfull), .wp-block-preformatted, .wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .wp-block-quote, .wp-block-quote.is-large, .wp-block-quote.is-style-large, .wp-block-verse, .wp-block-video:not(.alignwide):not(.alignfull) {
				margin-top: unset;
				margin-bottom: unset;
			}
EOD;
	}

}