issues.js.coffee 2.57 KB
Newer Older
1 2 3 4
@Issues =
  init: ->
    Issues.initSearch()
    Issues.initSelects()
5
    Issues.initChecks()
6 7 8 9 10 11 12 13 14 15 16 17

    $("body").on "ajax:success", ".close_issue, .reopen_issue", ->
      t = $(this)
      totalIssues = undefined
      reopen = t.hasClass("reopen_issue")
      $(".issue_counter").each ->
        issue = $(this)
        totalIssues = parseInt($(this).html(), 10)
        if reopen and issue.closest(".main_menu").length
          $(this).html totalIssues + 1
        else
          $(this).html totalIssues - 1
18 19 20 21 22 23 24
    $("body").on "click", ".issues-filters .dropdown-menu a", ->
      $('.issues-list').block(
        message: null,
        overlayCSS:
          backgroundColor: '#DDD'
          opacity: .4
      )
25

26 27 28 29 30 31
  reload: ->
    Issues.initSelects()
    Issues.initChecks()
    $('#filter_issue_search').val($('#issue_search').val())

  initSelects: ->
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
32 33 34 35
    $("select#update_status").select2(width: 'resolve', dropdownAutoWidth: true)
    $("select#update_assignee_id").select2(width: 'resolve', dropdownAutoWidth: true)
    $("select#update_milestone_id").select2(width: 'resolve', dropdownAutoWidth: true)
    $("select#label_name").select2(width: 'resolve', dropdownAutoWidth: true)
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
    $("#milestone_id, #assignee_id, #label_name").on "change", ->
      $(this).closest("form").submit()

  initChecks: ->
    $(".check_all_issues").click ->
      $(".selected_issue").attr "checked", @checked
      Issues.checkChanged()

    $(".selected_issue").bind "change", Issues.checkChanged


  initSearch: ->
    form = $("#issue_search_form")
    last_terms = ""
    $("#issue_search").keyup ->
      terms = $(this).val()
      unless terms is last_terms
        last_terms = terms
        if terms.length >= 2 or terms.length is 0
55 56 57 58 59 60 61 62 63 64
          $.ajax
            type: "GET"
            url: location.href
            data: "issue_search=" + terms
            complete: ->
              $(".loading").hide()
            success: (data) ->
              $('.issues-holder').html(data.html)
              Issues.reload()
            dataType: "json"
65 66 67 68 69 70 71 72 73

  checkChanged: ->
    checked_issues = $(".selected_issue:checked")
    if checked_issues.length > 0
      ids = []
      $.each checked_issues, (index, value) ->
        ids.push $(value).attr("data-id")

      $("#update_issues_ids").val ids
74
      $(".issues-filters").hide()
75 76 77 78
      $(".issues_bulk_update").show()
    else
      $("#update_issues_ids").val []
      $(".issues_bulk_update").hide()
79
      $(".issues-filters").show()
80 81 82 83 84 85

$ ->
  $('.edit-issue.inline-update input[type="submit"]').hide();
  $("body").on "change", ".edit-issue.inline-update select", ->
      $(this).submit()