Source code for dal_queryset_sequence.views

"""View that supports QuerySetSequence."""

from dal.views import BaseQuerySetView

from django.contrib.contenttypes.models import ContentType

from queryset_sequence import QuerySetSequence


[docs]class BaseQuerySetSequenceView(BaseQuerySetView): """ Base view that uses a QuerySetSequence. Compatible with form fields which use a ContentType id as well as a model pk to identify a value. """ mixup = True paginate_by = 10
[docs] def get_paginate_by(self, queryset): """Don't paginate if :py:attr:`mixup`.""" return self.paginate_by if not self.mixup else None
[docs] def has_more(self, context): """Return False if :py:attr:`mixup`.""" if self.mixup: return False return super(BaseQuerySetSequenceView, self).has_more(context)
[docs] def mixup_querysets(self, qs): """Return a queryset with different model types.""" if len(list(qs.query._querysets)): limit = int(self.paginate_by / len(qs.query._querysets)) qs.query._querysets[0][:2] qs = QuerySetSequence(*[q[:limit] for q in qs.query._querysets]) return qs
[docs] def get_queryset(self): """Mix results from all querysets in QuerySetSequence if self.mixup.""" qs = super(BaseQuerySetSequenceView, self).get_queryset() if self.mixup: qs = self.mixup_querysets(qs) return qs
[docs] def get_result_value(self, result): """Return ctypeid-objectid for result.""" return '%s-%s' % (ContentType.objects.get_for_model(result).pk, result.pk)