mybuddy/reports/views.py

115 lines
3.7 KiB
Python
Raw Normal View History

2017-08-21 23:21:08 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.contrib.auth.mixins import PermissionRequiredMixin
from django.views.generic.detail import DetailView
2017-11-10 12:20:34 +00:00
from core import models
2017-08-21 23:21:08 +00:00
2017-11-10 12:20:34 +00:00
from . import graphs
2017-09-25 17:14:14 +00:00
class DiaperChangeLifetimesChildReport(PermissionRequiredMixin, DetailView):
"""
2017-11-10 12:20:34 +00:00
Graph of diaper "lifetimes" - time between diaper changes.
"""
model = models.Child
2017-09-25 17:14:14 +00:00
permission_required = ('core.view_child',)
template_name = 'reports/diaperchange_lifetimes.html'
def get_context_data(self, **kwargs):
2017-10-22 19:05:58 +00:00
context = super(
DiaperChangeLifetimesChildReport, self).get_context_data(**kwargs)
2017-09-25 17:14:14 +00:00
child = context['object']
2017-11-10 12:20:34 +00:00
changes = models.DiaperChange.objects.filter(child=child)
if changes and changes.count() > 1:
2017-11-10 12:20:34 +00:00
context['html'], context['javascript'] = \
graphs.diaperchange_lifetimes(changes)
2017-09-25 17:14:14 +00:00
return context
2017-09-13 15:25:12 +00:00
class DiaperChangeTypesChildReport(PermissionRequiredMixin, DetailView):
"""
2017-11-10 12:20:34 +00:00
Graph of diaper changes by day and type.
"""
model = models.Child
2017-08-21 23:21:08 +00:00
permission_required = ('core.view_child',)
2017-09-13 15:25:12 +00:00
template_name = 'reports/diaperchange_types.html'
def get_context_data(self, **kwargs):
2017-09-15 12:11:41 +00:00
context = super(DiaperChangeTypesChildReport, self).get_context_data(
**kwargs)
child = context['object']
2017-11-10 12:20:34 +00:00
changes = models.DiaperChange.objects.filter(child=child)
if changes:
2017-11-10 12:20:34 +00:00
context['html'], context['javascript'] = \
graphs.diaperchange_types(changes)
return context
2017-09-13 15:25:12 +00:00
class SleepPatternChildReport(PermissionRequiredMixin, DetailView):
"""
2017-11-10 12:20:34 +00:00
Graph of sleep pattern comparing sleep to wake times by day.
"""
model = models.Child
permission_required = ('core.view_child',)
2017-09-13 15:25:12 +00:00
template_name = 'reports/sleep_pattern.html'
def __init__(self):
2017-09-13 15:25:12 +00:00
super(SleepPatternChildReport, self).__init__()
self.html = ''
self.javascript = ''
def get_context_data(self, **kwargs):
2017-09-15 12:11:41 +00:00
context = super(SleepPatternChildReport, self).get_context_data(
**kwargs)
child = context['object']
2017-11-10 12:20:34 +00:00
instances = models.Sleep.objects.filter(child=child).order_by('start')
if instances:
2017-11-10 12:20:34 +00:00
context['html'], context['javascript'] = \
graphs.sleep_pattern(instances)
return context
2017-09-13 15:53:32 +00:00
class SleepTotalsChildReport(PermissionRequiredMixin, DetailView):
"""
2017-11-10 12:20:34 +00:00
Graph of total sleep by day.
"""
model = models.Child
2017-09-13 15:53:32 +00:00
permission_required = ('core.view_child',)
template_name = 'reports/sleep_totals.html'
def __init__(self):
super(SleepTotalsChildReport, self).__init__()
self.html = ''
self.javascript = ''
def get_context_data(self, **kwargs):
2017-09-15 12:11:41 +00:00
context = super(SleepTotalsChildReport, self).get_context_data(
**kwargs)
2017-09-13 15:53:32 +00:00
child = context['object']
2017-11-10 12:20:34 +00:00
instances = models.Sleep.objects.filter(child=child).order_by('start')
if instances:
2017-11-10 12:20:34 +00:00
context['html'], context['javascript'] = \
graphs.sleep_totals(instances)
return context
class WeightWeightChildReoport(PermissionRequiredMixin, DetailView):
"""
Graph of weight change over time.
"""
model = models.Child
permission_required = ('core.view_child',)
template_name = 'reports/weight_change.html'
def get_context_data(self, **kwargs):
context = super(WeightWeightChildReoport, self).get_context_data(
**kwargs)
child = context['object']
objects = models.Weight.objects.filter(child=child)
if objects:
context['html'], context['javascript'] = \
graphs.weight_weight(objects)
2017-09-13 15:53:32 +00:00
return context