aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/notifications_widget.tpl
blob: 0ece848913559eacae7f2a21837f7b2aca724e7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<style>
	.notification-content {
		max-height: 70vh;
		overflow: auto;
	}

	.notification-content.collapsing {
		overflow: hidden;
	}

	.fs {
		position: fixed;
		top: 0px;
		left: 0px;
		padding: 4.5rem .5rem 1rem .5rem;
		background-color: white;
		width: 100%;
		max-width: 100%;
		height: 100%;
		z-index: 1029;
		overflow: auto;
	}

	#notifications {
		margin-bottom: 1rem;
	}
</style>

{{if $module == 'display'}}
<script>
	$(document).on('click', '.notification', function(e) {
		var b64mid = $(this).data('b64mid');
		var path = $(this)[0].pathname.substr(1,7);

		if(path === 'display' && b64mid) {
			e.preventDefault();
			e.stopPropagation();

			$('.thread-wrapper').remove();
			$(this).fadeOut();
			bParam_mid = b64mid;
			mode = 'replace';
			page_load = true;
			liveUpdate();

			if($('#notifications_wrapper').hasClass('fs'))
				$('#notifications_wrapper').prependTo('#' + notifications_parent).removeClass('fs'); //var notifications_parent is defined in redbasic.js
		}
	});
</script>
{{/if}}

{{if $notifications}}
<div id="notifications_wrapper">
	<div id="notifications" class="navbar-nav" data-children=".nav-item">
		<div id="nav-notifications-template" rel="template">
			<a class="list-group-item clearfix notification {5}" href="{0}" title="{2} {3}" data-b64mid="{6}">
				<img class="menu-img-3" data-src="{1}">
				<span class="contactname">{2}</span>
				<span class="dropdown-sub-text">{3}<br>{4}</span>
			</a>
		</div>
		{{foreach $notifications as $notification}}
		<div class="collapse {{$notification.type}}-button">
			<a class="list-group-item" href="#nav-{{$notification.type}}-menu" title="{{$notification.title}}" data-toggle="collapse" data-parent="#notifications" rel="#nav-{{$notification.type}}-menu">
				<i class="fa fa-fw fa-{{$notification.icon}}"></i> {{$notification.label}}
				<span class="float-right badge badge-{{$notification.severity}} {{$notification.type}}-update"></span>
			</a>
			<div id="nav-{{$notification.type}}-menu" class="collapse notification-content" rel="{{$notification.type}}">
				{{if $notification.viewall}}
				<a class="list-group-item text-dark" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}">
					<i class="fa fa-fw fa-external-link"></i> {{$notification.viewall.label}}
				</a>
				{{/if}}
				{{if $notification.markall}}
				<a class="list-group-item text-dark" id="nav-{{$notification.type}}-mark-all" href="{{$notification.markall.url}}" onclick="markRead('{{$notification.type}}'); return false;">
					<i class="fa fa-fw fa-check"></i> {{$notification.markall.label}}
				</a>
				{{/if}}
				{{$loading}}
			</div>
		</div>
		{{/foreach}}
	</div>
</div>
{{/if}}