2017-08-21 23:21:08 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from django.views.generic.detail import DetailView
|
|
|
|
|
2018-05-20 21:40:09 +00:00
|
|
|
from babybuddy.mixins import PermissionRequired403Mixin
|
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
|
|
|
|
|
|
|
|
2018-05-20 21:40:09 +00:00
|
|
|
class DiaperChangeLifetimesChildReport(PermissionRequired403Mixin, DetailView):
|
2017-10-28 00:46:48 +00:00
|
|
|
"""
|
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)
|
2017-10-28 00:46:48 +00:00
|
|
|
if changes and changes.count() > 1:
|
2019-05-29 16:47:21 +00:00
|
|
|
context['html'], context['js'] = \
|
2017-11-10 12:20:34 +00:00
|
|
|
graphs.diaperchange_lifetimes(changes)
|
2017-09-25 17:14:14 +00:00
|
|
|
return context
|
2017-08-23 13:04:05 +00:00
|
|
|
|
2017-08-24 18:54:01 +00:00
|
|
|
|
2018-05-20 21:40:09 +00:00
|
|
|
class DiaperChangeTypesChildReport(PermissionRequired403Mixin, DetailView):
|
2017-10-28 00:46:48 +00:00
|
|
|
"""
|
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'
|
2017-08-23 01:37:10 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2017-09-15 12:11:41 +00:00
|
|
|
context = super(DiaperChangeTypesChildReport, self).get_context_data(
|
|
|
|
**kwargs)
|
2017-08-23 01:37:10 +00:00
|
|
|
child = context['object']
|
2017-11-10 12:20:34 +00:00
|
|
|
changes = models.DiaperChange.objects.filter(child=child)
|
2017-10-28 00:46:48 +00:00
|
|
|
if changes:
|
2019-05-29 16:47:21 +00:00
|
|
|
context['html'], context['js'] = \
|
2017-11-10 12:20:34 +00:00
|
|
|
graphs.diaperchange_types(changes)
|
2017-08-24 18:54:01 +00:00
|
|
|
return context
|
2017-08-23 01:37:10 +00:00
|
|
|
|
|
|
|
|
2019-05-29 17:05:30 +00:00
|
|
|
class FeedingAmountsChildReport(PermissionRequired403Mixin, DetailView):
|
|
|
|
"""
|
|
|
|
Graph of daily feeding amounts over time.
|
|
|
|
"""
|
|
|
|
model = models.Child
|
|
|
|
permission_required = ('core.view_child',)
|
|
|
|
template_name = 'reports/feeding_amounts.html'
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super(FeedingAmountsChildReport, self).__init__()
|
|
|
|
self.html = ''
|
|
|
|
self.js = ''
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(FeedingAmountsChildReport, self).get_context_data(
|
|
|
|
**kwargs)
|
|
|
|
child = context['object']
|
|
|
|
instances = models.Feeding.objects.filter(child=child)
|
|
|
|
if instances:
|
|
|
|
context['html'], context['js'] = graphs.feeding_amounts(instances)
|
|
|
|
return context
|
|
|
|
|
|
|
|
|
2018-05-20 21:40:09 +00:00
|
|
|
class FeedingDurationChildReport(PermissionRequired403Mixin, DetailView):
|
2017-11-30 02:28:54 +00:00
|
|
|
"""
|
|
|
|
Graph of feeding durations over time.
|
|
|
|
"""
|
|
|
|
model = models.Child
|
|
|
|
permission_required = ('core.view_child',)
|
|
|
|
template_name = 'reports/feeding_duration.html'
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super(FeedingDurationChildReport, self).__init__()
|
|
|
|
self.html = ''
|
2019-05-29 17:05:30 +00:00
|
|
|
self.js = ''
|
2017-11-30 02:28:54 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(FeedingDurationChildReport, self).get_context_data(
|
|
|
|
**kwargs)
|
|
|
|
child = context['object']
|
|
|
|
instances = models.Feeding.objects.filter(child=child)
|
|
|
|
if instances:
|
2019-05-29 16:47:21 +00:00
|
|
|
context['html'], context['js'] = graphs.feeding_duration(instances)
|
2017-11-30 02:28:54 +00:00
|
|
|
return context
|
|
|
|
|
|
|
|
|
2018-05-20 21:40:09 +00:00
|
|
|
class SleepPatternChildReport(PermissionRequired403Mixin, DetailView):
|
2017-10-28 00:46:48 +00:00
|
|
|
"""
|
2017-11-10 12:20:34 +00:00
|
|
|
Graph of sleep pattern comparing sleep to wake times by day.
|
|
|
|
"""
|
|
|
|
model = models.Child
|
2017-08-23 13:04:05 +00:00
|
|
|
permission_required = ('core.view_child',)
|
2017-09-13 15:25:12 +00:00
|
|
|
template_name = 'reports/sleep_pattern.html'
|
2017-08-25 16:19:06 +00:00
|
|
|
|
|
|
|
def __init__(self):
|
2017-09-13 15:25:12 +00:00
|
|
|
super(SleepPatternChildReport, self).__init__()
|
2017-08-25 16:19:06 +00:00
|
|
|
self.html = ''
|
2019-05-29 17:05:30 +00:00
|
|
|
self.js = ''
|
2017-08-25 16:19:06 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2017-09-15 12:11:41 +00:00
|
|
|
context = super(SleepPatternChildReport, self).get_context_data(
|
|
|
|
**kwargs)
|
2017-08-25 16:19:06 +00:00
|
|
|
child = context['object']
|
2017-11-10 12:20:34 +00:00
|
|
|
instances = models.Sleep.objects.filter(child=child).order_by('start')
|
2017-10-28 00:46:48 +00:00
|
|
|
if instances:
|
2019-05-29 16:47:21 +00:00
|
|
|
context['html'], context['js'] = graphs.sleep_pattern(instances)
|
2017-08-25 16:19:06 +00:00
|
|
|
return context
|
2017-09-13 15:53:32 +00:00
|
|
|
|
|
|
|
|
2018-05-20 21:40:09 +00:00
|
|
|
class SleepTotalsChildReport(PermissionRequired403Mixin, DetailView):
|
2017-10-28 00:46:48 +00:00
|
|
|
"""
|
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 = ''
|
2019-05-29 17:05:30 +00:00
|
|
|
self.js = ''
|
2017-09-13 15:53:32 +00:00
|
|
|
|
|
|
|
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')
|
2017-10-28 00:46:48 +00:00
|
|
|
if instances:
|
2019-05-29 16:47:21 +00:00
|
|
|
context['html'], context['js'] = graphs.sleep_totals(instances)
|
2017-11-10 12:20:34 +00:00
|
|
|
return context
|
|
|
|
|
|
|
|
|
2018-05-20 21:42:14 +00:00
|
|
|
class WeightWeightChildReport(PermissionRequired403Mixin, DetailView):
|
2017-11-10 12:20:34 +00:00
|
|
|
"""
|
|
|
|
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):
|
2018-05-20 21:42:14 +00:00
|
|
|
context = super(WeightWeightChildReport, self).get_context_data(
|
2017-11-10 12:20:34 +00:00
|
|
|
**kwargs)
|
|
|
|
child = context['object']
|
|
|
|
objects = models.Weight.objects.filter(child=child)
|
|
|
|
if objects:
|
2019-05-29 16:47:21 +00:00
|
|
|
context['html'], context['js'] = graphs.weight_weight(objects)
|
2017-09-13 15:53:32 +00:00
|
|
|
return context
|