mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-03-17 05:50:23 +00:00
Django's ForeignKey supports custom to_fields. The to field is the primary key by default, but can be modified. The to field is also used by forms to reduce database lookups. This patch add support for custom to_field names on both model or form layer.
560 lines
18 KiB
Python
560 lines
18 KiB
Python
"""
|
|
Django-Select2 Widgets.
|
|
|
|
These components are responsible for rendering
|
|
the necessary HTML data markups. Since this whole
|
|
package is to render choices using Select2 JavaScript
|
|
library, hence these components are meant to be used
|
|
with choice fields.
|
|
|
|
Widgets are generally of two types:
|
|
|
|
1. **Light** --
|
|
They are not meant to be used when there
|
|
are too many options, say, in thousands.
|
|
This is because all those options would
|
|
have to be pre-rendered onto the page
|
|
and JavaScript would be used to search
|
|
through them. Said that, they are also one
|
|
the most easiest to use. They are a
|
|
drop-in-replacement for Django's default
|
|
select widgets.
|
|
|
|
2. **Heavy** --
|
|
They are suited for scenarios when the number of options
|
|
are large and need complex queries (from maybe different
|
|
sources) to get the options.
|
|
This dynamic fetching of options undoubtedly requires
|
|
Ajax communication with the server. Django-Select2 includes
|
|
a helper JS file which is included automatically,
|
|
so you need not worry about writing any Ajax related JS code.
|
|
Although on the server side you do need to create a view
|
|
specifically to respond to the queries.
|
|
|
|
3. **Model** --
|
|
Model-widgets are a further specialized versions of Heavies.
|
|
These do not require views to serve Ajax requests.
|
|
When they are instantiated, they register themselves
|
|
with one central view which handles Ajax requests for them.
|
|
|
|
Heavy widgets have the word 'Heavy' in their name.
|
|
Light widgets are normally named, i.e. there is no
|
|
'Light' word in their names.
|
|
|
|
.. inheritance-diagram:: django_select2.forms
|
|
:parts: 1
|
|
|
|
"""
|
|
from functools import reduce
|
|
from itertools import chain
|
|
from pickle import PicklingError # nosec
|
|
|
|
from django import forms
|
|
from django.core import signing
|
|
from django.db.models import Q
|
|
from django.forms.models import ModelChoiceIterator
|
|
from django.urls import reverse
|
|
from django.utils.translation import get_language
|
|
|
|
from .cache import cache
|
|
from .conf import settings
|
|
|
|
|
|
class Select2Mixin(object):
|
|
"""
|
|
The base mixin of all Select2 widgets.
|
|
|
|
This mixin is responsible for rendering the necessary
|
|
data attributes for select2 as well as adding the static
|
|
form media.
|
|
"""
|
|
|
|
def build_attrs(self, *args, **kwargs):
|
|
"""Add select2 data attributes."""
|
|
attrs = super(Select2Mixin, self).build_attrs(*args, **kwargs)
|
|
if self.is_required:
|
|
attrs.setdefault('data-allow-clear', 'false')
|
|
else:
|
|
attrs.setdefault('data-allow-clear', 'true')
|
|
attrs.setdefault('data-placeholder', '')
|
|
|
|
attrs.setdefault('data-minimum-input-length', 0)
|
|
if 'class' in attrs:
|
|
attrs['class'] += ' django-select2'
|
|
else:
|
|
attrs['class'] = 'django-select2'
|
|
return attrs
|
|
|
|
def optgroups(self, name, value, attrs=None):
|
|
"""Add empty option for clearable selects."""
|
|
if not self.is_required and not self.allow_multiple_selected:
|
|
self.choices = list(chain([('', '')], self.choices))
|
|
return super(Select2Mixin, self).optgroups(name, value, attrs=attrs)
|
|
|
|
def _get_media(self):
|
|
"""
|
|
Construct Media as a dynamic property.
|
|
|
|
.. Note:: For more information visit
|
|
https://docs.djangoproject.com/en/stable/topics/forms/media/#media-as-a-dynamic-property
|
|
"""
|
|
lang = get_language()
|
|
i18n_name = None
|
|
try:
|
|
from django.contrib.admin.widgets import SELECT2_TRANSLATIONS
|
|
i18n_name = SELECT2_TRANSLATIONS.get(lang)
|
|
if i18n_name not in settings.SELECT2_I18N_AVAILABLE_LANGUAGES:
|
|
i18n_name = None
|
|
except ImportError:
|
|
# TODO: select2 widget feature needs to be backported into Django 1.11
|
|
try:
|
|
i = [x.lower() for x in settings.SELECT2_I18N_AVAILABLE_LANGUAGES].index(lang)
|
|
i18n_name = settings.SELECT2_I18N_AVAILABLE_LANGUAGES[i]
|
|
except ValueError:
|
|
pass
|
|
|
|
i18n_file = ('%s/%s.js' % (settings.SELECT2_I18N_PATH, i18n_name),) if i18n_name else ()
|
|
|
|
return forms.Media(
|
|
js=(settings.SELECT2_JS,) + i18n_file + ('django_select2/django_select2.js',),
|
|
css={'screen': (settings.SELECT2_CSS,)}
|
|
)
|
|
|
|
media = property(_get_media)
|
|
|
|
|
|
class Select2TagMixin(object):
|
|
"""Mixin to add select2 tag functionality."""
|
|
|
|
def build_attrs(self, *args, **kwargs):
|
|
"""Add select2's tag attributes."""
|
|
self.attrs.setdefault('data-minimum-input-length', 1)
|
|
self.attrs.setdefault('data-tags', 'true')
|
|
self.attrs.setdefault('data-token-separators', '[",", " "]')
|
|
return super(Select2TagMixin, self).build_attrs(*args, **kwargs)
|
|
|
|
|
|
class Select2Widget(Select2Mixin, forms.Select):
|
|
"""
|
|
Select2 drop in widget.
|
|
|
|
Example usage::
|
|
|
|
class MyModelForm(forms.ModelForm):
|
|
class Meta:
|
|
model = MyModel
|
|
fields = ('my_field', )
|
|
widgets = {
|
|
'my_field': Select2Widget
|
|
}
|
|
|
|
or::
|
|
|
|
class MyForm(forms.Form):
|
|
my_choice = forms.ChoiceField(widget=Select2Widget)
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class Select2MultipleWidget(Select2Mixin, forms.SelectMultiple):
|
|
"""
|
|
Select2 drop in widget for multiple select.
|
|
|
|
Works just like :class:`.Select2Widget` but for multi select.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class Select2TagWidget(Select2TagMixin, Select2Mixin, forms.SelectMultiple):
|
|
"""
|
|
Select2 drop in widget for for tagging.
|
|
|
|
Example for :class:`.django.contrib.postgres.fields.ArrayField`::
|
|
|
|
class MyWidget(Select2TagWidget):
|
|
|
|
def value_from_datadict(self, data, files, name):
|
|
values = super(MyWidget, self).value_from_datadict(data, files, name):
|
|
return ",".join(values)
|
|
|
|
def optgroups(self, name, value, attrs=None):
|
|
values = value[0].split(',') if value[0] else []
|
|
selected = set(values)
|
|
subgroup = [self.create_option(name, v, v, selected, i) for i, v in enumerate(values)]
|
|
return [(None, subgroup, 0)]
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class HeavySelect2Mixin(object):
|
|
"""Mixin that adds select2's AJAX options and registers itself on Django's cache."""
|
|
|
|
dependent_fields = {}
|
|
|
|
def __init__(self, attrs=None, choices=(), **kwargs):
|
|
"""
|
|
Return HeavySelect2Mixin.
|
|
|
|
Args:
|
|
data_view (str): URL pattern name
|
|
data_url (str): URL
|
|
dependent_fields (dict): Dictionary of dependent parent fields.
|
|
The value of the dependent field will be passed as to :func:`.filter_queryset`.
|
|
It can be used to further restrict the search results. For example, a city
|
|
widget could be dependent on a country.
|
|
Key is a name of a field in a form.
|
|
Value is a name of a field in a model (used in `queryset`).
|
|
"""
|
|
self.choices = choices
|
|
if attrs is not None:
|
|
self.attrs = attrs.copy()
|
|
else:
|
|
self.attrs = {}
|
|
|
|
self.data_view = kwargs.pop('data_view', None)
|
|
self.data_url = kwargs.pop('data_url', None)
|
|
|
|
dependent_fields = kwargs.pop('dependent_fields', None)
|
|
if dependent_fields is not None:
|
|
self.dependent_fields = dict(dependent_fields)
|
|
if not (self.data_view or self.data_url):
|
|
raise ValueError('You must ether specify "data_view" or "data_url".')
|
|
self.userGetValTextFuncName = kwargs.pop('userGetValTextFuncName', 'null')
|
|
|
|
def get_url(self):
|
|
"""Return URL from instance or by reversing :attr:`.data_view`."""
|
|
if self.data_url:
|
|
return self.data_url
|
|
return reverse(self.data_view)
|
|
|
|
def build_attrs(self, *args, **kwargs):
|
|
"""Set select2's AJAX attributes."""
|
|
attrs = super(HeavySelect2Mixin, self).build_attrs(*args, **kwargs)
|
|
|
|
# encrypt instance Id
|
|
self.widget_id = signing.dumps(id(self))
|
|
|
|
attrs['data-field_id'] = self.widget_id
|
|
attrs.setdefault('data-ajax--url', self.get_url())
|
|
attrs.setdefault('data-ajax--cache', "true")
|
|
attrs.setdefault('data-ajax--type', "GET")
|
|
attrs.setdefault('data-minimum-input-length', 2)
|
|
if self.dependent_fields:
|
|
attrs.setdefault('data-select2-dependent-fields', " ".join(self.dependent_fields))
|
|
|
|
attrs['class'] += ' django-select2-heavy'
|
|
return attrs
|
|
|
|
def render(self, *args, **kwargs):
|
|
"""Render widget and register it in Django's cache."""
|
|
output = super(HeavySelect2Mixin, self).render(*args, **kwargs)
|
|
self.set_to_cache()
|
|
return output
|
|
|
|
def _get_cache_key(self):
|
|
return "%s%s" % (settings.SELECT2_CACHE_PREFIX, id(self))
|
|
|
|
def set_to_cache(self):
|
|
"""
|
|
Add widget object to Django's cache.
|
|
|
|
You may need to overwrite this method, to pickle all information
|
|
that is required to serve your JSON response view.
|
|
"""
|
|
try:
|
|
cache.set(self._get_cache_key(), {
|
|
'widget': self,
|
|
'url': self.get_url(),
|
|
})
|
|
except (PicklingError, AttributeError):
|
|
msg = "You need to overwrite \"set_to_cache\" or ensure that %s is serialisable."
|
|
raise NotImplementedError(msg % self.__class__.__name__)
|
|
|
|
|
|
class HeavySelect2Widget(HeavySelect2Mixin, Select2Widget):
|
|
"""
|
|
Select2 widget with AJAX support that registers itself to Django's Cache.
|
|
|
|
Usage example::
|
|
|
|
class MyWidget(HeavySelect2Widget):
|
|
data_view = 'my_view_name'
|
|
|
|
or::
|
|
|
|
class MyForm(forms.Form):
|
|
my_field = forms.ChoiceField(
|
|
widget=HeavySelect2Widget(
|
|
data_url='/url/to/json/response'
|
|
)
|
|
)
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class HeavySelect2MultipleWidget(HeavySelect2Mixin, Select2MultipleWidget):
|
|
"""Select2 multi select widget similar to :class:`.HeavySelect2Widget`."""
|
|
|
|
pass
|
|
|
|
|
|
class HeavySelect2TagWidget(HeavySelect2Mixin, Select2TagWidget):
|
|
"""Select2 tag widget."""
|
|
|
|
pass
|
|
|
|
|
|
# Auto Heavy widgets
|
|
|
|
|
|
class ModelSelect2Mixin(object):
|
|
"""Widget mixin that provides attributes and methods for :class:`.AutoResponseView`."""
|
|
|
|
model = None
|
|
queryset = None
|
|
search_fields = []
|
|
"""
|
|
Model lookups that are used to filter the QuerySet.
|
|
|
|
Example::
|
|
|
|
search_fields = [
|
|
'title__icontains',
|
|
]
|
|
|
|
"""
|
|
|
|
max_results = 25
|
|
"""Maximal results returned by :class:`.AutoResponseView`."""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
"""
|
|
Overwrite class parameters if passed as keyword arguments.
|
|
|
|
Args:
|
|
model (django.db.models.Model): Model to select choices from.
|
|
queryset (django.db.models.query.QuerySet): QuerySet to select choices from.
|
|
search_fields (list): List of model lookup strings.
|
|
max_results (int): Max. JsonResponse view page size.
|
|
|
|
"""
|
|
self.model = kwargs.pop('model', self.model)
|
|
self.queryset = kwargs.pop('queryset', self.queryset)
|
|
self.search_fields = kwargs.pop('search_fields', self.search_fields)
|
|
self.max_results = kwargs.pop('max_results', self.max_results)
|
|
defaults = {'data_view': 'django_select2-json'}
|
|
defaults.update(kwargs)
|
|
super(ModelSelect2Mixin, self).__init__(*args, **defaults)
|
|
|
|
def set_to_cache(self):
|
|
"""
|
|
Add widget's attributes to Django's cache.
|
|
|
|
Split the QuerySet, to not pickle the result set.
|
|
"""
|
|
queryset = self.get_queryset()
|
|
cache.set(self._get_cache_key(), {
|
|
'queryset':
|
|
[
|
|
queryset.none(),
|
|
queryset.query,
|
|
],
|
|
'cls': self.__class__,
|
|
'search_fields': self.search_fields,
|
|
'max_results': self.max_results,
|
|
'url': self.get_url(),
|
|
'dependent_fields': self.dependent_fields,
|
|
})
|
|
|
|
def filter_queryset(self, term, queryset=None, **dependent_fields):
|
|
"""
|
|
Return QuerySet filtered by search_fields matching the passed term.
|
|
|
|
Args:
|
|
term (str): Search term
|
|
queryset (django.db.models.query.QuerySet): QuerySet to select choices from.
|
|
**dependent_fields: Dependent fields and their values. If you want to inherit
|
|
from ModelSelect2Mixin and later call to this method, be sure to pop
|
|
everything from keyword arguments that is not a dependent field.
|
|
|
|
Returns:
|
|
QuerySet: Filtered QuerySet
|
|
|
|
"""
|
|
if queryset is None:
|
|
queryset = self.get_queryset()
|
|
search_fields = self.get_search_fields()
|
|
select = Q()
|
|
term = term.replace('\t', ' ')
|
|
term = term.replace('\n', ' ')
|
|
for t in [t for t in term.split(' ') if not t == '']:
|
|
select &= reduce(lambda x, y: x | Q(**{y: t}), search_fields,
|
|
Q(**{search_fields[0]: t}))
|
|
if dependent_fields:
|
|
select &= Q(**dependent_fields)
|
|
|
|
return queryset.filter(select).distinct()
|
|
|
|
def get_queryset(self):
|
|
"""
|
|
Return QuerySet based on :attr:`.queryset` or :attr:`.model`.
|
|
|
|
Returns:
|
|
QuerySet: QuerySet of available choices.
|
|
|
|
"""
|
|
if self.queryset is not None:
|
|
queryset = self.queryset
|
|
elif self.model is not None:
|
|
queryset = self.model._default_manager.all()
|
|
else:
|
|
raise NotImplementedError(
|
|
"%(cls)s is missing a QuerySet. Define "
|
|
"%(cls)s.model, %(cls)s.queryset, or override "
|
|
"%(cls)s.get_queryset()." % {
|
|
'cls': self.__class__.__name__
|
|
}
|
|
)
|
|
return queryset
|
|
|
|
def get_search_fields(self):
|
|
"""Return list of lookup names."""
|
|
if self.search_fields:
|
|
return self.search_fields
|
|
raise NotImplementedError('%s, must implement "search_fields".' % self.__class__.__name__)
|
|
|
|
def optgroups(self, name, value, attrs=None):
|
|
"""Return only selected options and set QuerySet from `ModelChoicesIterator`."""
|
|
default = (None, [], 0)
|
|
groups = [default]
|
|
has_selected = False
|
|
selected_choices = {str(v) for v in value}
|
|
if not self.is_required and not self.allow_multiple_selected:
|
|
default[1].append(self.create_option(name, '', '', False, 0))
|
|
if not isinstance(self.choices, ModelChoiceIterator):
|
|
return super(ModelSelect2Mixin, self).optgroups(name, value, attrs=attrs)
|
|
selected_choices = {
|
|
c for c in selected_choices
|
|
if c not in self.choices.field.empty_values
|
|
}
|
|
field_name = self.choices.field.to_field_name or 'pk'
|
|
query = Q(**{'%s__in' % field_name: selected_choices})
|
|
for obj in self.choices.queryset.filter(query):
|
|
option_value = self.choices.choice(obj)[0]
|
|
option_label = self.label_from_instance(obj)
|
|
|
|
selected = (
|
|
str(option_value) in value and
|
|
(has_selected is False or self.allow_multiple_selected)
|
|
)
|
|
if selected is True and has_selected is False:
|
|
has_selected = True
|
|
index = len(default[1])
|
|
subgroup = default[1]
|
|
subgroup.append(self.create_option(name, option_value, option_label, selected_choices, index))
|
|
return groups
|
|
|
|
def label_from_instance(self, obj):
|
|
"""
|
|
Return option label representation from instance.
|
|
|
|
Can be overridden to change the representation of each choice.
|
|
|
|
Example usage::
|
|
|
|
class MyWidget(ModelSelect2Widget):
|
|
def label_from_instance(obj):
|
|
return str(obj.title).upper()
|
|
|
|
Args:
|
|
obj (django.db.models.Model): Instance of Django Model.
|
|
|
|
Returns:
|
|
str: Option label.
|
|
|
|
"""
|
|
return str(obj)
|
|
|
|
|
|
class ModelSelect2Widget(ModelSelect2Mixin, HeavySelect2Widget):
|
|
"""
|
|
Select2 drop in model select widget.
|
|
|
|
Example usage::
|
|
|
|
class MyWidget(ModelSelect2Widget):
|
|
search_fields = [
|
|
'title__icontains',
|
|
]
|
|
|
|
class MyModelForm(forms.ModelForm):
|
|
class Meta:
|
|
model = MyModel
|
|
fields = ('my_field', )
|
|
widgets = {
|
|
'my_field': MyWidget,
|
|
}
|
|
|
|
or::
|
|
|
|
class MyForm(forms.Form):
|
|
my_choice = forms.ChoiceField(
|
|
widget=ModelSelect2Widget(
|
|
model=MyOtherModel,
|
|
search_fields=['title__icontains']
|
|
)
|
|
)
|
|
|
|
.. tip:: The ModelSelect2(Multiple)Widget will try
|
|
to get the QuerySet from the fields choices.
|
|
Therefore you don't need to define a QuerySet,
|
|
if you just drop in the widget for a ForeignKey field.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class ModelSelect2MultipleWidget(ModelSelect2Mixin, HeavySelect2MultipleWidget):
|
|
"""
|
|
Select2 drop in model multiple select widget.
|
|
|
|
Works just like :class:`.ModelSelect2Widget` but for multi select.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class ModelSelect2TagWidget(ModelSelect2Mixin, HeavySelect2TagWidget):
|
|
"""
|
|
Select2 model widget with tag support.
|
|
|
|
This it not a simple drop in widget.
|
|
It requires to implement you own :func:`.value_from_datadict`
|
|
that adds missing tags to you QuerySet.
|
|
|
|
Example::
|
|
|
|
class MyModelSelect2TagWidget(ModelSelect2TagWidget):
|
|
queryset = MyModel.objects.all()
|
|
|
|
def value_from_datadict(self, data, files, name):
|
|
values = super().value_from_datadict(self, data, files, name)
|
|
qs = self.queryset.filter(**{'pk__in': list(values)})
|
|
pks = set(str(getattr(o, pk)) for o in qs)
|
|
cleaned_values = []
|
|
for val in value:
|
|
if str(val) not in pks:
|
|
val = queryset.create(title=val).pk
|
|
cleaned_values.append(val)
|
|
return cleaned_values
|
|
|
|
"""
|
|
|
|
pass
|