blob: db6fe3b29edc0821e42ce553f01a32eaf462a201 (
plain)
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
|
module NotificationsHelper
include IconsHelper
def notification_icon(notification)
if notification.disabled?
icon('volume-off', class: 'ns-mute')
elsif notification.participating?
icon('volume-down', class: 'ns-part')
elsif notification.watch?
icon('volume-up', class: 'ns-watch')
else
icon('circle-o', class: 'ns-default')
end
end
def notification_list_item(notification_level)
case notification_level
when Notification::N_DISABLED
content_tag(:li) do
icon('microphone-slash') do
'Disabled'
end
end
when Notification::N_PARTICIPATING
content_tag(:li) do
icon('volume-up') do
'Participating'
end
end
when Notification::N_WATCH
content_tag(:li) do
icon('globe') do
'Watch'
end
end
when Notification::N_MENTION
content_tag(:li) do
icon('at') do
'Mention'
end
end
else
# do nothing
end
end
end
|