v0.0.15 - catalags & apis many to many wip
CI / testsuite (mysql, 8.1, ) (push) Failing after 1s Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 0s Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 1s Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 1s Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 1s Details
CI / Coding Standard & Static Analysis (push) Failing after 0s Details

This commit is contained in:
Brandon Shipley 2025-03-31 00:48:00 -07:00
parent ce74025f6c
commit 4c65d23e2b
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
8 changed files with 173 additions and 69 deletions

View File

@ -65,8 +65,15 @@ class ExternalProductCatalogsController extends AppController
{
$externalProductCatalog = $this->ExternalProductCatalogs->newEmptyEntity();
if ($this->request->is('post')) {
$externalProductCatalog = $this->ExternalProductCatalogs->patchEntity($externalProductCatalog, $this->request->getData());
if ($this->ExternalProductCatalogs->save($externalProductCatalog)) {
$saveOptions = [
'associated' => [
'ExternalProductCatalogsProductCatalogs',
],
];
$postData = $this->request->getData();
$externalProductCatalog = $this->ExternalProductCatalogs->patchEntity($externalProductCatalog, $postData, $saveOptions);
if ($this->ExternalProductCatalogs->save($externalProductCatalog, $saveOptions)) {
$this->Flash->success(__('The external product catalog has been saved.'));
return $this->redirect(['action' => 'index']);

View File

@ -58,6 +58,10 @@ class ExternalProductCatalogsTable extends Table
'through' => 'CakeProducts.ExternalProductCatalogsProductCatalogs',
'className' => 'CakeProducts.ProductCatalogs',
]);
$this->hasMany('ExternalProductCatalogsProductCatalogs', [
'className' => 'CakeProducts.ExternalProductCatalogsProductCatalogs',
]);
}
/**

View File

@ -1,7 +1,7 @@
<?php
/**
* @var \App\View\AppView $this
* @var \Cake\Datasource\EntityInterface $externalProductCatalog
* @var \App\Model\Entity\ExternalProductCatalog $externalProductCatalog
*/
?>
<div class="row">
@ -18,10 +18,6 @@
<div class="externalProductCatalogs view content">
<h3><?= h($externalProductCatalog->base_url) ?></h3>
<table>
<tr>
<th><?= __('Product Catalog') ?></th>
<td><?= $externalProductCatalog->hasValue('product_catalog') ? $this->Html->link($externalProductCatalog->product_catalog->name, ['controller' => 'ProductCatalogs', 'action' => 'view', $externalProductCatalog->product_catalog->id]) : '' ?></td>
</tr>
<tr>
<th><?= __('Base Url') ?></th>
<td><?= h($externalProductCatalog->base_url) ?></td>
@ -30,6 +26,10 @@
<th><?= __('Api Url') ?></th>
<td><?= h($externalProductCatalog->api_url) ?></td>
</tr>
<tr>
<th><?= __('Id') ?></th>
<td><?= $this->Number->format($externalProductCatalog->id) ?></td>
</tr>
<tr>
<th><?= __('Created') ?></th>
<td><?= h($externalProductCatalog->created) ?></td>
@ -38,11 +38,34 @@
<th><?= __('Deleted') ?></th>
<td><?= h($externalProductCatalog->deleted) ?></td>
</tr>
</table>
<div class="related">
<h4><?= __('Related Product Catalogs') ?></h4>
<?php if (!empty($externalProductCatalog->product_catalogs)) : ?>
<div class="table-responsive">
<table>
<tr>
<th><?= __('Name') ?></th>
<th><?= __('Catalog Description') ?></th>
<th><?= __('Enabled') ?></th>
<td><?= $externalProductCatalog->enabled ? __('Yes') : __('No'); ?></td>
<th class="actions"><?= __('Actions') ?></th>
</tr>
<?php foreach ($externalProductCatalog->product_catalogs as $productCatalog) : ?>
<tr>
<td><?= h($productCatalog->name) ?></td>
<td><?= h($productCatalog->catalog_description) ?></td>
<td><?= h($productCatalog->_joinData->enabled) ?></td>
<td class="actions">
<?= $this->Html->link(__('View'), ['controller' => 'ProductCatalogs', 'action' => 'view', $productCatalog->id]) ?>
<?= $this->Html->link(__('Edit'), ['controller' => 'ProductCatalogs', 'action' => 'edit', $productCatalog->id]) ?>
<?= $this->Form->postLink(__('Delete'), ['controller' => 'ProductCatalogs', 'action' => 'delete', $productCatalog->id], ['confirm' => __('Are you sure you want to delete # {0}?', $productCatalog->id)]) ?>
</td>
</tr>
<?php endforeach; ?>
</table>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,8 @@
<?php
/**
* @var \App\View\AppView $this
* @var \Cake\Collection\CollectionInterface|string[] $productCatalogs
*/
$this->setLayout('ajax');
echo $this->element('ExternalProductCatalogs/catalog_form'); ?>

View File

@ -0,0 +1,18 @@
<?php
/**
* @var AppView $this
* @var EntityInterface|ExternalProductCatalog $externalProductCatalog
* @var array $productCatalogs
*/
use App\Model\Entity\ExternalProductCatalog;
use App\View\AppView;
use Cake\Datasource\EntityInterface;
$prefix = $prefix ?? '';
if ($this->request->getQuery('catalog_prefix') !== null) {
$prefix = 'external_product_catalogs_product_catalogs.' . $this->request->getQuery('catalog_prefix') . '.';
}
echo '<hr class="my-2">';
echo $this->Form->control($prefix . 'product_catalog_id', ['options' => $productCatalogs]);
?>

View File

@ -0,0 +1,64 @@
<?php
/**
* @var AppView $this
* @var EntityInterface|ExternalProductCatalog $externalProductCatalog
* @var array $productCatalogs
*/
use App\Model\Entity\ExternalProductCatalog;
use App\View\AppView;
use Cake\Datasource\EntityInterface;
$numProductCatalogs = !$externalProductCatalog->hasValue('product_catalogs') || empty($externalProductCatalog->product_catalogs) ? 0 : count($externalProductCatalog->product_catalogs);
?>
<h4 class="mb-4">API Info</h4>
<?php
echo $this->Form->control('base_url');
echo $this->Form->control('api_url');
?>
<hr>
<h6></h6>
<h4 class="mb-4">Product Catalogs
<small class="ms-2 font-size-xs">
<?= $this->Html->link('Add Catalog', '#', [
'id' => 'add-product-catalog-button',
]); ?>
</small>
</h4>
<?= $this->Form->number('catalog_prefix', [
'value' => $numProductCatalogs - 1,
'id' => 'catalog_prefix',
'style' => 'display:none;',
'hx-get' => $this->Url->build([
'plugin' => false,
'controller' => 'ExternalProductCatalogsProductCatalogs',
'action' => 'add',
]),
'hx-trigger' => 'change',
'hx-target' => '#product-catalogs-container',
'hx-swap' => 'beforeend',
'data-test' => 1,
]); ?>
<?php
?>
<div id="product-catalogs-container" class="container">
<?php if ($externalProductCatalog->hasValue('product_catalogs')) : ?>
<?php
$cnt = 0;
foreach ($externalProductCatalog->product_catalogs as $productCatalog) {
$prefix = 'external_product_catalogs_product_catalogs.' . $cnt . '.';
echo '<hr class="my-2">';
echo $this->element('ExternalProductCatalogs/catalog_form', [
'productCatalog' => $productCatalog,
'prefix' => $prefix
]);
$cnt++;
} ?>
<?php endif; ?>
</div>
<?= $this->Html->script('CakeProducts.product_catalogs.js'); ?>

View File

@ -0,0 +1,25 @@
<?php
declare(strict_types=1);
namespace CakeProducts\Test\Fixture;
use Cake\TestSuite\Fixture\TestFixture;
/**
* ExternalProductCatalogsProductCatalogsFixture
*/
class ExternalProductCatalogsProductCatalogsFixture extends TestFixture
{
/**
* Init method
*
* @return void
*/
public function init(): void
{
$this->records = [
];
parent::init();
}
}

View File

@ -4,8 +4,10 @@ declare(strict_types=1);
namespace CakeProducts\Test\TestCase\Controller;
use App\Controller\ExternalProductCatalogsProductCatalogsController;
use Cake\ORM\Table;
use Cake\TestSuite\IntegrationTestTrait;
use Cake\TestSuite\TestCase;
use CakeProducts\Model\Table\ExternalProductCatalogsProductCatalogsTable;
use PHPUnit\Exception;
/**
@ -15,15 +17,21 @@ use PHPUnit\Exception;
*/
class ExternalProductCatalogsProductCatalogsControllerTest extends BaseControllerTest
{
/**
* Test subject table
*
* @var ExternalProductCatalogsProductCatalogsTable|Table
*/
protected $ExternalProductCatalogsProductCatalogs;
/**
* Fixtures
*
* @var array<string>
*/
protected array $fixtures = [
'CakeProducts.ExternalProductCatalogsProductCatalogs',
'CakeProducts.ExternalProductCatalogs',
'CakeProducts.ExternalProductCatalogs',
'plugin.CakeProducts.ExternalProductCatalogsProductCatalogs',
'plugin.CakeProducts.ExternalProductCatalogs',
'plugin.CakeProducts.ProductCatalogs',
];
/**
@ -68,6 +76,7 @@ class ExternalProductCatalogsProductCatalogsControllerTest extends BaseControlle
// $this->loginUserByRole('admin');
$url = [
'plugin' => 'CakeProducts',
'controller' => 'ExternalProductCatalogsProductCatalogs',
'action' => 'add',
];
@ -78,61 +87,6 @@ class ExternalProductCatalogsProductCatalogsControllerTest extends BaseControlle
$this->assertEquals($cntBefore, $cntAfter);
}
/**
* Test add method
*
* Tests a POST request to the add action with a logged in user
*
* @uses \App\Controller\ExternalProductCatalogsProductCatalogsController::add()
* @throws Exception
*
* @return void
*/
public function testAddPostSuccess(): void
{
$cntBefore = $this->ExternalProductCatalogsProductCatalogs->find()->count();
// $this->loginUserByRole('admin');
$url = [
'controller' => 'ExternalProductCatalogsProductCatalogs',
'action' => 'add',
];
$data = [];
$this->post($url, $data);
$this->assertResponseCode(302);
$this->assertRedirectContains('externalproductcatalogsproductcatalogs/view');
$cntAfter = $this->ExternalProductCatalogsProductCatalogs->find()->count();
$this->assertEquals($cntBefore + 1, $cntAfter);
}
/**
* Test add method
*
* Tests a POST request to the add action with a logged in user
*
* @uses \App\Controller\ExternalProductCatalogsProductCatalogsController::add()
* @throws Exception
*
* @return void
*/
public function testAddPostFailure(): void
{
$cntBefore = $this->ExternalProductCatalogsProductCatalogs->find()->count();
// $this->loginUserByRole('admin');
$url = [
'controller' => 'ExternalProductCatalogsProductCatalogs',
'action' => 'add',
];
$data = [];
$this->post($url, $data);
$this->assertResponseCode(200);
$cntAfter = $this->ExternalProductCatalogsProductCatalogs->find()->count();
$this->assertEquals($cntBefore, $cntAfter);
}
/**
* Test delete method
*
@ -149,6 +103,7 @@ class ExternalProductCatalogsProductCatalogsControllerTest extends BaseControlle
// $this->loginUserByRole('admin');
$url = [
'plugin' => 'CakeProducts',
'controller' => 'ExternalProductCatalogsProductCatalogs',
'action' => 'delete',
1,