From 2a2303d1dccc120dd7aa5f6b6ade0f89e0064850 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 25 Nov 2025 07:42:23 +0000
Subject: [PATCH] =Feed block mostly good! Referrals look good to go. Ready for Madi and Heidi to approve

---
 inc/blocks/CustomBlocks.php |  353 +++++++++++++++++++++++-----------------------------------
 1 files changed, 139 insertions(+), 214 deletions(-)

diff --git a/inc/blocks/CustomBlocks.php b/inc/blocks/CustomBlocks.php
index 966276f..726e78c 100644
--- a/inc/blocks/CustomBlocks.php
+++ b/inc/blocks/CustomBlocks.php
@@ -14,13 +14,9 @@
 class CustomBlocks
 {
     protected CacheManager $cache;
-    protected CacheManager $imgCache;
     public function __construct()
     {
         $this->cache = CacheManager::for('blocks', WEEK_IN_SECONDS);
-		$this->imgCache = CacheManager::for('images', WEEK_IN_SECONDS);
-
-
 		add_filter('render_block', [$this, 'render'], 999, 3);
 
 
@@ -75,16 +71,16 @@
 		$function = BASE.$method;
 
 		if (function_exists($function)) {
+			return $function($block, $content);
 //			return $this->cache->remember(
 //				$block,
 //				function () use ($function, $block, $content) {
 //					return $function($block, $content);
 //				}
 //			);
-			return $function($block, $content);
 		} else if (method_exists($this, $method)) {
 			return $this->$method($block, $content);
-			//TODO: Recache it
+
 //			return $this->cache->remember(
 //				$block,
 //				function () use ($method, $block, $content) {
@@ -100,9 +96,9 @@
 				'core/site-title',
 				'jvb/forms'
 			];
-			if (!in_array($block['blockName'], $ignore)) {
+//			if (!in_array($block['blockName'], $ignore)) {
 //				jvbDump('No method found for '.print_r($block['blockName'], true));
-			}
+//			}
 		}
         if ($block['blockName'] === 'jvb/feed') {
             // Enqueue the feed block script (it will automatically load dependencies)
@@ -241,7 +237,7 @@
 		if (array_key_exists('useFeaturedImage', $attrs)) {
 			global $post;
 			$ID = get_post_thumbnail_id($post->ID);
-		} else {
+		} else if (array_key_exists('id', $attrs)) {
 			$ID = (int)$attrs['id'];
 		}
 
@@ -607,7 +603,9 @@
             'main';
 
         if ($content == '') {
-            return do_blocks(get_the_content(get_the_ID()));
+			global $post;
+			$block['innerBlocks'] = parse_blocks($post->post_content);
+			return $this->innerBlocks($block);
         } else {
             return $this->inside($block, $tag, $content);
         }
@@ -623,9 +621,15 @@
     {
 		global $post;
 		$ID = get_post_thumbnail_id($post->ID);
-        return '<figure'.$this->getClassesAndStyles($block['attrs']).'>'.
-               $this->image($ID).
-               '</figure>';
+		$aOpen = $aClose = '';
+		if(!is_single($ID)) {
+			$aOpen = '<a href="'.get_the_permalink($post->ID).'">';
+			$aClose = '</a>';
+		}
+
+        return $aOpen.'<figure'.$this->getClassesAndStyles($block['attrs']).'>'.
+               apply_filters('jvbCoreFeaturedImage', $this->image($ID), $post->post_type).
+               '</figure>'.$aClose;
     }
     //core_post_navigation_link
     //core_post_template
@@ -677,97 +681,103 @@
 
 	protected function render_core_query(array $block, string $content):string
 	{
-//		jvbDump($block);
-//		$queryID = $block['attrs']['queryId'];
-//		$args = [];
-//		$inherit = $block['attrs']['inherit']??false;
-//		if ($inherit) {
-//			global $wp_query;
-//			$loop = $wp_query;
-//		} else {
-//			foreach ($block['attrs']['query'] as $key => $value) {
-//				if (empty($value)) {
-//					continue;
-//				}
-//				switch ($key) {
-//					case 'postType':
-//						$args['post_type'] = $value;
-//						break;
-//					case 'perPage':
-//						$args['posts_per_page'] = $value;
-//						break;
-//					case 'orderBy':
-//						$args['orderby'] = $value;
-//						break;
-//					case 'taxQuery':
-//						$taxQuery = [];
-//						foreach ($value as $tax => $terms) {
-//							$taxQuery[] = [
-//								'taxonomy' 	=> $tax,
-//								'terms'		=> $terms
-//							];
-//						}
-//						if (!empty($taxQuery)) {
-//							$args['tax_query'] = $taxQuery;
-//							if (count($taxQuery) > 1) {
-//								$args['tax_query']['relation'] = 'OR';
-//							}
-//						}
-//						break;
-//					case 'sticky':
-//						if ($value === 'ignore') {
-//							$args['ignore_sticky_posts'] = true;
-//						} else if ($value === 'exclude'){
-//							$args['post__not_in'] = get_option('sticky_posts');
-//						} else if ($value === 'only') {
-//							$args['include'] = get_option('sticky_posts');
-//						}
-//						break;
-//					case 'search':
-//						$args['s'] = $value;
-//						break;
-//					default:
-//						$args[$key] = $value;
-//						break;
-//
-//				}
-//			}
-//			//Add in any args from the query string
-//			$search = 'query-'.$queryID;
-//			foreach ($_GET as $key => $value) {
-//				if (str_contains($key, $search)) {
-//					$key = str_replace($search, '', $key);
-//					if ($key === 'page') {
-//						$args['paged'] = (int)$value;
-//					}
-//				}
-//			}
-//			$loop = new WP_Query($args);
-//		}
 
-//		$inner = $this->innerBlocks($block);
-//		foreach ($block['innerBlocks'] as $innerBlock) {
-//			switch ($innerBlock['blockName']) {
-//				case 'core/post-template':
-//					$inner .= '<ul class="item-grid">';
-//					if ($loop->have_posts()) {
-//						while($loop->have_posts()) {
-//							$loop->the_post();
-//							$inner .= $this->doBlocks
-//						}
-//					}
-//					$inner .= '</ul>';
-//					break;
-//			}
-//		}
+		$queryID = $block['attrs']['queryId'];
+		$args = [];
+		$inherit = $block['attrs']['inherit']??false;
+		if ($inherit) {
+			global $wp_query;
+			$loop = $wp_query;
+		} else {
+			foreach ($block['attrs']['query'] as $key => $value) {
+				if (empty($value)) {
+					continue;
+				}
+				switch ($key) {
+					case 'postType':
+						if ($value === BASE.'progress'){
+							$args['post_parent'] = 0;
+						}
+						$args['post_type'] = $value;
+						break;
+					case 'perPage':
+						$args['posts_per_page'] = $value;
+						break;
+					case 'orderBy':
+						$args['orderby'] = $value;
+						break;
+					case 'taxQuery':
+						$taxQuery = [];
+						foreach ($value as $tax => $terms) {
+							$taxQuery[] = [
+								'taxonomy' 	=> $tax,
+								'terms'		=> $terms
+							];
+						}
+						if (!empty($taxQuery)) {
+							$args['tax_query'] = $taxQuery;
+							if (count($taxQuery) > 1) {
+								$args['tax_query']['relation'] = 'OR';
+							}
+						}
+						break;
+					case 'sticky':
+						if ($value === 'ignore') {
+							$args['ignore_sticky_posts'] = true;
+						} else if ($value === 'exclude'){
+							$args['post__not_in'] = get_option('sticky_posts');
+						} else if ($value === 'only') {
+							$args['include'] = get_option('sticky_posts');
+						}
+						break;
+					case 'search':
+						$args['s'] = $value;
+						break;
+					default:
+						$args[$key] = $value;
+						break;
+
+				}
+			}
+			//Add in any args from the query string
+			$search = 'query-'.$queryID;
+			foreach ($_GET as $key => $value) {
+				if (str_contains($key, $search)) {
+					$key = str_replace($search, '', $key);
+					if ($key === 'page') {
+						$args['paged'] = (int)$value;
+					}
+				}
+			}
+			$loop = new WP_Query($args);
+		}
+
+		$inner = '';
+
+		foreach ($block['innerBlocks'] as $innerBlock) {
+			switch ($innerBlock['blockName']) {
+				case 'core/post-template':
+					$inner .= '<section class="item-grid">';
+					if ($loop->have_posts()) {
+						while($loop->have_posts()) {
+							$loop->the_post();
+							$postType = get_post_type();
+							$inner .= '<div class="item '.jvbNoBase($postType).'">'.$this->innerBlocks($innerBlock).'</div>';
+						}
+					}
+					$inner .= '</section>';
+					break;
+
+			}
+		}
 
 
 
 		$tagName = (array_key_exists('tagName', $block['attrs'])) ? $block['attrs']['tagName'] : 'div';
-		$out =  '<'.$tagName.' class="loop">'.$this->innerBlocks($block).'</'.$tagName.'>';
-//		if ($inherit) {
-//			wp_reset_postdata();
-//		}
+		$out =  '<'.$tagName.' class="loop">'.$inner.'</'.$tagName.'>';
+		if ($inherit) {
+			wp_reset_postdata();
+		}
 		return $out;
 	}
 
@@ -781,7 +791,6 @@
     protected function render_core_template_part(array $block, string $content):string
     {
 
-		$check = ['header', 'footer'];
 		$isHeaderTemplate = (
 			(array_key_exists('slug', $block['attrs']) && str_contains(strtolower($block['attrs']['slug']), 'header')) ||
 			(array_key_exists('tagName', $block['attrs']) && str_contains(strtolower($block['attrs']['tagName']), 'header'))
@@ -792,7 +801,8 @@
 		) ? 'footer' : false;
 
 
-        if ($isHeaderTemplate || $isFooterTemplate) {
+        if (($isHeaderTemplate || $isFooterTemplate)) {
+
 			$tag = $isHeaderTemplate ?: $isFooterTemplate ?: 'div';
 
             $breadcrumbs = $themeSwitch = $afterHeader = $beforeHeader = $footerText= '';
@@ -821,12 +831,21 @@
 					$beforeHeader = '<section class="pre-footer">'.$beforeHeader.'</section>';
 				}
 					$footerText = jvbRandomFooterText();
-            }
+			}
+//			jvbDump($beforeHeader,'beforeHeader');
+//			jvbDump('<'.$tag.$this->getClassesAndStyles($block['attrs']).'>','tag');
+//			jvbDump($themeSwitch,'themeSwitch');
+//			jvbDump($this->inside($block, $tag, $content),'inside');
+//			jvbDump($footerText,'footerText');
+//			jvbDump($afterHeader, 'afterheader');
+//			jvbDump($breadcrumbs, 'breadcrumbs');
+
             return $beforeHeader.'<'.$tag.$this->getClassesAndStyles($block['attrs']).'>'.
                    $themeSwitch .
-                   $this->inside($block, $tag, $content).
+				   $this->inside($block, $tag, $content) .
                    $footerText.'</'.$tag.'>'.$afterHeader.$breadcrumbs;
         }
+
         return $content;
     }
     //core_term_description
@@ -870,8 +889,6 @@
     protected function localize_feedblock():void
     {
         wp_localize_script('jvb-feed-view-script', 'feedSettings', [
-            'apiUrl' => rest_url('jvb/v1/'),
-            'nonce' => wp_create_nonce('wp_rest'),
             'currentUser' => is_user_logged_in() ? [
                 'id' => get_current_user_id()
             ] : null,
@@ -921,7 +938,9 @@
             $tag = (str_contains($tag, ' class')) ? strtok($tag, ' class') : $tag;
             $tag = trim($tag);
         }
-
+		if (!str_starts_with($o, '<'.$tag)) {
+			return $o;
+		}
 
         $len = strlen('</'.$tag.'>');
 
@@ -988,30 +1007,16 @@
         int $ID = 0,
         string $start = 'tiny',
         string $replace = 'large',
-        string $postSlug = ''
+        ?string $postSlug = null
     ):string {
-        $image = $this->image($ID, $start, $replace);
-        if ($ID === 0) {
-            $ID = $this->imageID($ID);
-        }
-        if ($postSlug==='') {
-            global $post;
-            $postSlug = $post->post_name;
-        }
-        if (!$ID) {
-            return '';
-        }
-		$img = get_post($ID);
-		if (!$img) {
-			return '';
-		}
-        $imgSlug = $img->post_name;
 
-        $img = '<a class="open-gallery" target="_blank" rel="nofollow" data-opens="gallery-'.$postSlug.'" data-focus="'.$postSlug.'-'.$imgSlug.'">'.$image;
+        $image = jvbFormatImage($ID, $start, $replace, true, $postSlug);
+
         if ($close) {
-            $img .= '</a>';
+            return $image;
         }
-        return $img;
+		$len = strlen('</a>');
+        return substr_replace($image, '', -$len, $len);
     }
     public function image(string $ID = '', string $start = 'tiny', string $replace = 'large'):string
     {
@@ -1023,41 +1028,7 @@
         if ($ID === 0 || $ID === false) {
             return '';
         }
-
-        $img = wp_get_attachment_image_src($ID, $start);
-		if (!$img) return '';
-		$img = $img[0];
-
-        $data = $this->gallerySizes($ID, $replace);
-
-        $alt = get_post_meta($ID, '_wp_attachment_image_alt', true);
-        $alt = ($alt=='')? '' : ' alt="'.$alt.'" ';
-
-        return '<img width="100%" height="auto" src="' .
-               $img . '"' .$alt . $data . ' loading="lazy" decoding="async">';
-    }
-    public function gallerySizes(int $ID, string $replace = 'medium'):string
-    {
-        if (!wp_get_attachment_image_src($ID)) {
-            return '';
-        }
-        if ($replace == 'large') {
-            return 'data-small="'.
-                   wp_get_attachment_image_src($ID, 'large')[0].'" data-medium="'.
-                   wp_get_attachment_image_src($ID, 'full')[0].'" data-full="'.
-                   wp_get_attachment_image_src($ID, 'full')[0].'"';
-        } elseif ($replace == 'medium') {
-            return 'data-small="'.
-                   wp_get_attachment_image_src($ID, 'large')[0].'" data-medium="'.
-                   wp_get_attachment_image_src($ID, 'large')[0].'" data-full="'.
-                   wp_get_attachment_image_src($ID, 'large')[0].'"';
-        } elseif ($replace == 'thumbnail') {
-            return 'data-small="'.
-                   wp_get_attachment_image_src($ID, 'medium')[0].'" data-medium="'.
-                   wp_get_attachment_image_src($ID, 'medium')[0].'" data-full="'.
-                   wp_get_attachment_image_src($ID, 'medium')[0].'"';
-        }
-        return '';
+		return jvbFormatImage($ID, $start, $replace, false);
     }
     public function sanitizeBlockName(array $block):string
     {
@@ -1753,61 +1724,15 @@
         return $styles;
     }
 
-    public function getGallerySizes(int $ID, string $replace):string
-    {
-        if (!wp_get_attachment_image_src($ID)) {
-            return '';
-        }
-        if (!has_image_size($replace)) {
-            $replace = 'large';
-        }
-
-        if ($replace == 'large') {
-            return 'data-small="' .
-                   wp_get_attachment_image_src($ID)[0] . '" data-medium="' .
-                   wp_get_attachment_image_src($ID, 'large')[0] . '" data-full="' .
-                   wp_get_attachment_image_src($ID, 'full')[0] . '"';
-        } elseif ($replace == 'medium') {
-            return 'data-small="'.
-                   wp_get_attachment_image_src($ID, 'large')[0].'" data-medium="'.
-                   wp_get_attachment_image_src($ID, 'large')[0].'" data-full="'.
-                   wp_get_attachment_image_src($ID, 'large')[0].'"';
-        } elseif ($replace == 'thumbnail') {
-            return 'data-small="'.
-                   wp_get_attachment_image_src($ID, 'medium')[0].'" data-medium="'.
-                   wp_get_attachment_image_src($ID, 'medium')[0].'" data-full="'.
-                   wp_get_attachment_image_src($ID, 'medium')[0].'"';
-        }
-        return '';
-    }
-
     public function formatImage(int $ID = 0, string $start = 'tiny', string $replace = 'large'):string
     {
-        if ($ID === 0) {
-            $ID = $this->imageID($ID);
-        }
-        if ($ID === 0) {
-            return '';
-        }
-
-		return $this->imgCache->remember(
-			['ID' => $ID, 'start' => $start, 'replace' => $replace],
-			function() use ($ID, $start, $replace) {
-				$img = wp_get_attachment_image_src($ID, $start);
-				if (!$img) {
-					return'';
-				}
-				$img = $img[0];
-
-				$data = $this->getGallerySizes($ID, $replace);
-
-
-
-				$alt = get_post_meta($ID, '_wp_attachment_image_alt', true);
-				$alt = ($alt=='')? '' : ' alt="'.$alt.'" ';
-				return '<img width="300px" height="300px" src="'.$img.'"'.$alt.$data.' loading="lazy" decoding="async">';
-			}
-		);
+		if ($ID === 0) {
+			$ID = $this->imageID($ID);
+		}
+		if ($ID === 0) {
+			return '';
+		}
+		return jvbFormatImage($ID, $start, $replace);
     }
 
 }

--
Gitblit v1.10.0