From 46d681c6b825d21b3f698d793c4e630c687d90ad Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Thu, 21 May 2026 21:41:53 +0000
Subject: [PATCH] =Major CustomBlocks.php overhaul, expanding block support and customization from the editor. theme.json should now be updated on new themes to set brand colours, etc. Also note: major change to .col vs .row alignment: simplifying it to .top .bottom vs the confusion of the differences for .col/.row .start and .a-start

---
 inc/helpers/renderFields.php |  255 +++++++++++++++++++++++++++-----------------------
 1 files changed, 136 insertions(+), 119 deletions(-)

diff --git a/inc/helpers/renderFields.php b/inc/helpers/renderFields.php
index 3802bda..150af0e 100644
--- a/inc/helpers/renderFields.php
+++ b/inc/helpers/renderFields.php
@@ -4,9 +4,10 @@
 	exit;
 }
 
-use JVBase\managers\CacheManager;
-use JVBase\meta\MetaForm;
-use JVBase\meta\MetaManager;
+use JVBase\forms\TaxonomySelector;
+use JVBase\managers\Cache;
+use JVBase\meta\Form;
+use JVBase\meta\Meta;
 
 /**
  * Outputs a toggle text that visually changes based on selection, like a switch
@@ -58,23 +59,31 @@
 
 /**
  * @param int $ID
- * @param MetaManager|null $meta
- *
+ * @param string $type
  * @return string
  */
-function jvbRenderLinks(int $ID, MetaManager|null $meta = null):string
+function jvbRenderLinks(int $ID, string $type =''):string
 {
-    $cache = CacheManager::for('user_links', WEEK_IN_SECONDS)->connectTo('post')->connectTo('taxonomy');
+    $cache = Cache::for('user_links', WEEK_IN_SECONDS)->connect('post')->connect('taxonomy')->connect('user');
     $cached = $cache->get($ID);
     if ($cached) {
         return $cached;
     }
 
-    if (!$meta) {
-        $meta = jvbGetMeta($ID);
-    }
+	$meta = match($type){
+		'post'	=> Meta::forPost($ID),
+		'term'	=> Meta::forTerm($ID),
+		'user'	=> Meta::forUser($ID),
+		default	=> false
+	};
+	if (!$meta) {
+		$meta = jvbGetMeta($ID);
+	}
+	if (!$meta) {
+		return '';
+	}
 
-    $links = $meta->getValue('links');
+    $links = $meta->get('links');
 
     $out = '';
     if (!empty($links)) {
@@ -134,29 +143,38 @@
 
 /**
  * @param int $ID
- * @param MetaManager|null $meta
+ * @param string $type
  *
  * @return string
  */
-function jvbRenderContactInfo(int $ID, MetaManager|null $meta = null):string
+function jvbRenderContactInfo(int $ID, string $type = ''):string
 {
-    $cache = CacheManager::for('contact', WEEK_IN_SECONDS)->connectTo('post')->connectTo('taxonomy');
+    $cache = Cache::for('contact', WEEK_IN_SECONDS)->connect('post')->connect('taxonomy');
 
     $cached = $cache->get($ID);
     if($cached){
         return $cached;
     }
-    if (!$meta) {
-        $meta = jvbGetMeta($ID);
-    }
+	$meta = match($type){
+		'post'	=> Meta::forPost($ID),
+		'term'	=> Meta::forTerm($ID),
+		'user'	=> Meta::forUser($ID),
+		default	=> false
+	};
+	if (!$meta) {
+		$meta = jvbGetMeta($ID);
+	}
+	if (!$meta) {
+		return '';
+	}
 
-    $preference = $meta->getValue('public_contact');
+    $preference = $meta->get('public_contact');
     $preference = (is_array($preference)) ? $preference : explode(',', $preference);
 
     $out = '';
     if (!empty($preference)) {
         $out = '<ul class="contact">';
-        $phone = $meta->getValue('phone');
+        $phone = $meta->get('phone');
         foreach ($preference as $p) {
             $link = $label = false;
             switch ($p) {
@@ -169,7 +187,7 @@
                     $label = jvbIcon('phone').'<span>Call</span>';
                     break;
                 case 'email':
-                    $link = 'mailto:'.$meta->getValue('email').'?subject='.rawurlencode('Contact from edmonton.ink').'&body='.rawurlencode('Hey,
+                    $link = 'mailto:'.$meta->get('email').'?subject='.rawurlencode('Contact from edmonton.ink').'&body='.rawurlencode('Hey,
         I found you on edmonton.ink, and I wanted to reach out!');
                     $label = jvbIcon('envelope').'<span>Email</span>';
                     break;
@@ -189,22 +207,31 @@
 
 /**
  * @param int $ID
- * @param MetaManager|null $meta
+ * @param string $type
  * @return string
  */
-function jvbRenderSpecialtyField(int $ID,  MetaManager|null $meta = null):string
+function jvbRenderSpecialtyField(int $ID,  string $type = ''):string
 {
-    if (!$meta) {
-        $meta = jvbGetMeta($ID);
-    }
+	$meta = match($type){
+		'post'	=> Meta::forPost($ID),
+		'term'	=> Meta::forTerm($ID),
+		'user'	=> Meta::forUser($ID),
+		default	=> false
+	};
+	if (!$meta) {
+		$meta = jvbGetMeta($ID);
+	}
+	if (!$meta) {
+		return '';
+	}
 
     $out = '';
-    $specialties = $meta->getValue('specialties');
+    $specialties = $meta->get('specialties');
     if (!empty($specialties)) {
         foreach ($specialties as $specialty) {
             $out .= '<li><b>'.$specialty['specialty'].'</b>';
             if ($specialty['description'] !== '') {
-                $out .= apply_filters('the_content', $specialty['description']);
+                $out .= jvb_filter_content( $specialty['description']);
             }
             $out .= '</li>';
         }
@@ -219,17 +246,26 @@
 
 /**
  * @param int $ID
- * @param MetaManager|null $meta
+ * @param string $type = ''
  * @return string
  */
-function jvbRenderAwardsField(int $ID, MetaManager|null $meta = null):string
+function jvbRenderAwardsField(int $ID, string $type = ''):string
 {
-    if (!$meta) {
-        $meta = jvbGetMeta($ID);
-    }
+	$meta = match($type){
+		'post'	=> Meta::forPost($ID),
+		'term'	=> Meta::forTerm($ID),
+		'user'	=> Meta::forUser($ID),
+		default	=> false
+	};
+	if (!$meta) {
+		$meta = jvbGetMeta($ID);
+	}
+	if (!$meta) {
+		return '';
+	}
 
     $out = '';
-    $awards = $meta->getValue('awards');
+    $awards = $meta->get('awards');
     if (!empty($awards)) {
         foreach ($awards as $award) {
             $out .= '<li><b>'.$award['name'].'</b>';
@@ -247,23 +283,32 @@
 
 /**
  * @param int $ID
- * @param MetaManager|null $meta
+ * @param string $type
  * @return string
  */
-function jvbRenderReviewsField(int $ID, MetaManager|null $meta = null):string
+function jvbRenderReviewsField(int $ID, string $type = ''):string
 {
-    if (!$meta) {
-        $meta = jvbGetMeta($ID);
-    }
+	$meta = match($type){
+		'post'	=> Meta::forPost($ID),
+		'term'	=> Meta::forTerm($ID),
+		'user'	=> Meta::forUser($ID),
+		default	=> false
+	};
+	if (!$meta) {
+		$meta = jvbGetMeta($ID);
+	}
+	if (!$meta) {
+		return '';
+	}
 
     $out = '';
-    $reviews = $meta->getValue('reviews');
+    $reviews = $meta->get('reviews');
     if (!empty($reviews)) {
         foreach ($reviews as $review) {
             if ($review['review'] === '') {
                 continue;
             }
-            $out .= '<li><blockquote>'.apply_filters('the_content', $review['review']);
+            $out .= '<li><blockquote>'.jvb_filter_content( $review['review']);
             if ($review['name'] !== '' || $review['rating'] !== 'none') {
                 $date = $aOpen = $aClose = '';
                 if ($review['url']) {
@@ -274,7 +319,7 @@
                     $date = new Date('M j, Y', strtotime($review['date']));
                 }
 
-                $out .= '<cite class="row btw">';
+                $out .= '<cite class="row x-btw">';
                 if ($review['rating'] !== 'none') {
                     $out .= jvbFormatStarRating($review['rating']);
                 }
@@ -297,36 +342,53 @@
     return $out;
 }
 
-function jvbGetMeta(int $ID) {
-    if (is_tax()) {
-        $type = 'term';
-    } elseif (is_singular()) {
-        $type = 'post';
+function jvbGetMeta(int $ID):Meta|false {
+    if (term_exists($ID)) {
+        return Meta::forTerm($ID);
+    } elseif (get_post_status($ID)) {
+        return Meta::forPost($ID);
+    } elseif (get_userdata($ID)) {
+        return Meta::forUser($ID);
     } else {
-        $type = 'user';
-    }
-    return new JVBase\meta\MetaManager($ID, $type);
+		return false;
+	}
 }
 
-
-function jvbRenderTermList(array|bool|WP_Error $terms, string $label = '') {
+function jvbRenderTermList(array|bool|WP_Error $terms, string $label = ''):string {
     if (!$terms || is_wp_error($terms) || empty($terms)) {
         return '';
     }
     $out = ($label === '') ? '' : '<h2 class="inline">'.$label.'</h2>';
     $out .= '<ul class="term-list '.jvbNoBase($terms[array_key_first($terms)]->taxonomy).'">';
     foreach ($terms as $term) {
-        $out .= '<li>
-            <a href="'.get_term_link($term->term_id, $term->taxonomy).'" title="'.$term->name.'">'.
-                $term->name.
-            '</a>
-        </li>';
+        $out .= '<li>'.jvbGetTermLink($term).'</li>';
     }
     $out .= '</ul>';
 
     return $out;
 }
 
+function jvbGetTermLink(int|WP_Term $term, string $taxonomy = ''):string
+{
+	if (is_int($term)){
+		$term = get_term($term, jvbCheckBase($taxonomy));
+		if (is_wp_error($term)) {
+			return '';
+		}
+	}
+	$cache = Cache::for($term->taxonomy.'_link')->connect('taxonomy');
+	$key = $term->term_id;
+	return $cache->remember(
+		$key,
+		function() use ($term) {
+			return '<a href="'.get_term_link($term->term_id, $term->taxonomy).'" title="'.html_entity_decode($term->name).'">'.
+				html_entity_decode($term->name).
+			'</a>';
+		}
+	);
+}
+
+
 add_action('wp_footer', 'jvbOutputImageTemplates');
 
 function jvbOutputImageTemplates() {
@@ -344,7 +406,7 @@
 				</div>
 				<div class="summary">
 					<div class="result">
-						<h4></h4>
+						<h3></h3>
 						<p></p>
 					</div>
 				</div>
@@ -360,22 +422,22 @@
 			</div>
 		</template>
 		<template class="uploadMeta">
-			<?= jvbImageMeta() ?>
+			<?= Form::renderImagePreview() ?>
 		</template>
 		<template class="imageGroup">
 			<div class="upload-group">
 				<div class="group-header">
 					<div class="selected">
-						<div class="field">
-							<input type="checkbox" id="select-all-group" name="select-all-group">
-							<label for="select-all-group">
+						<div class="field checkbox">
+							<input type="checkbox" id="select-all" name="select-all" data-selects="item-grid" data-select-all>
+							<label for="select-all">
 								Select All In Group
 							</label>
 						</div>
 						<div class="info" hidden>
 						</div>
 					</div>
-					<div class="group-actions">
+					<div class="selection-actions">
 						<button type="button" data-action="add-to-group" title="Add selected uploads to this group">
 							<?= jvbIcon('plus-square') ?>
 							Add Here
@@ -387,21 +449,21 @@
 					</div>
 				</div>
 				<details>
-					<summary class="row btw">
+					<summary class="row x-btw">
 						Extra Fields
 					</summary>
 					<div class="fields"></div>
 				</details>
 				<div class="group-content col">
+					<p class="hint count"></p>
 					<div class="item-grid group"></div>
-					<p class="hint group-count"></p>
 				</div>
 			</div>
 
 		</template>
 		<template class="groupActions">
 			<div class="item-actions">
-				<div class="radio-button">
+				<div class="btn">
 					<input type="radio" class="featured btn" name="featured" id="featured">
 					<label for="featured">
 						<?=jvbIcon('star')?>
@@ -450,22 +512,19 @@
 			</div>
 		</template>
 		<template class="uploadItem">
-			<?php
-			$form = new MetaForm();
-			$form->renderImagePreview();
-			?>
+			<?= Form::renderImagePreview() ?>
 		</template>
 		<template class="restoreNotification">
 			<dialog class="restore-uploads">
 				<div class="wrap">
 					<div class="restore-message">
 						<h4>Looks like we left things hanging</h4>
-						<p class="restore-details"></p>
+						<p class="details"></p>
 						<p class="hint">If you'd rather start over, you can clear this information.</p>
 					</div>
-					<div class="restore-actions">
+					<div class="selection-actions">
 						<div class="selected">
-							<div class="field">
+							<div class="field checkbox">
 								<input type="checkbox" id="select-all-restore" name="select-all-restore">
 								<label for="select-all-restore">
 									Select All
@@ -493,10 +552,10 @@
 			</dialog>
 		</template>
 		<template class="restoreField">
-			<div class="restore-field">
-				<h3></h3>
+			<details class="restore-field">
+				<summary><h3><a></a></h3></summary>
 				<div class="item-grid restore"></div>
-			</div>
+			</details>
 		</template>
 
 		<template class="startOverConfirmation">
@@ -530,59 +589,17 @@
 		<?php
 	}
 	if (wp_script_is('jvb-selector')) {
-		\JVBase\forms\TaxonomySelector::class::outputSelectorModal();
+		TaxonomySelector::class::outputSelectorModal();
 	}
 }
 
-function jvbImageMeta(int|null $ID = null, string $title = '', string $alt = '', string $caption = '', array $fields = []):string
-{
-	$form = new MetaForm();
-	$dataID = ($ID) ? ['image-id' => $ID] : false;
-	$addID = ($ID) ? '-'.$ID : '';
-
-
-	$defaultFields = [
-		'image-title'.$addID => [
-			'type'	=> 'text',
-			'label'	=> 'Image Title',
-			'value'	=> $title,
-			'data'	=> $dataID
-		],
-		'image-alt-text'.$addID => [
-			'type'	=> 'text',
-			'label'	=> 'Alt Text',
-			'value'	=> $alt,
-			'hint'	=> 'Alt text helps the visually impaired, as well as some benefits for SEO.',
-			'data'	=> $dataID
-		],
-		'image-caption'.$addID => [
-			'type'	=> 'textarea',
-			'value'	=> $caption,
-			'label'	=> 'Image Caption',
-			'data'	=> $dataID
-		]
-	];
-	$fields = array_merge($defaultFields, $fields);
-
-	$config = [
-		'type'	=> 'group',
-		'wrap'	=> 'details',
-		'label'	=> 'Image Info',
-		'hint'	=> 'These will be automatically generated if left blank.',
-		'fields'	=> $fields
-	];
-
-	return $form->render('image_data',null, $config,false, true);
-}
-
-
 
 function jvbLocationLinks(array $location): string {
 	if (empty($location['address'])) {
 		return '';
 	}
 
-	$cache = CacheManager::for('locations')->connectTo('taxonomy');
+	$cache = Cache::for('locations')->connect('taxonomy');
 	$key = $cache->generateKey($location);
 
 	$cached = false;

--
Gitblit v1.10.0