2017-11-04 03:03:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from collections import OrderedDict
|
|
|
|
|
|
|
|
from django.utils import timezone
|
2019-04-14 20:32:46 +00:00
|
|
|
from django.utils.translation import gettext as _
|
2017-11-04 03:03:24 +00:00
|
|
|
|
|
|
|
import pandas as pd
|
|
|
|
import plotly.offline as plotly
|
|
|
|
import plotly.graph_objs as go
|
|
|
|
|
|
|
|
from core.utils import duration_string
|
|
|
|
|
|
|
|
from reports import utils
|
|
|
|
|
|
|
|
|
|
|
|
def sleep_pattern(instances):
|
|
|
|
"""
|
|
|
|
Create a graph showing blocked out periods of sleep during each day.
|
|
|
|
:param instances: a QuerySet of Sleep instances.
|
|
|
|
:returns: a tuple of the the graph's html and javascript.
|
|
|
|
"""
|
|
|
|
# TODO: Simplify this using the bar charts "base" property.
|
|
|
|
y_df = pd.DataFrame()
|
|
|
|
text_df = pd.DataFrame()
|
|
|
|
last_end_time = None
|
|
|
|
adjustment = None
|
|
|
|
df_index = 0
|
|
|
|
for instance in instances:
|
|
|
|
start_time = timezone.localtime(instance.start)
|
|
|
|
end_time = timezone.localtime(instance.end)
|
|
|
|
start_date = start_time.date().isoformat()
|
|
|
|
duration = instance.duration
|
|
|
|
|
|
|
|
# Check if the previous entry crossed midnight (see below).
|
|
|
|
if adjustment:
|
|
|
|
# Fake (0) entry to keep the color switching logic working.
|
|
|
|
df_index = _add_sleep_entry(
|
|
|
|
y_df, text_df, 0, adjustment['column'], 0)
|
|
|
|
# Real adjustment entry.
|
|
|
|
df_index = _add_sleep_entry(
|
|
|
|
y_df,
|
|
|
|
text_df,
|
|
|
|
df_index,
|
|
|
|
adjustment['column'],
|
|
|
|
adjustment['duration'].seconds/60,
|
|
|
|
'Asleep {} ({} to {})'.format(
|
|
|
|
duration_string(adjustment['duration']),
|
|
|
|
adjustment['start_time'].strftime('%I:%M %p'),
|
|
|
|
adjustment['end_time'].strftime('%I:%M %p')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
last_end_time = timezone.localtime(adjustment['end_time'])
|
|
|
|
adjustment = None
|
|
|
|
|
|
|
|
# If the dates do not match, set up an adjustment for the next day.
|
|
|
|
if end_time.date() != start_time.date():
|
|
|
|
adj_start_time = end_time.replace(hour=0, minute=0, second=0)
|
|
|
|
adjustment = {
|
|
|
|
'column': end_time.date().isoformat(),
|
|
|
|
'start_time': adj_start_time,
|
|
|
|
'end_time': end_time,
|
|
|
|
'duration': end_time - adj_start_time
|
|
|
|
}
|
|
|
|
|
|
|
|
# Adjust end_time for the current entry.
|
|
|
|
end_time = end_time.replace(
|
|
|
|
year=start_time.year, month=start_time.month,
|
|
|
|
day=start_time.day, hour=23, minute=59, second=0)
|
|
|
|
duration = end_time - start_time
|
|
|
|
|
|
|
|
if start_date not in y_df:
|
|
|
|
last_end_time = start_time.replace(hour=0, minute=0, second=0)
|
|
|
|
|
|
|
|
# Awake time.
|
|
|
|
df_index = _add_sleep_entry(
|
|
|
|
y_df,
|
|
|
|
text_df,
|
|
|
|
df_index,
|
|
|
|
start_date,
|
|
|
|
(start_time - last_end_time).seconds/60
|
|
|
|
)
|
|
|
|
|
|
|
|
# Asleep time.
|
|
|
|
df_index = _add_sleep_entry(
|
|
|
|
y_df,
|
|
|
|
text_df,
|
|
|
|
df_index,
|
|
|
|
start_date,
|
|
|
|
duration.seconds/60,
|
|
|
|
'Asleep {} ({} to {})'.format(
|
|
|
|
duration_string(duration),
|
|
|
|
start_time.strftime('%I:%M %p'),
|
|
|
|
end_time.strftime('%I:%M %p')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2017-11-07 11:23:19 +00:00
|
|
|
# Update the previous entry duration if an offset change occurred.
|
|
|
|
# This can happen when an entry crosses a daylight savings time change.
|
|
|
|
if start_time.utcoffset() != end_time.utcoffset():
|
|
|
|
diff = start_time.utcoffset() - end_time.utcoffset()
|
|
|
|
duration -= timezone.timedelta(seconds=diff.seconds)
|
2017-11-18 12:42:48 +00:00
|
|
|
y_df.at[df_index - 1, start_date] = duration.seconds/60
|
2017-11-07 11:23:19 +00:00
|
|
|
|
2017-11-04 03:03:24 +00:00
|
|
|
last_end_time = end_time
|
|
|
|
|
|
|
|
dates = list(y_df)
|
|
|
|
traces = []
|
|
|
|
color = 'rgba(255, 255, 255, 0)'
|
|
|
|
for index, row in y_df.iterrows():
|
|
|
|
traces.append(go.Bar(
|
|
|
|
x=dates,
|
|
|
|
y=row,
|
2019-08-23 03:12:35 +00:00
|
|
|
text=text_df.iloc[index],
|
2017-11-04 03:03:24 +00:00
|
|
|
hoverinfo='text',
|
|
|
|
marker={'color': color},
|
2020-03-17 12:42:24 +00:00
|
|
|
marker_line_width=0,
|
2017-11-04 03:03:24 +00:00
|
|
|
showlegend=False,
|
|
|
|
))
|
|
|
|
if color == 'rgba(255, 255, 255, 0)':
|
|
|
|
color = 'rgb(35, 110, 150)'
|
|
|
|
else:
|
|
|
|
color = 'rgba(255, 255, 255, 0)'
|
|
|
|
|
|
|
|
layout_args = utils.default_graph_layout_options()
|
|
|
|
layout_args['margin']['b'] = 100
|
|
|
|
|
|
|
|
layout_args['barmode'] = 'stack'
|
2020-03-17 12:42:24 +00:00
|
|
|
layout_args['bargap'] = 0
|
2017-11-04 03:03:24 +00:00
|
|
|
layout_args['hovermode'] = 'closest'
|
2019-04-14 20:32:46 +00:00
|
|
|
layout_args['title'] = _('<b>Sleep Pattern</b>')
|
2017-11-04 03:03:24 +00:00
|
|
|
layout_args['height'] = 800
|
|
|
|
|
2019-04-14 20:32:46 +00:00
|
|
|
layout_args['xaxis']['title'] = _('Date')
|
2017-11-04 03:03:24 +00:00
|
|
|
layout_args['xaxis']['tickangle'] = -65
|
|
|
|
layout_args['xaxis']['rangeselector'] = utils.rangeselector_date()
|
|
|
|
|
|
|
|
start = timezone.localtime().strptime('12:00 AM', '%I:%M %p')
|
|
|
|
ticks = OrderedDict()
|
|
|
|
ticks[0] = start.strftime('%I:%M %p')
|
|
|
|
for i in range(30, 60*24, 30):
|
|
|
|
ticks[i] = (start + timezone.timedelta(minutes=i)).strftime('%I:%M %p')
|
|
|
|
|
2019-04-14 20:32:46 +00:00
|
|
|
layout_args['yaxis']['title'] = _('Time of day')
|
2020-03-17 12:42:24 +00:00
|
|
|
layout_args['yaxis']['range'] = [0, 24*60]
|
2017-11-04 03:03:24 +00:00
|
|
|
layout_args['yaxis']['tickmode'] = 'array'
|
|
|
|
layout_args['yaxis']['tickvals'] = list(ticks.keys())
|
|
|
|
layout_args['yaxis']['ticktext'] = list(ticks.values())
|
|
|
|
layout_args['yaxis']['tickfont'] = {'size': 10}
|
|
|
|
|
|
|
|
fig = go.Figure({
|
|
|
|
'data': traces,
|
|
|
|
'layout': go.Layout(**layout_args)
|
|
|
|
})
|
|
|
|
output = plotly.plot(fig, output_type='div', include_plotlyjs=False)
|
|
|
|
return utils.split_graph_output(output)
|
|
|
|
|
|
|
|
|
|
|
|
def _add_sleep_entry(y_df, text_df, index, column, duration, text=''):
|
|
|
|
"""
|
|
|
|
Create a duration and text description entry in a DataFrame and return
|
|
|
|
the next index on success.
|
|
|
|
:param y_df: the y values DataFrame.
|
|
|
|
:param text_df: the text values DataFrame.
|
|
|
|
:param index: the index to target in both y_df and text_df.
|
|
|
|
:param column: the column (date) to make the entry in.
|
|
|
|
:param duration: the duration of the entry.
|
|
|
|
:param text: text to go with the entry (displays on graph hover).
|
|
|
|
:return: the next index of the DataFrames.
|
|
|
|
"""
|
|
|
|
if column not in y_df:
|
|
|
|
y_df.assign(**{column: 0 in range(0, len(y_df.index))})
|
|
|
|
text_df.assign(**{column: 0 in range(0, len(text_df.index))})
|
|
|
|
index = 0
|
|
|
|
|
2017-11-18 12:42:48 +00:00
|
|
|
y_df.at[index, column] = duration
|
|
|
|
text_df.at[index, column] = text
|
2017-11-04 03:03:24 +00:00
|
|
|
return index + 1
|