From f724b86674ea38010f974262253ec8bb1e2946f2 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Tue, 1 Apr 2025 01:24:18 -0700 Subject: [PATCH] products form wip --- templates/ProductCategories/select.php | 2 +- templates/ProductCategoryAttributes/form.php | 63 ++++++++++++++++++++ templates/element/Products/form.php | 12 +++- 3 files changed, 74 insertions(+), 3 deletions(-) create mode 100644 templates/ProductCategoryAttributes/form.php diff --git a/templates/ProductCategories/select.php b/templates/ProductCategories/select.php index 4b02952..7caf27c 100644 --- a/templates/ProductCategories/select.php +++ b/templates/ProductCategories/select.php @@ -7,7 +7,7 @@ $this->setLayout('ajax'); ?> - + $productCategoryName): ?> \ No newline at end of file diff --git a/templates/ProductCategoryAttributes/form.php b/templates/ProductCategoryAttributes/form.php new file mode 100644 index 0000000..fbe2921 --- /dev/null +++ b/templates/ProductCategoryAttributes/form.php @@ -0,0 +1,63 @@ + +
+ +
+
+

name) ?>

+ + + + + + + + + + + + + +
name) ?>
hasValue('product_category') ? $this->Html->link($productCategoryAttribute->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $productCategoryAttribute->product_category->id]) : '' ?>
enabled ? __('Yes') : __('No'); ?>
+ +
+
+
diff --git a/templates/element/Products/form.php b/templates/element/Products/form.php index fefd293..815c31a 100644 --- a/templates/element/Products/form.php +++ b/templates/element/Products/form.php @@ -12,8 +12,9 @@ Form->control('name'); echo $this->Form->control('product_catalog_id', [ + 'empty' => 'Select a Catalog', 'options' => $productCatalogs, - 'hx-trigger' => 'change, load delay:1s', + 'hx-trigger' => 'change, load delay:500ms', 'hx-get' => $this->Url->build([ 'controller' => 'ProductCategories', 'action' => 'select', @@ -22,9 +23,16 @@ echo $this->Form->control('product_catalog_id', [ 'hx-target' => '#product_category_id', ]); echo $this->Form->control('product_category_id', [ - 'options' => $productCategories ?? [], + 'options' => [], 'empty' => true, 'id' => 'product_category_id', + 'hx-trigger' => 'change, load delay:1s', + 'hx-get' => $this->Url->build([ + 'controller' => 'ProductCategoryAttributes', + 'action' => 'form', + 0 => $productCategory ? $productCategory->product_catalog_id : '', + ]), + 'hx-target' => '#product-attributes-container', ]); echo $this->Form->control('product_type_id'); ?>