Skip to content
Code-Schnipsel Gruppen Projekte
Commit 53ba84e1 erstellt von Michael Danielczok's avatar Michael Danielczok
Dateien durchsuchen

Merge branch 'dev'

Übergeordnete 0ff77589 d166f4fe
No related branches found
No related tags found
1 Merge Request!25Update 'next-3.x' with latest changes from 'main'
......@@ -86,7 +86,7 @@ body {
body.iosFix {
/*height: 100%;*/
top: 0 !important;
/*top: 0 !important;*/
}
body.iosFix .qui-window-popup {
......
......@@ -59,7 +59,7 @@
</div>
{/if}
{if isset($ProductList) && $ProductList->count() && !empty($filter) || isset($ProductList) && $ProductList->getAttribute('showFilterInfo')}
{if !empty($filter) && (isset($ProductList) && $ProductList->count() || isset($ProductList) && $ProductList->getAttribute('showFilterInfo'))}
<div class="product-sidebar-container product-sidebar-filter template-grid-row clearfix">
<header class="left-sidebar-filter-header">
<h2>{locale group="quiqqer/products" var="type.category.filterTitle"}</h2>
......
......@@ -38,7 +38,7 @@
</form>
</div>
{if isset($ProductList) && $ProductList->count() && !empty($filter)}
{if !empty($ProductList->getFilter())}
<div class="product-sidebar-container product-sidebar-filter template-grid-row clearfix">
<header class="left-sidebar-filter-header">
<h2>{locale group="quiqqer/products" var="type.search.filterTitle"}</h2>
......
......@@ -8,6 +8,8 @@
use QUI;
use QUI\ERP\Products\Handler\Fields;
use function is_a;
use function usort;
/**
* Class ProductGallery
......@@ -22,29 +24,36 @@ class ProductGallery extends QUI\Control
public function __construct($attributes = [])
{
$this->setAttributes([
'Product' => false,
// 'data-qui' => 'package/quiqqer/products/bin/controls/frontend/products/Product'
'Product' => false
]);
// $this->addCSSFile(dirname(__FILE__).'/ProductGallery.css');
parent::__construct($attributes);
}
/**
* (non-PHPdoc)
*
* @throws QUI\Exception
* @see \QUI\Control::create()
*
* @throws QUI\Exception
*/
public function getBody()
{
/* @var $Product QUI\ERP\Products\Product\Product */
if (!$this->getAttribute('Product')) {
return '';
}
$Engine = QUI::getTemplateManager()->getEngine();
$Product = $this->getAttribute('Product');
$Gallery = new QUI\Gallery\Controls\Slider();
if ($Product instanceof QUI\ERP\Products\Product\ViewFrontend) {
$Product = $Product->getProduct();
}
$typeVariantParent = is_a($Product->getType(), QUI\ERP\Products\Product\Types\VariantParent::class, true);
$typeVariantChild = is_a($Product->getType(), QUI\ERP\Products\Product\Types\VariantChild::class, true);
// gallery
$PlaceholderImage = $this->getProject()->getMedia()->getPlaceholderImage();
......@@ -62,6 +71,14 @@ public function getBody()
} catch (QUI\Exception $Exception) {
}
if ($typeVariantParent || $typeVariantChild) {
$Gallery->setAttribute('folderId', false);
foreach ($this->getVariantImages($Product) as $Image) {
$Gallery->addImage($Image);
}
}
$height = '400px';
if ($this->getAttribute('height')) {
$height = $this->getAttribute('height');
......@@ -72,7 +89,7 @@ public function getBody()
$Gallery->setAttribute('data-qui-options-show-controls-always', 0);
$Gallery->setAttribute('data-qui-options-show-title-always', 0);
$Gallery->setAttribute('data-qui-options-show-title', 0);
$Gallery->setAttribute('data-qui-options-imagefit', 0);
$Gallery->setAttribute('data-qui-options-imagefit', 1);
$Gallery->setAttribute('data-qui-options-preview', 1);
$Gallery->setAttribute('data-qui-options-preview-outside', 1);
......@@ -83,6 +100,57 @@ public function getBody()
'Gallery' => $Gallery,
]);
return $Engine->fetch(dirname(__FILE__) . '/ProductGallery.html');
return $Engine->fetch(dirname(__FILE__).'/ProductGallery.html');
}
/**
* Get product images (for variant parents and children).
* \QUI\ERP\Products\Controls\Products\Product::getVariantImages
* By @peat
*
* @param QUI\ERP\Products\Product\Product $Product
* @return QUI\Projects\Media\Image[]
*/
protected function getVariantImages(QUI\ERP\Products\Product\Product $Product): array
{
$images = $Product->getImages();
try {
$MainImage = $Product->getImage();
$mainImageId = $MainImage->getId();
$hasMainImage = false;
foreach ($images as $Image) {
if ($Image->getId() === $MainImage->getId()) {
$hasMainImage = true;
break;
}
}
if (!$hasMainImage) {
$images[] = $MainImage;
}
} catch (\Exception $Exception) {
QUI\System\Log::writeDebugException($Exception);
$mainImageId = false;
}
usort($images, function ($ImageA, $ImageB) use ($mainImageId) {
/**
* @var QUI\Projects\Media\Image $ImageA
* @var QUI\Projects\Media\Image $ImageB
*/
if ($ImageA->getId() === $mainImageId) {
return -1;
}
if ($ImageB->getId() === $mainImageId) {
return 1;
}
return 0;
});
return $images;
}
}
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren