summaryrefslogtreecommitdiff
path: root/app/views/notifications/buttons/_notifications.html.haml
blob: 5e81e6c96b929eb4389aced0c311b061bae62e09 (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
- if notification_setting
  .dropdown.notification-dropdown.pull-right
    - url = notification_setting.persisted? ? notification_setting_path(notification_setting) : notification_settings_path(notification_setting)

    = form_for notification_setting, remote: true, html: { class: "inline", id: "notification-form" } do |f|
      = hidden_setting_source_input(notification_setting)
      = f.hidden_field :level, class: "notification_setting_level"
      .js-notification-toggle-btns
        .btn-group
          - if notification_setting.level != "custom"
            %button.dropdown-new.btn.btn-default.notifications-btn#notifications-button{ type: "button", data: { toggle: "dropdown", target: notifications_menu_identifier("dropdown", notification_setting) } }
              = icon("bell", class: "js-notification-loading")
              = notification_title(notification_setting.level)
              = icon("caret-down")
          - else
            %button.dropdown-new.btn.btn-default.notifications-btn#notifications-button{ type: "button", data: { toggle: "modal", target: "#" + notifications_menu_identifier("modal", notification_setting) } }
              = icon("bell", class: "js-notification-loading")
              = notification_title(notification_setting.level)
            %button.btn.btn-danger.dropdown-toggle{ data: { toggle: "dropdown", target: notifications_menu_identifier("dropdown", notification_setting) } }
              %span.caret
              .sr-only Toggle dropdown
          = render "shared/notifications/notification_dropdown", notification_setting: notification_setting

          = content_for :scripts_body do
            = render "shared/notifications/custom_notifications", notification_setting: notification_setting