from django import forms
from django.core.exceptions import ValidationError
from django.utils.translation import get_language
from django.utils.translation import gettext_lazy as _
from filer.models import File
from shuup.admin.forms.widgets import ImageChoiceWidget
from shuup.xtheme import TemplatedPlugin
from shuup.xtheme.plugins.forms import TranslatableField
[docs]
class ImageIDField(forms.IntegerField):
"""
A custom field that stores the ID value of a Filer image and presents
Shuup admin's image popup widget.
"""
widget = ImagePluginChoiceWidget(clearable=True)
[docs]
def clean(self, value):
try:
value = super().clean(value)
except ValidationError as err:
raise ValidationError("Error! Invalid image ID.", code="invalid") from err
return value
[docs]
class ImagePlugin(TemplatedPlugin):
"""
A linkable image plugin.
"""
identifier = "images"
name = _("Image")
template_name = "shuup/xtheme/plugins/image.jinja"
cacheable = True
fields = [
("title", TranslatableField(label=_("Title"), required=False)),
("image_id", ImageIDField(label=_("Image"), required=False)),
("url", forms.URLField(label=_("Image Link URL"), required=False)),
(
"full_width",
forms.BooleanField(
label=_("Full width"),
required=False,
initial=True,
help_text=_("Set image to the full width of cell."),
),
),
(
"width",
forms.IntegerField(
label=_("Width (px)"),
required=False,
help_text=_("Leave blank for default width."),
),
),
(
"height",
forms.IntegerField(
label=_("Height (px)"),
required=False,
help_text=_("Leave blank for default width."),
),
),
]
[docs]
def get_cache_key(self, context, **kwargs) -> str:
image_id = self.config.get("image_id", None)
title = self.get_translated_value("title", "")
url = self.config.get("url", None)
full_width = self.config.get("full_width", None)
width = self.config.get("width", None)
height = self.config.get("height", None)
return str((get_language(), image_id, title, url, full_width, width, height))
[docs]
def get_context_data(self, context):
"""
A custom get_context_data that returns the matching filer File.
"""
image = None
image_id = self.config.get("image_id", None)
if image_id:
image = File.objects.filter(pk=image_id).first()
return {
"title": self.get_translated_value("title", ""),
"image": image,
"url": self.config.get("url", None),
"full_width": self.config.get("full_width", None),
"width": self.config.get("width", None),
"height": self.config.get("height", None),
}