Skip to content

Commit

Permalink
Merge db032be into ae5e03e
Browse files Browse the repository at this point in the history
  • Loading branch information
Numkil committed Jul 22, 2020
2 parents ae5e03e + db032be commit 6048c3a
Show file tree
Hide file tree
Showing 51 changed files with 23,262 additions and 53 deletions.
189 changes: 189 additions & 0 deletions docs/bundles/media-bundle/cropping-media-objects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
# Cropping media objects in the bundles

## cropping

Oftentimes before this implementation we needed to make pageparts with multiple media object uploads to be able to scale up or down for desktops to mobile phones.
Now we have made a feature that allows you to use one media object and crop it in several different ways for each viewport.

## Implementation

To use a croppable media object you want to use the wrapper object instead of the actual media object. If you do that all the rest will be done automatically.

pagepart.php
```php
<?php

namespace App\Entity\PageParts;

use App\Form\PageParts\CroppableImagePagePartAdminType;
use Doctrine\ORM\Mapping as ORM;
use Kunstmaan\MediaBundle\Entity\EditableMediaWrapper;
use Symfony\Component\Validator\Constraints as Assert;

/**
* @ORM\Entity
* @ORM\Table(name="app_croppable_image_page_parts")
*/
class CroppableImagePartPart extends AbstractPagePart
{
/**
* @ORM\ManyToOne(targetEntity="Kunstmaan\MediaBundle\Entity\EditableMediaWrapper", cascade={"persist"})
* @ORM\JoinColumn(name="media_wrapper_id", referencedColumnName="id")
* @Assert\Valid()
*/
private $mediaWrapper;

/**
* @ORM\Column(name="link", type="string", nullable=true)
*/
private $link;

/**
* @ORM\Column(name="open_in_new_window", type="boolean", nullable=true)
*/
private $openInNewWindow;

public function getOpenInNewWindow(): ?bool
{
return $this->openInNewWindow;
}

public function setOpenInNewWindow($openInNewWindow): CroppableImagePartPart
{
$this->openInNewWindow = $openInNewWindow;

return $this;
}

public function setLink($link): CroppableImagePartPart
{
$this->link = $link;

return $this;
}

public function getLink(): ?string
{
return $this->link;
}

public function getMediaWrapper()
{
return $this->mediaWrapper;
}

public function setMediaWrapper(EditableMediaWrapper $mediaWrapper)
{
$this->mediaWrapper = $mediaWrapper;

return $this;
}

public function getDefaultView(): string
{
return 'PageParts/CroppableImagePagePart/view.html.twig';
}

public function getDefaultAdminType(): string
{
return CroppableImagePagePartAdminType::class;
}
}
```

pagepartadmintype.php
```php
<?php

namespace App\Form\PageParts;

use App\Entity\PageParts\CroppableImagePartPart;
use Kunstmaan\MediaBundle\Form\EditableMediaWrapperAdminType;
use Kunstmaan\NodeBundle\Form\Type\URLChooserType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;

class CroppableImagePagePartAdminType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder->add('mediaWrapper', EditableMediaWrapperAdminType::class, [
'required' => true,
]);
$builder->add('link', URLChooserType::class, [
'required' => false,
'label' => 'mediapagepart.image.link',
]);
$builder->add('openInNewWindow', CheckboxType::class, [
'required' => false,
'label' => 'mediapagepart.image.openinnewwindow',
]);
}

public function getBlockPrefix(): string
{
return 'croppableimagepageparttype';
}

public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => CroppableImagePartPart::class,
]);
}
}
```

In your twig file you will have to use the new twig function we provided to generate the cropped image. (this image will be cached for future requests with the twig filter)
```twig
{% set imgUrl = cropped_imagine_filter(resource.mediaWrapper, 'desktop') %}
```
And in your twig file you can use the following call to get the focus_point class for your image with the following method
```twig
{% set imgUrl = get_focus_point_class(resource.mediaWrapper, 'desktop') %}
```

It is also possible to configure your own viewports using the following config.
```yaml
kunstmaan_media:
cropping_views:
custom_views:
example1:
use_focus_point: false
use_cropping: true
views:
- { name: desktop, width: 50, height: 50, lock_ratio: true}
example2:
use_focus_point: true
use_cropping: false
views:
- { name: desktop, width: 1, height: 1}
- { name: phone, width: 1, height: 1}
```
```
width: minimum width of your cropbox
height: minimum height of your cropbox
name: name that is shown in cropping modal and needs to be used in your twig template
lock_ratio: if the cropping box needs to respect the aspect ratio of your width and height at all times. Is Ignored when byFocusPoint is true
by_focus_point: if by_focus_point is set to true the frontend won't display a cropping box but will allow the user to select a focus point and use the width/height configured to calculate what area is shown.
```

You can then use it by telling your form admintype which group of viewports to use.

```php
<?php

class CroppableImagePagePartAdminType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder->add('mediaWrapper', EditableMediaWrapperAdminType::class, [
'required' => true,
'cropping_views_group' => 'example1',
]);
}
}

```
5 changes: 5 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"bootstrap-colorpicker": "^2.5.3",
"bootstrap-sass": "^3.4.1",
"cargobay": "Kunstmaan/cargobay#0.8.6-support",
"cropperjs": "^1.5.6",
"eonasdan-bootstrap-datetimepicker": "^4.17.47",
"fuse.js": "^3.1.0",
"jquery": "^3.4.1",
Expand Down
15,256 changes: 15,251 additions & 5 deletions src/Kunstmaan/AdminBundle/Resources/public/css/style.css

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 6048c3a

Please sign in to comment.