From 75a097a018a0090f5902758353c578fce4aa2a25 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sat, 23 May 2026 18:43:42 +0000
Subject: [PATCH] =CustomBlocks.php overhaul relatively complete. Also refactored the gallery in gallery.min.js and the jvbRenderGallery.

---
 inc/managers/DirectoryManager.php |   39 ++++++++++++++++++++++++++++++---------
 1 files changed, 30 insertions(+), 9 deletions(-)

diff --git a/inc/managers/DirectoryManager.php b/inc/managers/DirectoryManager.php
index 3be452e..c81010d 100644
--- a/inc/managers/DirectoryManager.php
+++ b/inc/managers/DirectoryManager.php
@@ -44,8 +44,8 @@
     public function registerDirectories():void
     {
 
-		$singular = !empty(Site::getDirectorySingular())?:'Directory';
-		$plural = !empty(Site::getDirectorySingular())?: 'Directories';
+		$singular = Site::getDirectorySingular()??'Directory';
+		$plural = Site::getDirectoryPlural()??'Directories';
 		$config = [
 			'labels'	=> [
 				'name'               => $plural,
@@ -131,15 +131,36 @@
 			}
 
 			$config = $registrar->getConfig('directory');
-
 			$title = $config['title'];
+			//Bail early if we've already created the page
+			$existing = new WP_Query([
+				'post_type'	=> BASE.'dash',
+				'name'	=> sanitize_title($title),
+				'posts_per_page'	=> 1,
+			]);
+			if ($existing->have_posts()) {
+				$existing = $existing->posts[0];
+				$created[$directory] = $existing->ID;
+				$directories[$directory] = [
+					'slug'	=> $existing->post_name,
+					'title'	=> $existing->post_title,
+					'ID'	=> $existing->ID,
+					'url'	=> get_the_permalink($existing->ID),
+					'page'	=> $existing->post_title,
+					'description'=> $existing->post_excerpt,
+					'type'	=> $type,
+					'extra'	=> $config[$directory]['directory_extra']??[],
+				];
+				continue;
+			}
+
 			$excerpt = implode(' ', $config['description']??[]);
 			$ID = wp_insert_post([
 				'post_type'		=> BASE.'directory',
 				'post_title'	=> $title,
 				'post_status'	=> 'publish',
 				'post_excerpt'	=> $excerpt,
-				'slug'			=> sanitize_title($title)
+				'post_name'			=> sanitize_title($title)
 			]);
 			if (!is_wp_error($ID)) {
 				add_post_meta($ID, self::$type, $type);
@@ -352,7 +373,7 @@
 					$config = Registrar::getInstance($slug);
 					$aOpen = '<a href="'.$directory['url'].'" title="See our list of '.$directory['title'].'">';
 					$aClose = '</a>';
-					$cache .= '<li class="directory col start">
+					$cache .= '<li class="directory col left">
 						'. $aOpen.jvbIcon($config->getIcon() !== '' ? $config->getIcon() :'list-dashes').$directory['title'].$aClose;
 					if (!empty($directory['description'])) {
 						$cache .= '<div class="description">';
@@ -391,7 +412,7 @@
 		);
         if ($current !== '' && array_key_exists($current, $this->directories())) {
             $open = ($open) ? ' open' : '';
-            $cache = '<details'.$open.'><summary class="row btw">Other '.$this->referAs(true).':</summary>'.
+            $cache = '<details'.$open.'><summary class="row x-btw">Other '.$this->referAs(true).':</summary>'.
                      str_replace('id="'.$current.'"', 'id="'.$current.'" class="current"', $cache)
                      .'</details>';
         }
@@ -592,7 +613,7 @@
 			$children =$this->renderListChunk($taxonomy, $term->term_id);
 			$out .= '<li>';
 			if ($children !== '') {
-				$out .= '<details class="term"><summary class="row btw"><a href="'.get_term_link($term->term_id, $term->taxonomy).'" title="See more '.html_entity_decode($term->name).'">'.$term->name.'</a></summary>';
+				$out .= '<details class="term"><summary class="row x-btw"><a href="'.get_term_link($term->term_id, $term->taxonomy).'" title="See more '.html_entity_decode($term->name).'">'.$term->name.'</a></summary>';
 				$out .= $children;
 				$out .= '</details>';
 			} else {
@@ -647,7 +668,7 @@
 
         $out = '<ul class="list-none">';
         foreach ($list as $letter => $items) {
-            $out .= '<li id="starts-with-'.$letter.'" class="row a-start btw nowrap"><h3>'.strtoupper($letter).'</h3><ul>';
+            $out .= '<li id="starts-with-'.$letter.'" class="row top x-btw nowrap"><h3>'.strtoupper($letter).'</h3><ul>';
             foreach ($items as $item) {
                 $extra = '';
                 if (!empty($item['extra'])) {
@@ -662,7 +683,7 @@
 				$item_html = apply_filters('jvb_directory_render_item', '', $item, $type, $extra);
 
 				if (empty($item_html)) {
-					$item_html = '<li class="row btw">
+					$item_html = '<li class="row x-btw">
                     <a href="'.$item['url'].'" title="More about '.$item['name'].'">
                         '.$item['name'].'</a>'.$extra.'
                 </li>';

--
Gitblit v1.10.0