- Show only unread notification on the badge. Signed-off-by: Eric Riggs <ericriggs42@gmail.com>
77 lines
2.5 KiB
Python
77 lines
2.5 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import apps
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from navigation import Link
|
|
|
|
from .permissions import permission_events_view
|
|
|
|
|
|
def get_kwargs_factory(variable_name):
|
|
def get_kwargs(context):
|
|
ContentType = apps.get_model(
|
|
app_label='contenttypes', model_name='ContentType'
|
|
)
|
|
|
|
content_type = ContentType.objects.get_for_model(
|
|
context[variable_name]
|
|
)
|
|
return {
|
|
'app_label': '"{}"'.format(content_type.app_label),
|
|
'model': '"{}"'.format(content_type.model),
|
|
'object_id': '{}.pk'.format(variable_name)
|
|
}
|
|
|
|
return get_kwargs
|
|
|
|
|
|
def get_notification_count(context):
|
|
return context['request'].user.notifications.filter(read=False).count()
|
|
|
|
|
|
link_events_list = Link(
|
|
icon='fa fa-list-ol', permissions=(permission_events_view,),
|
|
text=_('Events'), view='events:events_list'
|
|
)
|
|
link_events_details = Link(
|
|
text=_('Events'), view='events:events_list'
|
|
)
|
|
link_events_for_object = Link(
|
|
icon='fa fa-list-ol', permissions=(permission_events_view,),
|
|
text=_('Events'), view='events:events_for_object',
|
|
kwargs=get_kwargs_factory('resolved_object')
|
|
)
|
|
link_event_types_subscriptions_list = Link(
|
|
icon='fa fa-list-ol', text=_('Event subscriptions'),
|
|
view='events:event_types_user_subcriptions_list'
|
|
)
|
|
link_notification_mark_read = Link(
|
|
args='object.pk', text=_('Mark as seen'),
|
|
view='events:notification_mark_read'
|
|
)
|
|
link_notification_mark_read_all = Link(
|
|
text=_('Mark all as seen'), view='events:notification_mark_read_all'
|
|
)
|
|
link_object_event_types_user_subcriptions_list = Link(
|
|
kwargs=get_kwargs_factory('resolved_object'),
|
|
permissions=(permission_events_view,), text=_('Subscriptions'),
|
|
view='events:object_event_types_user_subcriptions_list',
|
|
)
|
|
link_object_event_types_user_subcriptions_list_with_icon = Link(
|
|
kwargs=get_kwargs_factory('resolved_object'), icon='fa fa-rss',
|
|
permissions=(permission_events_view,), text=_('Subscriptions'),
|
|
view='events:object_event_types_user_subcriptions_list',
|
|
)
|
|
link_user_events = Link(
|
|
args='resolved_object.pk', text=_('User events'),
|
|
view='events:user_events'
|
|
)
|
|
link_user_notifications_list = Link(
|
|
html_data={
|
|
'apw-attribute': 'count', 'apw-interval': '5000',
|
|
'apw-url': '/api/notifications/?read=False',
|
|
'apw-callback': 'App.mayanNotificationBadge'
|
|
}, icon='fa fa-bell', text='', view='events:user_notifications_list'
|
|
)
|