debian-mirror-gitlab/app/helpers/notifications_helper.rb

120 lines
3.6 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module NotificationsHelper
2015-09-11 14:41:01 +05:30
include IconsHelper
2016-06-02 11:05:42 +05:30
def notification_icon_class(level)
case level.to_sym
2019-10-12 21:52:04 +05:30
when :disabled, :owner_disabled
2016-06-02 11:05:42 +05:30
'microphone-slash'
when :participating
'volume-up'
when :watch
'eye'
when :mention
'at'
when :global
'globe'
2014-09-02 18:07:02 +05:30
end
end
2015-09-25 12:07:36 +05:30
2019-10-12 21:52:04 +05:30
def notification_icon_level(notification_setting, emails_disabled = false)
if emails_disabled
'owner_disabled'
elsif notification_setting.global?
current_user.global_notification_setting.level
else
notification_setting.level
end
end
2016-06-02 11:05:42 +05:30
def notification_icon(level, text = nil)
icon("#{notification_icon_class(level)} fw", text: text)
2015-09-25 12:07:36 +05:30
end
2016-06-02 11:05:42 +05:30
def notification_title(level)
2017-09-10 17:25:29 +05:30
# Can be anything in `NotificationSetting.level:
2016-06-02 11:05:42 +05:30
case level.to_sym
when :participating
2017-09-10 17:25:29 +05:30
s_('NotificationLevel|Participate')
2016-06-02 11:05:42 +05:30
when :mention
2017-09-10 17:25:29 +05:30
s_('NotificationLevel|On mention')
2016-06-02 11:05:42 +05:30
else
2017-09-10 17:25:29 +05:30
N_('NotificationLevel|Global')
N_('NotificationLevel|Watch')
N_('NotificationLevel|Disabled')
N_('NotificationLevel|Custom')
level = "NotificationLevel|#{level.to_s.humanize}"
s_(level)
2015-11-26 14:37:03 +05:30
end
end
def notification_description(level)
case level.to_sym
when :participating
2017-09-10 17:25:29 +05:30
_('You will only receive notifications for threads you have participated in')
when :mention
2017-09-10 17:25:29 +05:30
_('You will receive notifications only for comments in which you were @mentioned')
when :watch
2017-09-10 17:25:29 +05:30
_('You will receive notifications for any activity')
when :disabled
2017-09-10 17:25:29 +05:30
_('You will not get any notifications via email')
when :global
2017-09-10 17:25:29 +05:30
_('Use your global notification setting')
2016-06-22 15:30:34 +05:30
when :custom
2017-09-10 17:25:29 +05:30
_('You will only receive notifications for the events you choose')
2019-10-12 21:52:04 +05:30
when :owner_disabled
_('Notifications have been disabled by the project or group owner')
end
end
2016-06-02 11:05:42 +05:30
def notification_list_item(level, setting)
title = notification_title(level)
data = {
notification_level: level,
notification_title: title
}
2015-09-25 12:07:36 +05:30
content_tag(:li, role: "menuitem") do
link_to '#', class: "update-notification #{('is-active' if setting.level == level)}", data: data do
link_output = content_tag(:strong, title, class: 'dropdown-menu-inner-title')
link_output << content_tag(:span, notification_description(level), class: 'dropdown-menu-inner-content')
end
end
end
2016-06-22 15:30:34 +05:30
# Identifier to trigger individually dropdowns and custom settings modals in the same view
def notifications_menu_identifier(type, notification_setting)
"#{type}-#{notification_setting.user_id}-#{notification_setting.source_id}-#{notification_setting.source_type}"
end
2016-06-22 15:30:34 +05:30
# Create hidden field to send notification setting source to controller
def hidden_setting_source_input(notification_setting)
return unless notification_setting.source_type
2018-03-17 18:26:18 +05:30
2016-08-24 12:49:21 +05:30
hidden_field_tag "#{notification_setting.source_type.downcase}_id", notification_setting.source_id
2015-09-25 12:07:36 +05:30
end
2017-08-17 22:00:37 +05:30
def notification_event_name(event)
2018-11-20 20:47:30 +05:30
# All values from NotificationSetting.email_events
2017-08-17 22:00:37 +05:30
case event
when :success_pipeline
2017-09-10 17:25:29 +05:30
s_('NotificationEvent|Successful pipeline')
2017-08-17 22:00:37 +05:30
else
2017-09-10 17:25:29 +05:30
s_(event.to_s.humanize)
2017-08-17 22:00:37 +05:30
end
end
2019-06-05 12:25:43 +05:30
2019-10-12 21:52:04 +05:30
def notification_setting_icon(notification_setting = nil)
2019-07-31 22:56:46 +05:30
sprite_icon(
2019-10-12 21:52:04 +05:30
!notification_setting.present? || notification_setting.disabled? ? "notifications-off" : "notifications",
2019-07-31 22:56:46 +05:30
css_class: "icon notifications-icon js-notifications-icon"
)
end
2019-06-05 12:25:43 +05:30
def show_unsubscribe_title?(noteable)
can?(current_user, "read_#{noteable.to_ability_name}".to_sym, noteable)
end
2014-09-02 18:07:02 +05:30
end