summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/todos.js.coffee
blob: 951b786b1fd4ed03c4d7dd4f02ed3419b060cef5 (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
class @Todos
  constructor: (@name) ->
    @clearListeners()
    @initBtnListeners()

  clearListeners: ->
    $('.done-todo').off('click')

  initBtnListeners: ->
    $('.done-todo').on('click', @doneClicked)

  doneClicked: (e) =>
    e.preventDefault()
    e.stopImmediatePropagation()

    $this = $(e.currentTarget)
    $this.disable()

    $.ajax
      type: 'POST'
      url: $this.attr('href')
      dataType: 'json'
      data: '_method': 'delete'
      success: (data) =>
        @clearDone $this.closest('li'), data

  clearDone: ($row, data) ->
    $ul = $row.closest('ul')
    $row.remove()

    $('.todos-pending .badge, .todos-pending-count').text data.count
    $('.todos-done .badge').text data.done_count

    if not $ul.find('li').length
      $ul.parents('.panel').remove()