Skip to content

Commit

Permalink
Merge a2fdd93 into 87dac63
Browse files Browse the repository at this point in the history
  • Loading branch information
Numkil committed Mar 31, 2020
2 parents 87dac63 + a2fdd93 commit d3342ba
Show file tree
Hide file tree
Showing 43 changed files with 7,130 additions and 48 deletions.
189 changes: 189 additions & 0 deletions docs/bundles/media-bundle/cropping-media-objects.md
@@ -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_id", referencedColumnName="id")
* @Assert\NotNull()
*/
private $media;

/**
* @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 getMedia(): ?EditableMediaWrapper
{
return $this->media;
}

public function setMedia(EditableMediaWrapper $media): CroppableImagePartPart
{
$this->media = $media;

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\MediaBundle\Form\Type\MediaType;
use Kunstmaan\NodeBundle\Form\Type\URLChooserType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;

class CroppableImagePagePartAdminType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options): void
{
parent::buildForm($builder, $options);

$builder->add('media', 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.media, '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('media', 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
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
13 changes: 11 additions & 2 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 d3342ba

Please sign in to comment.