summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notifications_dropdown.js.coffee
blob: 15daf027c0ab5962ddf105f6e9f89a4cc3e8a964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class @NotificationsDropdown
  $ ->
    $(document)
      .off 'click', '.update-notification'
      .on 'click', '.update-notification', (e) ->
        e.preventDefault()
        notificationLevel = $(@).data 'notification-level'
        label = $(@).data 'notification-title'
        form = $(this).parents('form:first')
        form.find('.js-notification-loading').toggleClass 'fa-bell fa-spin fa-spinner'
        form.find('#notification_setting_level').val(notificationLevel)
        form.submit();

    $(document)
      .off 'ajax:success', '#notification-form'
      .on 'ajax:success', '#notification-form', (e, data) ->
        if data.saved
          new Flash('Notification settings saved', 'notice')
          $(e.currentTarget).closest('.notification-dropdown').replaceWith(data.html)
        else
          new Flash('Failed to save new settings', 'alert')