Jake Vanderwerf
2025-12-21 3aada9949d51024a92a8b5c6cb70d12f9c3cac16
inc/blocks/VideoCoverBlock.php
@@ -1,6 +1,7 @@
<?php
namespace JVBase\blocks;
use JVBase\blocks\CustomBlocks;
if (!defined('ABSPATH')) {
   exit;
}
@@ -41,6 +42,7 @@
    */
   public function render($attributes, $content): string
   {
      // Extract attributes with defaults
      $poster_id = $attributes['posterId'] ?? 0;
      $video_sources = $attributes['videoSources'] ?? [];
@@ -81,7 +83,7 @@
            "uploadDate": "'.$date.'"
        }
    </script>
    <div class="wrap">
    <div class="wrap abs edges">
        <div class="video-container">';
      $html .= '<video';
      $html .= ' muted loop playsinline autoplay';
@@ -90,13 +92,13 @@
         $html .= ' poster="' . esc_url($poster_url) . '"';
      }
      $html .= '>';
      $html .= ' fetch-priority="high">';
      // Add mobile sources first (lower resolution)
      foreach ($mobile_sources as $source) {
         if (!empty($source['url']) && !empty($source['mime'])) {
            $html .= '<source';
            $html .= ' src="' . esc_url($source['url']) . '"';
            $html .= ' data-src="' . esc_url($source['url']) . '"';
            $html .= ' type="' . esc_attr($source['mime']) . '"';
            $html .= ' media="(max-width: 767px)"';
            $html .= '>';
@@ -107,7 +109,7 @@
      foreach ($video_sources as $source) {
         if (!empty($source['url']) && !empty($source['mime'])) {
            $html .= '<source';
            $html .= ' src="' . esc_url($source['url']) . '"';
            $html .= ' data-src="' . esc_url($source['url']) . '"';
            $html .= ' type="' . esc_attr($source['mime']) . '"';
            // Add media query for desktop if mobile sources exist
@@ -120,8 +122,27 @@
      }
      $html .= '</video>';
      $html .= '</div></div><div class="inner-wrap"></div></section>';
      $inner_content = $this->extractInnerContent($content);
      $html .= '</div></div><div class="inner-wrap">'.$inner_content.'</div></section>';
      return $html;
   }
   /**
    * Extract inner content from the saved block content
    * Removes the wrapper div and returns just the inner blocks HTML
    */
   protected function extractInnerContent(string $content): string
   {
      if (empty($content)) {
         return '';
      }
      // Remove the placeholder wrapper div
      $content = preg_replace('/<div[^>]*class="[^"]*video-cover-wrapper-placeholder[^"]*"[^>]*>/', '', $content, 1);
      $content = preg_replace('/<\/div>\s*$/', '', $content, 1);
      return trim($content);
   }
}