Add dashboard app

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-04-13 02:35:40 -04:00
parent e2b5817d18
commit 0015ad4abe
18 changed files with 133 additions and 99 deletions

View File

@@ -42,6 +42,7 @@
* Backport and remove unused code from the permission app.
* Move the navigation and authentication templates to their
respective apps.
* Add dashboard app.
3.1.11 (2019-04-XX)
===================

View File

@@ -66,6 +66,7 @@ Other changes
* Backport and remove unused code from the permission app.
* Move the navigation and authentication templates to their
respective apps.
* Add dashboard app.
Removals

View File

@@ -4,6 +4,7 @@
{% load static %}
{% load common_tags %}
{% load dashboards_tags %}
{% load navigation_tags %}
{% block title %}{% trans 'Dashboard' %}{% endblock %}

View File

@@ -10,7 +10,7 @@ from django.utils.translation import ugettext_lazy as _
from mayan.apps.acls import ModelPermission
from mayan.apps.common import MayanAppConfig, menu_facet, menu_main, menu_sidebar
from mayan.apps.common.dashboards import dashboard_main
from mayan.apps.dashboards.dashboards import dashboard_main
from mayan.apps.events import ModelEventType
from mayan.celery import app

View File

@@ -4,7 +4,7 @@ from django.apps import apps
from django.urls import reverse_lazy
from django.utils.translation import ugettext_lazy as _
from mayan.apps.common.classes import DashboardWidgetNumeric
from mayan.apps.dashboards.classes import DashboardWidgetNumeric
from mayan.apps.documents.permissions import permission_document_view
from .icons import icon_dashboard_check_outs

View File

@@ -53,95 +53,6 @@ class Collection(object):
return self._model.objects.all()
class Dashboard(object):
_registry = {}
@classmethod
def get(cls, name):
return cls._registry[name]
def __init__(self, name, label):
self.name = name
self.label = label
self.widgets = {}
self.removed_widgets = []
self.__class__._registry[name] = self
def add_widget(self, widget, order=0):
self.widgets[widget] = {'widget': widget, 'order': order}
def get_widgets(self):
"""
Returns a list of widgets sorted by their 'order'.
If two or more widgets have the same 'order', sort by label.
"""
return map(
lambda x: x['widget'],
filter(
lambda x: x['widget'] not in self.removed_widgets,
sorted(
self.widgets.values(),
key=lambda x: (x['order'], x['widget'].label)
)
)
)
def remove_widget(self, widget):
self.removed_widgets.append(widget)
def render(self, request):
rendered_widgets = [widget().render(request=request) for widget in self.get_widgets()]
return loader.render_to_string(
template_name='dashboard/dashboard.html', context={
'widgets': rendered_widgets
}
)
class BaseDashboardWidget(object):
_registry = {}
context = {}
template_name = None
@classmethod
def get(cls, name):
return cls._registry[name]
@classmethod
def get_all(cls):
return cls._registry.items()
@classmethod
def register(cls, klass):
cls._registry[klass.name] = klass
def get_context(self):
return self.context
def render(self, request):
if self.template_name:
return loader.render_to_string(
template_name=self.template_name, context=self.get_context(),
)
class DashboardWidgetNumeric(BaseDashboardWidget):
count = 0
icon_class = None
label = None
link = None
template_name = 'dashboard/numeric_widget.html'
def get_context(self):
return {
'count': self.count,
'icon_class': self.icon_class,
'label': self.label,
'link': self.link,
}
@python_2_unicode_compatible
class ErrorLogNamespace(object):
def __init__(self, name, label=None):

View File

@@ -8,7 +8,7 @@ from django.utils.encoding import force_text
import mayan
from ..classes import Collection, Dashboard
from ..classes import Collection
from ..literals import MESSAGE_SQLITE_WARNING
from ..utils import check_for_sqlite, return_attrib
@@ -49,11 +49,6 @@ def project_information(attribute_name):
return getattr(mayan, attribute_name)
@register.simple_tag(takes_context=True)
def render_dashboard(context, name):
return Dashboard.get(name=name).render(request=context.request)
@register.simple_tag(takes_context=True)
def render_subtemplate(context, template_name, template_context):
"""

View File

@@ -0,0 +1,3 @@
from __future__ import unicode_literals
default_app_config = 'mayan.apps.dashboards.apps.DashboardsApp'

View File

@@ -0,0 +1,15 @@
from __future__ import unicode_literals
from django.utils.translation import ugettext_lazy as _
from mayan.apps.common import MayanAppConfig
class DashboardsApp(MayanAppConfig):
app_namespace = 'dashboards'
app_url = 'dashboards'
has_rest_api = False
has_tests = False
name = 'mayan.apps.dashboards'
verbose_name = _('Dashboards')

View File

@@ -0,0 +1,92 @@
from __future__ import unicode_literals
from django.template import loader
class Dashboard(object):
_registry = {}
@classmethod
def get(cls, name):
return cls._registry[name]
def __init__(self, name, label):
self.name = name
self.label = label
self.widgets = {}
self.removed_widgets = []
self.__class__._registry[name] = self
def add_widget(self, widget, order=0):
self.widgets[widget] = {'widget': widget, 'order': order}
def get_widgets(self):
"""
Returns a list of widgets sorted by their 'order'.
If two or more widgets have the same 'order', sort by label.
"""
return map(
lambda x: x['widget'],
filter(
lambda x: x['widget'] not in self.removed_widgets,
sorted(
self.widgets.values(),
key=lambda x: (x['order'], x['widget'].label)
)
)
)
def remove_widget(self, widget):
self.removed_widgets.append(widget)
def render(self, request):
rendered_widgets = [widget().render(request=request) for widget in self.get_widgets()]
return loader.render_to_string(
template_name='dashboards/dashboard.html', context={
'widgets': rendered_widgets
}
)
class BaseDashboardWidget(object):
_registry = {}
context = {}
template_name = None
@classmethod
def get(cls, name):
return cls._registry[name]
@classmethod
def get_all(cls):
return cls._registry.items()
@classmethod
def register(cls, klass):
cls._registry[klass.name] = klass
def get_context(self):
return self.context
def render(self, request):
if self.template_name:
return loader.render_to_string(
template_name=self.template_name, context=self.get_context(),
)
class DashboardWidgetNumeric(BaseDashboardWidget):
count = 0
icon_class = None
label = None
link = None
template_name = 'dashboards/numeric_widget.html'
def get_context(self):
return {
'count': self.count,
'icon_class': self.icon_class,
'label': self.label,
'link': self.link,
}

View File

@@ -5,3 +5,4 @@ from django.utils.translation import ugettext_lazy as _
from .classes import Dashboard
dashboard_main = Dashboard(name='main', label=_('Main'))

View File

@@ -0,0 +1,13 @@
from __future__ import unicode_literals
from django.template import Library
from ..classes import Dashboard
register = Library()
@register.simple_tag(takes_context=True)
def render_dashboard(context, name):
return Dashboard.get(name=name).render(request=context.request)

View File

@@ -15,9 +15,9 @@ from mayan.apps.common import (
menu_secondary, menu_setup, menu_sidebar, menu_multi_item, menu_tools
)
from mayan.apps.common.classes import ModelField
from mayan.apps.common.dashboards import dashboard_main
from mayan.apps.common.signals import post_initial_setup
from mayan.apps.common.widgets import TwoStateWidget
from mayan.apps.dashboards.dashboards import dashboard_main
from mayan.apps.converter.links import link_transformation_list
from mayan.apps.converter.permissions import (
permission_transformation_create,

View File

@@ -4,7 +4,7 @@ from django.apps import apps
from django.urls import reverse_lazy
from django.utils.translation import ugettext_lazy as _
from mayan.apps.common.classes import DashboardWidgetNumeric
from mayan.apps.dashboards.classes import DashboardWidgetNumeric
from .icons import (
icon_dashboard_documents_in_trash, icon_dashboard_document_types,

View File

@@ -92,6 +92,7 @@ INSTALLED_APPS = (
'mayan.apps.authentication',
'mayan.apps.common',
'mayan.apps.converter',
'mayan.apps.dashboards',
'mayan.apps.django_gpg',
'mayan.apps.dynamic_search',
'mayan.apps.events',