tree.js.coffee 1.3 KB
Newer Older
C
Ciro Santilli 已提交
1
class @TreeView
2 3
  constructor: ->
    @initKeyNav()
R
Robert Speicher 已提交
4

5 6 7 8 9 10
    # Code browser tree slider
    # Make the entire tree-item row clickable, but not if clicking another link (like a commit message)
    $(".tree-content-holder .tree-item").on 'click', (e) ->
      if (e.target.nodeName != "A")
        path = $('.tree-item-file-name a', this).attr('href')
        Turbolinks.visit(path)
R
Riyad Preukschas 已提交
11

12 13
    # Show the "Loading commit data" for only the first element
    $('span.log_loading:first').removeClass('hide')
R
Riyad Preukschas 已提交
14

15 16 17 18 19 20 21 22 23 24 25 26
  initKeyNav: ->
    li = $("tr.tree-item")
    liSelected = null
    $('body').keydown (e) ->
      if e.which is 40
        if liSelected
          next = liSelected.next()
          if next.length > 0
            liSelected.removeClass "selected"
            liSelected = next.addClass("selected")
        else
          liSelected = li.eq(0).addClass("selected")
R
Riyad Preukschas 已提交
27

28 29 30 31 32 33 34 35 36 37 38 39 40 41
        $(liSelected).focus()
      else if e.which is 38
        if liSelected
          next = liSelected.prev()
          if next.length > 0
            liSelected.removeClass "selected"
            liSelected = next.addClass("selected")
        else
          liSelected = li.last().addClass("selected")

        $(liSelected).focus()
      else if e.which is 13
        path = $('.tree-item.selected .tree-item-file-name a').attr('href')
        Turbolinks.visit(path)