New chart plugin

pull/1350/head
Diego Acuña 2023-06-03 17:26:22 -04:00
rodzic e0747ab9ae
commit 3316d1c3a8
6 zmienionych plików z 256 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1 @@
from .plugin import *

Wyświetl plik

@ -0,0 +1,16 @@
{
"name": "Projects and tasks charts Plugin",
"webodmMinVersion": "0.1.0",
"description": "A plugin to show charts of projects and tasks",
"version": "0.1.0",
"author": "Diego Acuña, Greenbot Labs",
"email": "dacuna@greenbot.cl",
"repository": "https://github.com/OpenDroneMap/WebODM",
"tags": [
"plugin",
"charts"
],
"homepage": "https://github.com/OpenDroneMap/WebODM",
"experimental": false,
"deprecated": false
}

Wyświetl plik

@ -0,0 +1,93 @@
from datetime import datetime
from django import forms
from django.contrib.auth.decorators import login_required
from django.db.models import Count
from django.db.models.functions import TruncMonth
from django.shortcuts import render
from django.utils.translation import gettext as _
from app.models import Project, Task
from app.plugins import PluginBase, Menu, MountPoint
def get_first_year():
project = Project.objects.order_by('created_at').first()
if project:
return project.created_at.year
else:
return datetime.now().year
def get_last_year():
project = Project.objects.order_by('created_at').last()
if project:
return project.created_at.year
else:
return datetime.now().year
year_choices = [(r, r) for r in
range(get_first_year(), get_last_year() + 1)]
class ProjectForm(forms.Form):
year = forms.IntegerField(label='Year',
widget=forms.Select(choices=year_choices, attrs={'class': 'form-control'},
))
def get_projects_by_month(year=datetime.now().year):
return Project.objects.filter(created_at__year=year).annotate(
month=TruncMonth('created_at')).values('month').annotate(
c=Count('id')).values_list('month', 'c').order_by('month')
def get_tasks_by_month(year):
return Task.objects.filter(created_at__year=year).annotate(
month=TruncMonth('created_at')).values('month').annotate(
c=Count('id')).values_list('month', 'c').order_by('month')
class Plugin(PluginBase):
def main_menu(self):
return [Menu(_("Charts"), self.public_url(""), "fa fa-chart-bar")]
def include_js_files(self):
return ['Chart.min.js']
def app_mount_points(self):
@login_required
def index(request):
list_count_projects_by_month = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
list_count_tasks_by_month = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
year = datetime.now().year
form = ProjectForm(request.GET)
if request.method == "GET":
if form.is_valid():
date = request.GET.get('year')
year = date.split('-')[0]
else:
form = ProjectForm(initial={'year': year})
for i in get_projects_by_month(year):
list_count_projects_by_month.insert(i[0].month - 1, i[1])
for i in get_tasks_by_month(year):
list_count_tasks_by_month.insert(i[0].month - 1, i[1])
template_args = {
'form': form,
'projects_by_month': list_count_projects_by_month,
'tasks_by_month': list_count_tasks_by_month,
'title': 'Charts',
'months': ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September',
'October', 'November', 'December']
}
return render(request, self.template_path("index.html"), template_args)
return [
MountPoint('$', index)
]

File diff suppressed because one or more lines are too long

Wyświetl plik

@ -0,0 +1,126 @@
{% extends "app/plugins/templates/base.html" %}
{% load i18n %}
{% block content %}
<div class="row text-center">
<div class="col-md-12 col-sm-12">
<h4>{% trans 'Projects' %}</h4>
<form action="/plugins/projects-charts/" method="get" class="mt-6">
<div class="row">
<div class="col-sm-4">
<label for="year">{% trans 'Year' %}</label>
</div>
{% for field in form %}
<div class="col-sm-4">
{{ field }}
{% endfor %}
</div>
<div class="col-sm-4">
{{ form.non_field_errors }}
<input type="submit" value="{% trans 'Next' %}" class="btn btn-primary"/>
</div>
</div>
</form>
<div class="col-md-12 col-sm-12">
<div style="width: 80%; margin-left: 10%;">
<canvas id="projectsChart" width="200" height="50" style="margin-bottom: 12px;"></canvas>
</div>
</div>
<div style="width: 80%; margin-left: 10%;">
<canvas id="tasksChart" width="200" height="50" style="margin-bottom: 12px;"></canvas>
</div>
</div>
</div>
<script>
(function () {
const ctx = document.getElementById('projectsChart').getContext('2d');
new Chart(ctx, {
type: 'bar',
options: {
tooltip: {
enabled: false,
},
scales: {
y: {
beginAtZero: true,
ticks: {
stepSize: 1
},
}
}
},
data: {
labels: [
{% for month in months %}
"{{ month }}",
{% endfor %}
],
datasets: [
{
label: "{% trans 'Projects by month' %}",
data: [{{ projects_by_month|join:", " }}],
backgroundColor: [
{% for _ in projects_by_month %}
'rgba(54, 162, 235, 0.4)',
{% endfor %}
],
},
]
},
});
})();
(function () {
const ctx = document.getElementById('tasksChart').getContext('2d');
new Chart(ctx, {
type: 'bar',
options: {
tooltip: {
enabled: false,
},
scales: {
y: {
beginAtZero: true,
ticks: {
stepSize: 1
},
}
}
},
data: {
labels: [
{% for month in months %}
"{{ month }}",
{% endfor %}
],
datasets: [
{
label: "{% trans 'Tasks by month' %}",
data: [{{ tasks_by_month|join:", " }}],
backgroundColor: [
{% for _ in tasks_by_month %}
'rgba(54, 162, 235, 0.4)',
{% endfor %}
],
},
]
},
});
})();
</script>
{% endblock %}