b0y-101 Mini Shell


Current Path : E:/www2/kidsbangna/wp-content/plugins/tlp-team/app/Widgets/Elementor/Render/
File Upload :
Current File : E:/www2/kidsbangna/wp-content/plugins/tlp-team/app/Widgets/Elementor/Render/IsotopeView.php

<?php
/**
 * Elementor Isotope View Widget Class.
 *
 * @package RT_Team
 */

namespace RT\Team\Widgets\Elementor\Render;

use WP_Query;
use RT\Team\Helpers\Fns;
use RT\Team\Helpers\Options;
use RT\Team\Helpers\QueryArgs;

// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'This script cannot be accessed directly.' );
}

/**
 * Elementor Isotope View Widget Class.
 */
class IsotopeView {
	use \RT\Team\Traits\SingletonTrait;

	/**
	 * Layout check
	 *
	 * @var integer
	 */
	private $check = 0;

	/**
	 * Class init.
	 *
	 * @return void
	 */
	protected function init() {}

	/**
	 * Render frontend.
	 *
	 * @param string $prefix Field prefix.
	 * @param array  $scMeta Elementor settings.
	 * @return mixed
	 */
	public function render( $prefix, $scMeta ) {
		$rand          = absint( wp_rand() );
		$layoutID      = 'rt-team-container-' . $rand;
		$html          = null;
		$containerAttr = null;
		$masonryG      = null;
		$args          = [];
		$scID          = 'elementor';

		$metas = RenderHelpers::metaBuilder( $prefix, $scMeta );
		$arg   = RenderHelpers::argBuilder( $metas );
		$args  = ( new QueryArgs() )->buildArgs( $metas, false );

		$layout     = $metas['layout'];
		$gridType   = $metas['gridType'];
		$grayscale  = $metas['grayscale'];
		$animation  = $metas['animation'];
		$pagination = $metas['pagination'];
		$hasModal   = 'popup' === $metas['linkType'] ? true : false;

		if ( ! in_array( $layout, array_keys( Options::scLayout() ), true ) ) {
			$layout = 'isotope-free';
		}

		$isIsotope  = preg_match( '/isotope/', $layout );
		$isCarousel = 'popup' === $metas['linkType'] ? true : false;

		$dCol = 0 === $metas['dCols'] ? RenderHelpers::defaultColumns( $layout ) : $metas['dCols'];
		$tCol = 0 === $metas['tCols'] ? 2 : $metas['tCols'];
		$mCol = 0 === $metas['mCols'] ? 1 : $metas['mCols'];

		$containerAttr .= ' data-layout="' . esc_attr( $layout ) . '" data-desktop-col="' . absint( $dCol ) . '" data-tab-col="' . absint( $tCol ) . '" data-mobile-col="' . absint( $mCol ) . '"';

		if ( 'even' === $gridType ) {
			$masonryG = ' ttp-even';
		} elseif ( 'masonry' === $gridType ) {
			$masonryG = ' ttp-masonry';
		}

		$preLoader     = ' ttp-pre-loader';
		$preLoaderHtml = '<div class="rt-loading-overlay"></div><div class="rt-loading rt-ball-clip-rotate"><div></div></div>';

		$containerClass  = 'rt-team-container-' . $scID;
		$containerClass .= $grayscale ? ' rt-grayscale' : null;
		$containerClass .= ! empty( $animation ) ? ' rt-hover-' . esc_attr( $animation ) : null;

		$containerAttr .= ' data-sc-id="' . $scID . '"';

		$html .= '<div class="rt-team-container rt-elementor-container rt-pos-r ' . $containerClass . '" id="' . $layoutID . '" ' . $containerAttr . RenderHelpers::elPaginationData( $prefix, $scMeta ) . '>';

		$teamQuery = new WP_Query( $args );

		if ( $teamQuery->have_posts() ) {
			$html .= '<div data-title="' . esc_html__(
				'Loading ...',
				'tlp-team'
			) . '" class="rt-row rt-content-loader element-loading ' . $layout . $masonryG . $preLoader . '">';

			if ( 'yes' === $scMeta[ $prefix . 'enable_isotope_button' ] ) {
				$html .= RenderHelpers::renderIsotopeFilters( $metas, $rand );
			}

			$html .= '<div class="tlp-team-isotope" id="iso-team-' . $rand . '">';

			while ( $teamQuery->have_posts() ) {
				$teamQuery->the_post();

				$mID = get_the_ID();
				$arg = RenderHelpers::loopArgBuilder( $arg, $metas, $mID );

				$html .= Fns::render( 'layouts/' . $layout, $arg, true );
			}

			$html .= '</div>';
			$html .= $preLoaderHtml;
			$html .= '</div>';

			if ( rttlp_team()->has_pro() && $pagination ) {
				$html .= RenderHelpers::renderPagination(
					$teamQuery,
					$metas,
					$scMeta[ $prefix . 'posts_limit' ],
					$scMeta[ $prefix . 'pagination_per_page' ],
				);
			}

			wp_reset_postdata();
		} else {
			$html .= '<p>' . esc_html__( 'No team members found', 'tlp-team' ) . '</p>';
		}

		$html .= '</div>';

		$isIsotope                        = ' ttp-masonry' === $masonryG ? true : $isIsotope;
		$scriptGenerator                  = [];
		$scriptGenerator['layout']        = $layoutID;
		$scriptGenerator['rand']          = $rand;
		$scriptGenerator['isIsotope']     = $isIsotope;
		$scriptGenerator['isCarousel']    = $isCarousel;
		$scriptGenerator['hasPagination'] = $pagination;
		$scriptGenerator['hasModal']      = $hasModal;

		add_action(
			'wp_footer',
			static function () use ( $scriptGenerator ) {
				RenderHelpers::registerScripts( $scriptGenerator );
			}
		);

		return $html;
	}
}

Copyright © 2019 by b0y-101