fixes zoomed image width

This commit is contained in:
buttle 2021-04-19 16:21:37 +02:00
parent d86e63b9f5
commit b717d24c9e
5 changed files with 51 additions and 40 deletions

View File

@ -16,6 +16,12 @@ class Module extends AbstractModule
'100' => '100 %', '100' => '100 %',
]; ];
const ZOOM_TYPE = [
'' => '',
'zoom' => 'Touch / grab',
'wheelzoom' => 'Deep zooming',
];
public function getConfig() public function getConfig()
{ {
return include __DIR__ . '/config/module.config.php'; return include __DIR__ . '/config/module.config.php';

View File

@ -21,7 +21,7 @@ return [
'ImageViewerBlockForm' => [ 'ImageViewerBlockForm' => [
'title' => '', 'title' => '',
'width' => 600, 'width' => 600,
'zoom' => false, 'zoom_type' => '',
'wrapStyle' => 'overflow-y: hidden;display: flex;flex-direction: column;justify-content: center;', 'wrapStyle' => 'overflow-y: hidden;display: flex;flex-direction: column;justify-content: center;',
] ]
] ]

View File

@ -28,6 +28,16 @@ class ImageViewerBlockForm extends Form
], ],
]); ]);
$this->add([
'name' => 'o:block[__blockIndex__][o:data][zoom_type]',
'type' => Element\Select::class,
'options' => [
'label' => 'Zooming',
'value_options' => Module::ZOOM_TYPE,
],
]);
/*
$this->add([ $this->add([
'type' => Element\Checkbox::class, 'type' => Element\Checkbox::class,
'name' => 'o:block[__blockIndex__][o:data][zoom]', 'name' => 'o:block[__blockIndex__][o:data][zoom]',
@ -38,6 +48,6 @@ class ImageViewerBlockForm extends Form
'unchecked_value' => false, 'unchecked_value' => false,
], ],
]); ]);
*/
} }
} }

View File

@ -49,7 +49,8 @@ class ImageViewer extends AbstractBlockLayout
$form->setData([ $form->setData([
'o:block[__blockIndex__][o:data][title]' => $data['title'], 'o:block[__blockIndex__][o:data][title]' => $data['title'],
'o:block[__blockIndex__][o:data][width]' => $data['width'], 'o:block[__blockIndex__][o:data][width]' => $data['width'],
'o:block[__blockIndex__][o:data][zoom]' => $data['zoom'], 'o:block[__blockIndex__][o:data][zoom_type]' => $data['zoom_type'],
//'o:block[__blockIndex__][o:data][zoom]' => $data['zoom'],
]); ]);
$form->prepare(); $form->prepare();
@ -75,7 +76,7 @@ class ImageViewer extends AbstractBlockLayout
$media = $attachments[0]->item()->media()[0]; $media = $attachments[0]->item()->media()[0];
return $view->partial('common/block-layout/imageViewer', [ return $view->partial('common/block-layout/imageViewer', [
'zoom' => $block->dataValue('zoom'), 'zoom_type' => $block->dataValue('zoom_type'),
'title' => $block->dataValue('title'), 'title' => $block->dataValue('title'),
'width' => $block->dataValue('width'), 'width' => $block->dataValue('width'),
'image' => $media->primaryMedia()->thumbnailUrl('large'), 'image' => $media->primaryMedia()->thumbnailUrl('large'),

View File

@ -1,15 +1,18 @@
<?php if ($zoom == true) { <?php
//$this->headScript()->appendFile($this->assetUrl('vendor/wheelzoom/wheelzoom.js', if ($zoom_type == "wheelzoom") {
// 'ImageViewer')); $this->headScript()->appendFile($this->assetUrl('vendor/wheelzoom/wheelzoom.js',
'ImageViewer'));
}
if ($zoom_type == "zoom") {
$this->headScript()->appendFile($this->assetUrl('vendor/zoom/jquery.zoom.min.js', $this->headScript()->appendFile($this->assetUrl('vendor/zoom/jquery.zoom.min.js',
'ImageViewer')); 'ImageViewer'));
$this->headLink()->appendStylesheet($this->assetUrl('css/zoom.css', $this->headLink()->appendStylesheet($this->assetUrl('css/zoom.css',
'ImageViewer')); 'ImageViewer'));
} ?> }
?>
<div class="wheelzoom-wrap" style="position:relative;">
<?php <?php
if ($title !== false && $title !== "") { if ($title !== false && $title !== "") {
@ -19,43 +22,34 @@
} }
?> ?>
<style>
#<?= $id ?> {
width: <?= $width ?>%;
}
<?php if ($zoom == true) { ?>
#<?= $id ?> {
cursor:crosshair;
}
<?php } ?>
</style>
<div class="archive-img"> <?php if ($zoom_type == "zoom") { ?>
<img id="<?= $id ?>" <div id='<?= $id ?>' class='zoom' style='width:<?= $width ?>%; cursor:grab'>
src="<?= $image ?>" <img src='<?= $image ?>' alt='<?= $title ?>'/>
/>
</div> </div>
<?php if ($zoom == true) { ?>
<script> <script>
$(document).ready(function(){ $(document).ready(function(){
$('#<?= $id ?>') $('#<?= $id ?>').zoom({on:'grab', 'duration': 200});
.wrap('<span class="zoom" style="display:inline-block; cursor:grab"></span>')
.css('display', 'block')
.parent()
.zoom({'duration': 200, 'magnify': 2, on:'grab'});
}); });
</script> </script>
<?php } ?> <?php } ?>
<?php if ($zoom == true) { ?> <?php if ($zoom_type == "wheelzoom") { ?>
<div class='zoom' style='display:block; width:<?= $width ?>%; cursor:crosshair'>
<img id="<?= $id ?>" src="<?= $image ?>" />
</div>
<script> <script>
/*
$(document).ready(function(){ $(document).ready(function(){
wheelzoom(document.querySelector('#<?= $id ?>')); wheelzoom(document.querySelector('#<?= $id ?>'));
}); });
*/
</script> </script>
<?php } ?> <?php } ?>
</div> <?php if ($zoom_type == "") { ?>
<div class="archive-img">
<img id="<?= $id ?>"
style="width: <?= $width ?>%;"
src="<?= $image ?>"
/>
</div>
<?php } ?>